Re: [Mesa-dev] [PATCH] mesa/st: enable ARB_gpu_shader5 if the reported GLSL version = 400

2014-08-12 Thread Ilia Mirkin
So... any objections to this approach? All the other gs5 bits are in for mesa/st now. On Sat, Aug 9, 2014 at 11:01 PM, Ilia Mirkin imir...@alum.mit.edu wrote: The ARB_gpu_shader5 extension is made up of a lot of small sub-parts. Instead of adding PIPE_CAP's for each of these, just rely on the

[Mesa-dev] [PATCH] mesa/st: enable ARB_gpu_shader5 if the reported GLSL version = 400

2014-08-09 Thread Ilia Mirkin
The ARB_gpu_shader5 extension is made up of a lot of small sub-parts. Instead of adding PIPE_CAP's for each of these, just rely on the GLSL version reported by the pipe driver. The remaining extensions lend themselves naturally to being checked through a single CAP. Signed-off-by: Ilia Mirkin