Some changed for non-C99 compilers
[mesa.git] / src / mesa / state_tracker / st_atom_rasterizer.c
index bb14cf9045a6bf47d5240b2eed01e88f069804a5..87a91d56d06b07d57d8f75cd8965395b472cb98e 100644 (file)
@@ -267,11 +267,11 @@ static void update_raster_state( struct st_context *st )
 }
 
 const struct st_tracked_state st_update_rasterizer = {
-   .name = "st_update_rasterizer",
-   .dirty = {
-      .mesa = (_NEW_LIGHT | _NEW_POLYGON | _NEW_LINE | _NEW_SCISSOR |
-               _NEW_POINT | _NEW_BUFFERS | _NEW_MULTISAMPLE),
-      .st  = 0,
+   "st_update_rasterizer",                                     /* name */
+   {                                                           /* dirty */
+      (_NEW_LIGHT | _NEW_POLYGON | _NEW_LINE | _NEW_SCISSOR |  /* mesa */
+               _NEW_POINT | _NEW_BUFFERS | _NEW_MULTISAMPLE),  
+      0,                                                       /* st */
    },
-   .update = update_raster_state
+   update_raster_state                                         /* update */
 };