summaryrefslogtreecommitdiff
path: root/src/mesa/state_tracker/st_atom_fixedfunction.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_fixedfunction.c
parenta1cb0c2b915532e934b5d37bd0c550b1bfcc77ba (diff)
Some changed for non-C99 compilers
Diffstat (limited to 'src/mesa/state_tracker/st_atom_fixedfunction.c')
-rw-r--r--src/mesa/state_tracker/st_atom_fixedfunction.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/state_tracker/st_atom_fixedfunction.c b/src/mesa/state_tracker/st_atom_fixedfunction.c
index 3f137e1633..165567af70 100644
--- a/src/mesa/state_tracker/st_atom_fixedfunction.c
+++ b/src/mesa/state_tracker/st_atom_fixedfunction.c
@@ -55,12 +55,12 @@ static void update_tnl( struct st_context *st )
const struct st_tracked_state st_update_tnl = {
- .name = "st_update_tnl",
- .dirty = {
- .mesa = TNL_FIXED_FUNCTION_STATE_FLAGS,
- .st = 0
+ "st_update_tnl", /* name */
+ { /* dirty */
+ TNL_FIXED_FUNCTION_STATE_FLAGS, /* mesa */
+ 0 /* st */
},
- .update = update_tnl
+ update_tnl /* update */
};