[Mesa-dev] [PATCH v2 2/8] mesa: add ARB_conditional_render_inverted extension bit
Ilia Mirkin
imirkin at alum.mit.edu
Sun Aug 17 14:26:48 PDT 2014
If it were me doing it, I'd fold this with the previous change. Given
the comments I gave on 1/8, you'll need to at least flip their order.
On Sun, Aug 17, 2014 at 5:15 PM, Tobias Klausmann
<tobias.johannes.klausmann at mni.thm.de> wrote:
> Signed-off-by: Tobias Klausmann <tobias.johannes.klausmann at mni.thm.de>
> ---
> src/mesa/main/extensions.c | 1 +
> src/mesa/main/mtypes.h | 1 +
> 2 files changed, 2 insertions(+)
>
> diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c
> index c5bd7b3..553c01e 100644
> --- a/src/mesa/main/extensions.c
> +++ b/src/mesa/main/extensions.c
> @@ -94,6 +94,7 @@ static const struct extension extension_table[] = {
> { "GL_ARB_color_buffer_float", o(ARB_color_buffer_float), GL, 2004 },
> { "GL_ARB_compressed_texture_pixel_storage", o(dummy_true), GL, 2011 },
> { "GL_ARB_compute_shader", o(ARB_compute_shader), GL, 2012 },
> + { "GL_ARB_conditional_render_inverted", o(ARB_conditional_render_inverted), GL, 2014 },
> { "GL_ARB_copy_buffer", o(dummy_true), GL, 2008 },
> { "GL_ARB_copy_image", o(ARB_copy_image), GL, 2012 },
> { "GL_ARB_conservative_depth", o(ARB_conservative_depth), GL, 2011 },
> diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
> index 97b1ad2..cb2a4df 100644
> --- a/src/mesa/main/mtypes.h
> +++ b/src/mesa/main/mtypes.h
> @@ -3553,6 +3553,7 @@ struct gl_extensions
> GLboolean ARB_clear_texture;
> GLboolean ARB_color_buffer_float;
> GLboolean ARB_compute_shader;
> + GLboolean ARB_conditional_render_inverted;
> GLboolean ARB_conservative_depth;
> GLboolean ARB_copy_image;
> GLboolean ARB_depth_buffer_float;
> --
> 1.8.4.5
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/mesa-dev
More information about the mesa-dev
mailing list