[Mesa-dev] [PATCH 02/11] mesa: Add ARB_shader_image_load_store to the extension table.
Chris Forbes
chrisf at ijw.co.nz
Sun Nov 24 23:27:43 PST 2013
Does this want to be enabled in compatibility? I had assumed we
wouldn't, for the same reasons we don't enable texbo there.
On Mon, Nov 25, 2013 at 6:00 PM, Francisco Jerez <currojerez at riseup.net> wrote:
> ---
> 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 104618c..19cf34d 100644
> --- a/src/mesa/main/extensions.c
> +++ b/src/mesa/main/extensions.c
> @@ -123,6 +123,7 @@ static const struct extension extension_table[] = {
> { "GL_ARB_seamless_cube_map", o(ARB_seamless_cube_map), GL, 2009 },
> { "GL_ARB_shader_atomic_counters", o(ARB_shader_atomic_counters), GL, 2011 },
> { "GL_ARB_shader_bit_encoding", o(ARB_shader_bit_encoding), GL, 2010 },
> + { "GL_ARB_shader_image_load_store", o(ARB_shader_image_load_store), GL, 2011 },
> { "GL_ARB_shader_objects", o(dummy_true), GL, 2002 },
> { "GL_ARB_shader_stencil_export", o(ARB_shader_stencil_export), GL, 2009 },
> { "GL_ARB_shader_texture_lod", o(ARB_shader_texture_lod), GL, 2009 },
> diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
> index ecfb5e0..e9750f4 100644
> --- a/src/mesa/main/mtypes.h
> +++ b/src/mesa/main/mtypes.h
> @@ -3348,6 +3348,7 @@ struct gl_extensions
> GLboolean ARB_seamless_cube_map;
> GLboolean ARB_shader_atomic_counters;
> GLboolean ARB_shader_bit_encoding;
> + GLboolean ARB_shader_image_load_store;
> GLboolean ARB_shader_stencil_export;
> GLboolean ARB_shader_texture_lod;
> GLboolean ARB_shading_language_packing;
> --
> 1.8.3.4
>
> _______________________________________________
> 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