diff options
author | Marek Olšák <maraeo@gmail.com> | 2013-01-29 15:55:10 +0100 |
---|---|---|
committer | Marek Olšák <maraeo@gmail.com> | 2013-02-01 16:35:24 +0100 |
commit | b127ad34896f40f28ce792060ece23d75b0a5203 (patch) | |
tree | 78458b5be306f4764c71e6a109743a8952814ad7 | |
parent | 1003652a7f17dbe373783ba5033cd25c231eb120 (diff) |
mesa: don't expose IBM_rasterpos_clip in a core context
glRasterPos doesn't exist in the core profile.
NOTE: This is a candidate for the stable branches (9.0 and 9.1).
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
(cherry picked from commit cc5fdaf2dce4465b09653f4bf3113674fb346646)
-rw-r--r-- | src/mesa/main/extensions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 7ae07fb5a09..9f125b83d1a 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -297,7 +297,7 @@ static const struct extension extension_table[] = { { "GL_ATI_texture_float", o(ARB_texture_float), GL, 2002 }, { "GL_ATI_texture_mirror_once", o(ATI_texture_mirror_once), GL, 2006 }, { "GL_IBM_multimode_draw_arrays", o(dummy_true), GL, 1998 }, - { "GL_IBM_rasterpos_clip", o(dummy_true), GL, 1996 }, + { "GL_IBM_rasterpos_clip", o(dummy_true), GLL, 1996 }, { "GL_IBM_texture_mirrored_repeat", o(dummy_true), GLL, 1998 }, { "GL_INGR_blend_func_separate", o(EXT_blend_func_separate), GLL, 1999 }, { "GL_MESA_pack_invert", o(MESA_pack_invert), GL, 2002 }, |