mesa: fix vert_result_to_frag_attrib() parameter type
authorBrian Paul <brianp@vmware.com>
Tue, 6 Sep 2011 21:24:14 +0000 (15:24 -0600)
committerBrian Paul <brianp@vmware.com>
Tue, 6 Sep 2011 21:24:14 +0000 (15:24 -0600)
src/mesa/main/mtypes.h

index 396a752bd6eebe203c0a304e96058e57fb771201..4e5cc46a4097296bfba9ee938f243dbf1f2d5986 100644 (file)
@@ -348,7 +348,7 @@ typedef enum
  * (VERT_RESULT_PSIZ, VERT_RESULT_BFC0, VERT_RESULT_BFC1, and
  * VERT_RESULT_EDGE) are converted to a value of -1.
  */
-static INLINE int vert_result_to_frag_attrib(int vert_result)
+static INLINE int vert_result_to_frag_attrib(gl_vert_result vert_result)
 {
    if (vert_result >= VERT_RESULT_VAR0)
       return vert_result - VERT_RESULT_VAR0 + FRAG_ATTRIB_VAR0;
@@ -366,7 +366,7 @@ static INLINE int vert_result_to_frag_attrib(int vert_result)
  * gl_frag_attrib values which have no corresponding gl_vert_result
  * (FRAG_ATTRIB_FACE and FRAG_ATTRIB_PNTC) are converted to a value of -1.
  */
-static INLINE int frag_attrib_to_vert_result(int frag_attrib)
+static INLINE int frag_attrib_to_vert_result(gl_frag_attrib frag_attrib)
 {
    if (frag_attrib <= FRAG_ATTRIB_TEX7)
       return frag_attrib;