diff options
author | Alan Hourihane <alanh@tungstengraphics.com> | 2008-05-02 10:08:03 +0000 |
---|---|---|
committer | Alan Hourihane <alanh@tungstengraphics.com> | 2008-05-02 10:30:34 +0000 |
commit | 54507125e735ffa595e252282eaabf38095c21e1 (patch) | |
tree | eacd1698108af8b744ddf92ecb06e7cc89a5a66f /src/mesa/state_tracker/st_atom_clip.c | |
parent | a1cb0c2b915532e934b5d37bd0c550b1bfcc77ba (diff) |
Some changed for non-C99 compilers
Diffstat (limited to 'src/mesa/state_tracker/st_atom_clip.c')
-rwxr-xr-x[-rw-r--r--] | src/mesa/state_tracker/st_atom_clip.c | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/src/mesa/state_tracker/st_atom_clip.c b/src/mesa/state_tracker/st_atom_clip.c index a6f0568660..23d709b814 100644..100755 --- a/src/mesa/state_tracker/st_atom_clip.c +++ b/src/mesa/state_tracker/st_atom_clip.c @@ -62,15 +62,10 @@ static void update_clip( struct st_context *st ) const struct st_tracked_state st_update_clip = { - .name = "st_update_clip", - .dirty = { - .mesa = (_NEW_TRANSFORM), - .st = 0, + "st_update_clip", /* name */ + { /* dirty */ + (_NEW_TRANSFORM), /* mesa */ + 0, /* st */ }, - .update = update_clip + update_clip /* update */ }; - - - - - |