diff options
author | Michal Krol <michal@tungstengraphics.com> | 2008-10-06 13:23:56 +0200 |
---|---|---|
committer | Michal Krol <michal@tungstengraphics.com> | 2008-10-06 13:23:56 +0200 |
commit | 9b827018133868e84ddc0998a5b5387584c7478c (patch) | |
tree | fc82a9f9423626922723064ec8cd0746330d20ae /src/gallium/auxiliary | |
parent | 7053f8c902e904495dffbbf6ea55f414cec780e7 (diff) |
draw: Fix compiler errors on Windows.
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_vertex.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/auxiliary/draw/draw_vertex.h b/src/gallium/auxiliary/draw/draw_vertex.h index dca6158128..a943607d7e 100644 --- a/src/gallium/auxiliary/draw/draw_vertex.h +++ b/src/gallium/auxiliary/draw/draw_vertex.h @@ -87,14 +87,14 @@ struct vertex_info } attrib[PIPE_MAX_SHADER_INPUTS]; }; -static inline int +static INLINE int draw_vinfo_size( const struct vertex_info *a ) { return ((const char *)&a->attrib[a->num_attribs] - (const char *)a); } -static inline int +static INLINE int draw_vinfo_compare( const struct vertex_info *a, const struct vertex_info *b ) { @@ -102,7 +102,7 @@ draw_vinfo_compare( const struct vertex_info *a, return memcmp( a, b, sizea ); } -static inline void +static INLINE void draw_vinfo_copy( struct vertex_info *dst, const struct vertex_info *src ) { |