OSDN Git Service

i965: update comment, use const qualifier
authorBrian Paul <brianp@vmware.com>
Fri, 20 Feb 2009 17:49:30 +0000 (10:49 -0700)
committerBrian Paul <brianp@vmware.com>
Fri, 20 Feb 2009 18:44:38 +0000 (11:44 -0700)
src/mesa/drivers/dri/i965/brw_wm.c

index 4501e04..10f38e0 100644 (file)
@@ -183,7 +183,7 @@ static void brw_wm_populate_key( struct brw_context *brw,
 {
    GLcontext *ctx = &brw->intel.ctx;
    /* BRW_NEW_FRAGMENT_PROGRAM */
-   struct brw_fragment_program *fp = 
+   const struct brw_fragment_program *fp = 
       (struct brw_fragment_program *)brw->fragment_program;
    GLuint lookup = 0;
    GLuint line_aa;
@@ -302,10 +302,8 @@ static void brw_wm_populate_key( struct brw_context *brw,
       key->drawable_height = brw->intel.driDrawable->h;
    }
 
-   /* Extra info:
-    */
+   /* The unique fragment program ID */
    key->program_string_id = fp->id;
-
 }