diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2000-05-23 17:14:49 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2000-05-23 17:14:49 +0000 |
commit | 35d5301a54153930ee6fd60dff1010ce9f901397 (patch) | |
tree | e73b11ab258b81b00ac9a5b33b007c9adedbe558 /src/mesa/main/get.c | |
parent | fc4b44399a07a7a7559f20ceab8a791209b4d875 (diff) |
more texture cube work, misc code clean-up
Diffstat (limited to 'src/mesa/main/get.c')
-rw-r--r-- | src/mesa/main/get.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c index 8302b3459e..a7d3d5658a 100644 --- a/src/mesa/main/get.c +++ b/src/mesa/main/get.c @@ -1,4 +1,4 @@ -/* $Id: get.c,v 1.27 2000/05/23 15:17:13 brianp Exp $ */ +/* $Id: get.c,v 1.28 2000/05/23 17:14:49 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -4309,10 +4309,10 @@ _mesa_GetIntegerv( GLenum pname, GLint *params ) break; case GL_STRICT_SCISSOR_HINT_PGI: case GL_FULL_STIPPLE_HINT_PGI: - *params = (GL_TRUE); + *params = GL_TRUE; break; case GL_CONSERVE_MEMORY_HINT_PGI: - *params = (GL_FALSE); + *params = GL_FALSE; break; case GL_ALWAYS_FAST_HINT_PGI: *params = (ctx->Hint.AllowDrawWin == GL_TRUE && @@ -4344,7 +4344,7 @@ _mesa_GetIntegerv( GLenum pname, GLint *params ) *params = GL_DONT_CARE; break; case GL_BACK_NORMALS_HINT_PGI: - *params = (GL_TRUE); + *params = GL_TRUE; break; case GL_NATIVE_GRAPHICS_HANDLE_PGI: *params = 0; |