summaryrefslogtreecommitdiff
path: root/src/mesa/state_tracker/st_atom_stipple.c
diff options
context:
space:
mode:
authorAlan Hourihane <alanh@tungstengraphics.com>2008-05-02 10:08:03 +0000
committerAlan Hourihane <alanh@tungstengraphics.com>2008-05-02 10:30:34 +0000
commit54507125e735ffa595e252282eaabf38095c21e1 (patch)
treeeacd1698108af8b744ddf92ecb06e7cc89a5a66f /src/mesa/state_tracker/st_atom_stipple.c
parenta1cb0c2b915532e934b5d37bd0c550b1bfcc77ba (diff)
Some changed for non-C99 compilers
Diffstat (limited to 'src/mesa/state_tracker/st_atom_stipple.c')
-rw-r--r--src/mesa/state_tracker/st_atom_stipple.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/state_tracker/st_atom_stipple.c b/src/mesa/state_tracker/st_atom_stipple.c
index c91214059a..f395930ab4 100644
--- a/src/mesa/state_tracker/st_atom_stipple.c
+++ b/src/mesa/state_tracker/st_atom_stipple.c
@@ -54,10 +54,10 @@ update_stipple( struct st_context *st )
const struct st_tracked_state st_update_polygon_stipple = {
- .name = "st_update_polygon_stipple",
- .dirty = {
- .mesa = (_NEW_POLYGONSTIPPLE),
- .st = 0,
+ "st_update_polygon_stipple", /* name */
+ { /* dirty */
+ (_NEW_POLYGONSTIPPLE), /* mesa */
+ 0, /* st */
},
- .update = update_stipple
+ update_stipple /* update */
};