mesa: remove register keyword, add const in _mesa_QueryMatrixxOES()
authorBrian Paul <brianp@vmware.com>
Sat, 7 Mar 2015 20:15:22 +0000 (13:15 -0700)
committerBrian Paul <brianp@vmware.com>
Thu, 12 Mar 2015 13:52:45 +0000 (07:52 -0600)
Reviewed-by: Matt Turner <mattst88@gmail.com>
src/mesa/main/querymatrix.c

index ca6b023379efcd1677a0fa38599b01b1465dbe91..ccd5c5e990470e1ed8207fa9e4ac59fbe0bf9523 100644 (file)
@@ -49,13 +49,12 @@ _mesa_QueryMatrixxOES(GLfixed mantissa[16], GLint exponent[16])
     * NaN or Inf).  In case of error, everything is invalid.
     */
    GLbitfield rv;
-   register unsigned int i;
-   unsigned int bit;
+   unsigned i, bit;
 
    /* This data structure defines the mapping between the current matrix
     * mode and the desired matrix identifier.
     */
-   static struct {
+   static const struct {
       GLenum currentMode;
       GLenum desiredMatrix;
    } modes[] = {