summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/extensions.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@gmail.com>2015-04-05 13:19:18 +1000
committerDave Airlie <airlied@redhat.com>2015-04-23 10:11:26 +1000
commit782e71cc078308dddd5d6f9505bff0cb8e67f455 (patch)
tree709dce5d40f64874735cb0907c54cb6738d87703 /src/mesa/main/extensions.c
parent1948880720a631f959c6fa7f5bc533f26619a31a (diff)
downloadexternal_mesa3d-782e71cc078308dddd5d6f9505bff0cb8e67f455.zip
external_mesa3d-782e71cc078308dddd5d6f9505bff0cb8e67f455.tar.gz
external_mesa3d-782e71cc078308dddd5d6f9505bff0cb8e67f455.tar.bz2
mesa: finish implementing ARB_texture_stencil8 (v5)
Parts of this were implemented previously, so finish it off. v2: fix getteximage falling into the integer check add fixes for the FBO paths, (fbo-stencil8 test). v3: fix getteximage path harder. v4: remove swapbytes from getteximage path (Ilia) v5: brown paper bag the swapbytes removal. (Ilia) Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r--src/mesa/main/extensions.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c
index 861b150..3d4965c 100644
--- a/src/mesa/main/extensions.c
+++ b/src/mesa/main/extensions.c
@@ -186,6 +186,7 @@ static const struct extension extension_table[] = {
{ "GL_ARB_texture_rectangle", o(NV_texture_rectangle), GL, 2004 },
{ "GL_ARB_texture_rgb10_a2ui", o(ARB_texture_rgb10_a2ui), GL, 2009 },
{ "GL_ARB_texture_rg", o(ARB_texture_rg), GL, 2008 },
+ { "GL_ARB_texture_stencil8", o(ARB_texture_stencil8), GL, 2013 },
{ "GL_ARB_texture_storage", o(dummy_true), GL, 2011 },
{ "GL_ARB_texture_storage_multisample", o(ARB_texture_multisample), GL, 2012 },
{ "GL_ARB_texture_view", o(ARB_texture_view), GL, 2012 },