diff options
author | Brian Paul <[email protected]> | 2002-09-05 21:14:36 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-09-05 21:14:36 +0000 |
commit | e7abc078ab09525f449911c428c8892037d9bf21 (patch) | |
tree | 2f10bd1339d96a9c62acb109d115113a3ee8772f /src/mesa | |
parent | 0a7fc572a7defdb7f7f23d4288bf8bbbc1ca48bd (diff) |
test for ARB_texture_cube_map when getting GL version(Ian Romanick)
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/get.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c index 4f12e06b414..2b92de79229 100644 --- a/src/mesa/main/get.c +++ b/src/mesa/main/get.c @@ -1,4 +1,4 @@ -/* $Id: get.c,v 1.87 2002/07/09 01:22:50 brianp Exp $ */ +/* $Id: get.c,v 1.88 2002/09/05 21:14:36 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -5617,6 +5617,7 @@ _mesa_GetString( GLenum name ) ctx->Extensions.ARB_multitexture && ctx->Extensions.ARB_texture_border_clamp && ctx->Extensions.ARB_texture_compression && + ctx->Extensions.ARB_texture_cube_map && ctx->Extensions.EXT_texture_env_add && ctx->Extensions.ARB_texture_env_combine && ctx->Extensions.ARB_texture_env_dot3) { |