From 9c6954fc9d254e0d6dc9bc7aac5badee04fe0f9b Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Fri, 14 Jan 2011 14:50:58 -0800 Subject: [PATCH] mesa: Add extension enable bit for GL_ARB_ES2_compatibility. --- 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 39aabdb752c..c41ae4ad2d9 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -73,6 +73,7 @@ struct extension { */ static const struct extension extension_table[] = { /* ARB Extensions */ + { "GL_ARB_ES2_compatibility", o(ARB_ES2_compatibility), GL }, { "GL_ARB_blend_func_extended", o(ARB_blend_func_extended), GL }, { "GL_ARB_copy_buffer", o(ARB_copy_buffer), GL }, { "GL_ARB_depth_buffer_float", o(ARB_depth_buffer_float), GL }, diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 8d2030e9ced..f76e1eb2ee0 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -2657,6 +2657,7 @@ struct gl_extensions GLboolean dummy; /* don't remove this! */ GLboolean dummy_true; /* Set true by _mesa_init_extensions(). */ GLboolean dummy_false; /* Set false by _mesa_init_extensions(). */ + GLboolean ARB_ES2_compatibility; GLboolean ARB_blend_func_extended; GLboolean ARB_copy_buffer; GLboolean ARB_depth_buffer_float; -- 2.30.2