mesa: minor whitespace fixes
authorBrian Paul <brianp@vmware.com>
Thu, 24 Mar 2011 19:15:29 +0000 (13:15 -0600)
committerBrian Paul <brianp@vmware.com>
Thu, 24 Mar 2011 19:38:27 +0000 (13:38 -0600)
src/mesa/main/atifragshader.c
src/mesa/main/drawpix.c
src/mesa/main/extensions.c
src/mesa/main/pbo.c

index 44097e1a266059bf26d695326d802755cce232a1..c74c999f8081e7afaceed105585e6ee8be66082d 100644 (file)
@@ -494,7 +494,7 @@ _mesa_PassTexCoordATI(GLuint dst, GLuint coord, GLenum swizzle)
       }
    }
 
-   curProg->regsAssigned[curProg->cur_pass >> 1] |=  1 << (dst - GL_REG_0_ATI);
+   curProg->regsAssigned[curProg->cur_pass >> 1] |= 1 << (dst - GL_REG_0_ATI);
    new_tex_inst(curProg);
 
    /* add the instructions */
@@ -567,7 +567,7 @@ _mesa_SampleMapATI(GLuint dst, GLuint interp, GLenum swizzle)
       }
    }
 
-   curProg->regsAssigned[curProg->cur_pass >> 1] |=  1 << (dst - GL_REG_0_ATI);
+   curProg->regsAssigned[curProg->cur_pass >> 1] |= 1 << (dst - GL_REG_0_ATI);
    new_tex_inst(curProg);
 
    /* add the instructions */
index fb86036a188b9b93f186469b7a47433e1dee3a77..ee379f71bf5618b57acac2c7d5ca3896089fb165 100644 (file)
@@ -188,7 +188,7 @@ _mesa_CopyPixels( GLint srcx, GLint srcy, GLsizei width, GLsizei height,
       goto end;
    }
 
-   if (!ctx->Current.RasterPosValid || width ==0 || height == 0) {
+   if (!ctx->Current.RasterPosValid || width == 0 || height == 0) {
       goto end; /* no-op, not an error */
    }
 
index 728c73c10ae20dabb69f4b1b18ab1d338e094df3..d0c08ca719a743238ac3624685137847d12c95e2 100644 (file)
@@ -753,7 +753,7 @@ _mesa_extension_is_enabled( struct gl_context *ctx, const char *name )
 static char *
 get_extension_override( struct gl_context *ctx )
 {
-   const char *env_const= _mesa_getenv("MESA_EXTENSION_OVERRIDE");
+   const char *env_const = _mesa_getenv("MESA_EXTENSION_OVERRIDE");
    char *env;
    char *ext;
    char *extra_exts;
@@ -794,7 +794,7 @@ get_extension_override( struct gl_context *ctx )
    }
 
    /* Remove trailing space. */
-   len  = strlen(extra_exts);
+   len = strlen(extra_exts);
    if (extra_exts[len - 1] == ' ')
       extra_exts[len - 1] = '\0';
 
index dc00d423ba9079dde568cc4328d46363d79f9468..56b26a954bd560e53f474fee2891335052644031 100644 (file)
@@ -81,8 +81,8 @@ _mesa_validate_pbo_access(GLuint dimensions,
                                format, type, 0, 0, 0);
 
    /* get address just past the last pixel we'll read */
-   end =  _mesa_image_address(dimensions, pack, ptr, width, height,
-                              format, type, depth-1, height-1, width);
+   end = _mesa_image_address(dimensions, pack, ptr, width, height,
+                             format, type, depth-1, height-1, width);
 
 
    sizeAddr = ((const GLubyte *) 0) + pack->BufferObj->Size;