Displaying 5 results from an estimated 5 matches for "gl_arb_cull_distance".
2015 May 24
2
[RFC PATCH 00/11] Implement ARB_cull_distance
...>> This patch series adds the needed support for this extension to the various
>> parts of mesa to finally enable it for nvc0.
>>
>> Dave Airlie (1):
>> glsl: lower cull_distance into cull_distance_mesa
>>
>> Tobias Klausmann (10):
>> glapi: add GL_ARB_cull_distance
>> mesa/main: add support for GL_ARB_cull_distance
>> mesa/prog: Add varyings for arb_cull_distance
>> mesa/st: add support for GL_ARB_cull_distance
>> glsl: Add a helper to see if an array was unsize in the shader
>> glsl: Add arb_cull_distance support...
2015 May 24
2
[RFC PATCH 00/11] Implement ARB_cull_distance
...e
>>>> various
>>>> parts of mesa to finally enable it for nvc0.
>>>>
>>>> Dave Airlie (1):
>>>> glsl: lower cull_distance into cull_distance_mesa
>>>>
>>>> Tobias Klausmann (10):
>>>> glapi: add GL_ARB_cull_distance
>>>> mesa/main: add support for GL_ARB_cull_distance
>>>> mesa/prog: Add varyings for arb_cull_distance
>>>> mesa/st: add support for GL_ARB_cull_distance
>>>> glsl: Add a helper to see if an array was unsize in the shader
>>>...
2015 May 24
19
[RFC PATCH 00/11] Implement ARB_cull_distance
This patch series adds the needed support for this extension to the various
parts of mesa to finally enable it for nvc0.
Dave Airlie (1):
glsl: lower cull_distance into cull_distance_mesa
Tobias Klausmann (10):
glapi: add GL_ARB_cull_distance
mesa/main: add support for GL_ARB_cull_distance
mesa/prog: Add varyings for arb_cull_distance
mesa/st: add support for GL_ARB_cull_distance
glsl: Add a helper to see if an array was unsize in the shader
glsl: Add arb_cull_distance support
i965: rename UsesClipDistanceOut to UsesClipCull...
2014 Oct 21
0
[PATCH v2] nv50: Handle ARB_conditional_render_inverted and enable it
...not started
GL_ARB_clip_control not started
- GL_ARB_conditional_render_inverted DONE (i965, nvc0, llvmpipe, softpipe)
+ GL_ARB_conditional_render_inverted DONE (i965, nv50, nvc0, llvmpipe, softpipe)
GL_ARB_cull_distance not started
GL_ARB_derivative_control DONE (i965, nv50, nvc0, r600)
GL_ARB_direct_state_access not started
diff --git a/docs/relnotes/10.4.html b/docs/relnotes/10.4.html
index 64cbfae..88b5856 100644
--- a/do...
2015 May 24
2
[Mesa-dev] [PATCH 07/11] glsl: Add arb_cull_distance support
...ser_t *parser, intmax_t versio
>
> if (extensions->ARB_shader_precision)
> add_builtin_define(parser, "GL_ARB_shader_precision", 1);
> +
> + if (extensions->ARB_cull_distance)
> + add_builtin_define(parser, "GL_ARB_cull_distance", 1);
> }
> }
>
> diff --git a/src/glsl/glsl_parser_extras.cpp b/src/glsl/glsl_parser_extras.cpp
> index 046d5d7..d1cd8ff 100644
> --- a/src/glsl/glsl_parser_extras.cpp
> +++ b/src/glsl/glsl_parser_extras.cpp
> @@ -554,6 +554,7 @@ static const _mesa_glsl_extens...