diff options
author | Alan Hourihane <alanh@tungstengraphics.com> | 2008-05-02 10:31:46 +0000 |
---|---|---|
committer | Alan Hourihane <alanh@tungstengraphics.com> | 2008-05-02 10:31:46 +0000 |
commit | 7e4bc84dfc6c05cea3d6fc52173708ddeb33cf45 (patch) | |
tree | 981db1e0ee70106b06756475234bdf2293fdf603 | |
parent | 54507125e735ffa595e252282eaabf38095c21e1 (diff) |
inline -> INLINE
-rw-r--r-- | src/mesa/state_tracker/st_program.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/state_tracker/st_program.h b/src/mesa/state_tracker/st_program.h index 1a2062131d..d8f26da2ee 100644 --- a/src/mesa/state_tracker/st_program.h +++ b/src/mesa/state_tracker/st_program.h @@ -101,14 +101,14 @@ struct st_vertex_program }; -static inline struct st_fragment_program * +static INLINE struct st_fragment_program * st_fragment_program( struct gl_fragment_program *fp ) { return (struct st_fragment_program *)fp; } -static inline struct st_vertex_program * +static INLINE struct st_vertex_program * st_vertex_program( struct gl_vertex_program *vp ) { return (struct st_vertex_program *)vp; |