summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Randrianasulu <[email protected]>2010-03-01 23:45:50 +0000
committerFrancisco Jerez <[email protected]>2010-03-04 23:14:24 +0100
commit44df3577a77818d6e87f1b728f0aa19698133981 (patch)
treee0cd018def444980f676791b3e92b145fd504fc5
parent210bcf6d156aba5994f25f1bd9c50586ebc3bada (diff)
dri/nouveau: Enable GL_EXT_stencil_wrap.
Signed-off-by: Francisco Jerez <[email protected]>
-rw-r--r--src/mesa/drivers/dri/nouveau/nouveau_context.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/nouveau/nouveau_context.c b/src/mesa/drivers/dri/nouveau/nouveau_context.c
index 26297332732..ef26a192197 100644
--- a/src/mesa/drivers/dri/nouveau/nouveau_context.c
+++ b/src/mesa/drivers/dri/nouveau/nouveau_context.c
@@ -47,14 +47,15 @@
#include "main/remap_helper.h"
static const struct dri_extension nouveau_extensions[] = {
- { "GL_EXT_framebuffer_object", GL_EXT_framebuffer_object_functions },
{ "GL_ARB_multitexture", NULL },
- { "GL_EXT_texture_lod_bias", NULL },
- { "GL_SGIS_generate_mipmap", NULL },
{ "GL_ARB_texture_env_combine", NULL },
{ "GL_ARB_texture_env_dot3", NULL },
{ "GL_ARB_texture_env_add", NULL },
+ { "GL_EXT_texture_lod_bias", NULL },
+ { "GL_EXT_framebuffer_object", GL_EXT_framebuffer_object_functions },
+ { "GL_EXT_stencil_wrap", NULL },
{ "GL_EXT_fog_coord", GL_EXT_fog_coord_functions },
+ { "GL_SGIS_generate_mipmap", NULL },
{ NULL, NULL }
};