diff options
author | Brian Paul <[email protected]> | 2000-04-07 16:27:26 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-04-07 16:27:26 +0000 |
commit | 2b2e925ea4a5652b0ab73b1efbce345a42663842 (patch) | |
tree | 9824128cf7662c51830bd3b5a0b74721a071a881 /src/mesa/main/extensions.c | |
parent | ede4887b1650b18b3a2db3f175fcc33826bbab4d (diff) |
added GL_SGIX/SGIS_pixel_texture extension
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r-- | src/mesa/main/extensions.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 65495a48a09..d0a30eed370 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -1,4 +1,4 @@ -/* $Id: extensions.c,v 1.21 2000/03/28 16:59:39 rjfrank Exp $ */ +/* $Id: extensions.c,v 1.22 2000/04/07 16:27:26 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -78,7 +78,9 @@ static struct { int enabled; const char *name; } default_extensions[] = { { DEFAULT_OFF, "GL_EXT_vertex_array_set" }, { DEFAULT_OFF, "GL_EXT_texture_env" }, { DEFAULT_ON, "GL_EXT_texture_lod_bias" }, - { DEFAULT_OFF, "GL_HP_occlusion_test" } + { DEFAULT_OFF, "GL_HP_occlusion_test" }, + { DEFAULT_ON, "GL_SGIS_pixel_texture" }, + { DEFAULT_ON, "GL_SGIX_pixel_texture" } }; |