mesa: fix cast/conversion for optional code
authorBrian <brian.paul@tungstengraphics.com>
Fri, 26 Sep 2008 01:57:34 +0000 (19:57 -0600)
committerBrian <brian.paul@tungstengraphics.com>
Fri, 26 Sep 2008 01:57:34 +0000 (19:57 -0600)
src/mesa/main/get.c
src/mesa/main/get_gen.py

index e87eea91dd27afd3cbebaeb575a3e5d250319d98..f72aa6a2882cfe4f66fcc72e274cd688c66bb2d5 100644 (file)
@@ -1092,7 +1092,7 @@ _mesa_GetBooleanv( GLenum pname, GLboolean *params )
          GLuint i, n = _mesa_get_compressed_formats(ctx, formats, GL_FALSE);
          ASSERT(n <= 100);
          for (i = 0; i < n; i++)
-            params[i] = ENUM_TO_INT(formats[i]);
+            params[i] = ENUM_TO_BOOLEAN(formats[i]);
          }
          break;
       case GL_ARRAY_ELEMENT_LOCK_FIRST_EXT:
@@ -2940,7 +2940,7 @@ _mesa_GetFloatv( GLenum pname, GLfloat *params )
          GLuint i, n = _mesa_get_compressed_formats(ctx, formats, GL_FALSE);
          ASSERT(n <= 100);
          for (i = 0; i < n; i++)
-            params[i] = (GLfloat)(ENUM_TO_INT(formats[i]));
+            params[i] = ENUM_TO_FLOAT(formats[i]);
          }
          break;
       case GL_ARRAY_ELEMENT_LOCK_FIRST_EXT:
index dc543eb003505144b52692f07939c9573a20fb1e..152e378b4fe8428156651d1c36acd158694eafbf 100644 (file)
@@ -50,7 +50,8 @@ TypeStrings = {
 #  - the GL state name, such as GL_CURRENT_COLOR
 #  - the state datatype, one of GLint, GLfloat, GLboolean or GLenum
 #  - list of code fragments to get the state, such as ["ctx->Foo.Bar"]
-#  - optional extra code or empty string
+#  - optional extra code or empty string.  If present, "CONVERSION" will be
+#    replaced by ENUM_TO_FLOAT, INT_TO_FLOAT, etc.
 #  - optional extensions to check, or None
 #
 StateVars = [
@@ -532,7 +533,7 @@ StateVars = [
          GLuint i, n = _mesa_get_compressed_formats(ctx, formats, GL_FALSE);
          ASSERT(n <= 100);
          for (i = 0; i < n; i++)
-            params[i] = ENUM_TO_INT(formats[i]);""",
+            params[i] = CONVERSION(formats[i]);""",
          ["ARB_texture_compression"] ),
 
        # GL_EXT_compiled_vertex_array
@@ -1083,10 +1084,11 @@ def EmitGetFunction(stateVars, returnType):
                                assert len(extensions) == 4
                                print ('         CHECK_EXT4(%s, %s, %s, %s, "%s");' %
                                           (extensions[0], extensions[1], extensions[2], extensions[3], function))
+               conversion = ConversionFunc(varType, returnType)
                if optionalCode:
+                       optionalCode = string.replace(optionalCode, "CONVERSION", conversion);  
                        print "         {"
                        print "         " + optionalCode
-               conversion = ConversionFunc(varType, returnType)
                n = len(state)
                for i in range(n):
                        if conversion: