st/mesa: remove //-style comments
authorBrian Paul <brianp@vmware.com>
Wed, 16 Dec 2009 14:58:31 +0000 (07:58 -0700)
committerBrian Paul <brianp@vmware.com>
Wed, 16 Dec 2009 14:58:54 +0000 (07:58 -0700)
src/mesa/state_tracker/st_atom.c
src/mesa/state_tracker/st_cb_bitmap.c

index ca15ce1b474c5165ceb3cd2303ef28af10014d1f..d6254aa76379340f13ed1864ad4ad4ca8462c933 100644 (file)
@@ -137,7 +137,7 @@ void st_validate_state( struct st_context *st )
    if (state->st == 0)
       return;
 
-//   _mesa_printf("%s %x/%x\n", __FUNCTION__, state->mesa, state->st);
+   /* _mesa_printf("%s %x/%x\n", __FUNCTION__, state->mesa, state->st);*/
 
    if (1) {
       /* Debug version which enforces various sanity checks on the
@@ -152,7 +152,7 @@ void st_validate_state( struct st_context *st )
         const struct st_tracked_state *atom = atoms[i];
         struct st_state_flags generated;
         
-//      _mesa_printf("atom %s %x/%x\n", atom->name, atom->dirty.mesa, atom->dirty.st);
+        /*_mesa_printf("atom %s %x/%x\n", atom->name, atom->dirty.mesa, atom->dirty.st);*/
 
         if (!(atom->dirty.mesa || atom->dirty.st) ||
             !atom->update) {
@@ -162,7 +162,7 @@ void st_validate_state( struct st_context *st )
 
         if (check_state(state, &atom->dirty)) {
            atoms[i]->update( st );
-//         _mesa_printf("after: %x\n", atom->dirty.mesa);
+           /*_mesa_printf("after: %x\n", atom->dirty.mesa);*/
         }
 
         accumulate_state(&examined, &atom->dirty);
@@ -175,7 +175,7 @@ void st_validate_state( struct st_context *st )
         assert(!check_state(&examined, &generated));
         prev = *state;
       }
-//      _mesa_printf("\n");
+      /*_mesa_printf("\n");*/
 
    }
    else {
index 902fb38d1a7ed96e101114b34456b10c723c9794..d6ec5dabfa0138dce73c3b250b3c3600669a4cca 100644 (file)
@@ -515,7 +515,7 @@ reset_cache(struct st_context *st)
    struct pipe_screen *screen = pipe->screen;
    struct bitmap_cache *cache = st->bitmap.cache;
 
-   //memset(cache->buffer, 0xff, sizeof(cache->buffer));
+   /*memset(cache->buffer, 0xff, sizeof(cache->buffer));*/
    cache->empty = GL_TRUE;
 
    cache->xmin = 1000000;