diff options
author | Brian Paul <brianp@vmware.com> | 2009-01-06 14:21:27 -0700 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2009-01-08 12:06:01 +0000 |
commit | b57797f3a81bd04a992868c48a6d98d66e692f3d (patch) | |
tree | fb5fe0d2f7dd1c3539fb3f5adb45342f39e53037 /src/mesa/main/get_gen.py | |
parent | 0f5c71afd9b5b2f73721d443c3ccffdf8663aee0 (diff) |
mesa: fix GL_DEPTH_CLEAR_VALUE casting
Diffstat (limited to 'src/mesa/main/get_gen.py')
-rw-r--r-- | src/mesa/main/get_gen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/get_gen.py b/src/mesa/main/get_gen.py index 152e378b4f..a191b045d3 100644 --- a/src/mesa/main/get_gen.py +++ b/src/mesa/main/get_gen.py @@ -180,7 +180,7 @@ StateVars = [ ( "GL_DEPTH_BIAS", GLfloat, ["ctx->Pixel.DepthBias"], "", None ), ( "GL_DEPTH_BITS", GLint, ["ctx->DrawBuffer->Visual.depthBits"], "", None ), - ( "GL_DEPTH_CLEAR_VALUE", GLfloatN, ["ctx->Depth.Clear"], "", None ), + ( "GL_DEPTH_CLEAR_VALUE", GLfloatN, ["((GLfloat) ctx->Depth.Clear)"], "", None ), ( "GL_DEPTH_FUNC", GLenum, ["ctx->Depth.Func"], "", None ), ( "GL_DEPTH_RANGE", GLfloatN, [ "ctx->Viewport.Near", "ctx->Viewport.Far" ], "", None ), |