Re: [Mesa-dev] [PATCH 17/17] st/mesa: expose ARB_compute_shader when compute is supported

2016-01-26 Thread Samuel Pitoiset
On 01/26/2016 05:45 AM, Ilia Mirkin wrote: On Mon, Jan 25, 2016 at 11:00 PM, Michel Dänzer wrote: On 26.01.2016 01:17, Nicolai Hähnle wrote: On 25.01.2016 10:04, Ilia Mirkin wrote: Yeah so this isn't going to fly. r600/radeonsi both expose PIPE_CAP_COMPUTE, for clover,

Re: [Mesa-dev] [PATCH 17/17] st/mesa: expose ARB_compute_shader when compute is supported

2016-01-26 Thread Nicolai Hähnle
On 25.01.2016 23:45, Ilia Mirkin wrote: On Mon, Jan 25, 2016 at 11:00 PM, Michel Dänzer wrote: On 26.01.2016 01:17, Nicolai Hähnle wrote: On 25.01.2016 10:04, Ilia Mirkin wrote: Yeah so this isn't going to fly. r600/radeonsi both expose PIPE_CAP_COMPUTE, for clover, but

Re: [Mesa-dev] [PATCH 17/17] st/mesa: expose ARB_compute_shader when compute is supported

2016-01-25 Thread Ilia Mirkin
On Mon, Jan 25, 2016 at 11:00 PM, Michel Dänzer wrote: > On 26.01.2016 01:17, Nicolai Hähnle wrote: >> On 25.01.2016 10:04, Ilia Mirkin wrote: >>> Yeah so this isn't going to fly. r600/radeonsi both expose >>> PIPE_CAP_COMPUTE, for clover, but won't support these compute

Re: [Mesa-dev] [PATCH 17/17] st/mesa: expose ARB_compute_shader when compute is supported

2016-01-25 Thread Michel Dänzer
On 26.01.2016 01:17, Nicolai Hähnle wrote: > On 25.01.2016 10:04, Ilia Mirkin wrote: >> Yeah so this isn't going to fly. r600/radeonsi both expose >> PIPE_CAP_COMPUTE, for clover, but won't support these compute shaders >> quite yet. Not sure what the solution is here... maybe just add >> another

Re: [Mesa-dev] [PATCH 17/17] st/mesa: expose ARB_compute_shader when compute is supported

2016-01-25 Thread Ilia Mirkin
Yeah so this isn't going to fly. r600/radeonsi both expose PIPE_CAP_COMPUTE, for clover, but won't support these compute shaders quite yet. Not sure what the solution is here... maybe just add another cap? PIPE_CAP_GLSL_COMPUTE or something? Or require a backend to also set PIPE_CAP_GLSL_VERSION

Re: [Mesa-dev] [PATCH 17/17] st/mesa: expose ARB_compute_shader when compute is supported

2016-01-25 Thread Nicolai Hähnle
On 25.01.2016 10:04, Ilia Mirkin wrote: Yeah so this isn't going to fly. r600/radeonsi both expose PIPE_CAP_COMPUTE, for clover, but won't support these compute shaders quite yet. Not sure what the solution is here... maybe just add another cap? PIPE_CAP_GLSL_COMPUTE or something? Or require a

Re: [Mesa-dev] [PATCH 17/17] st/mesa: expose ARB_compute_shader when compute is supported

2016-01-25 Thread Ilia Mirkin
On Mon, Jan 25, 2016 at 11:17 AM, Nicolai Hähnle wrote: > On 25.01.2016 10:04, Ilia Mirkin wrote: >> >> Yeah so this isn't going to fly. r600/radeonsi both expose >> PIPE_CAP_COMPUTE, for clover, but won't support these compute shaders >> quite yet. Not sure what the solution

[Mesa-dev] [PATCH 17/17] st/mesa: expose ARB_compute_shader when compute is supported

2016-01-24 Thread Samuel Pitoiset
Signed-off-by: Samuel Pitoiset --- src/mesa/state_tracker/st_extensions.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mesa/state_tracker/st_extensions.c b/src/mesa/state_tracker/st_extensions.c index 2374dcc..ec30d99 100644 ---