diff options
author | José Fonseca <[email protected]> | 2010-06-29 14:30:44 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-06-29 14:30:44 +0100 |
commit | bb6ca7b3f74b63d45532108730b5c93a57926662 (patch) | |
tree | 26678e8225d881c97cbf3451d47621ebbd9bce98 /src | |
parent | 218da1ef34a2466db57f1bcd68a347b49ef469e6 (diff) |
draw: Add inline keyword to inline function.
Otherwise gcc will warn about unusued functions.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_llvm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_llvm.h b/src/gallium/auxiliary/draw/draw_llvm.h index c98d7fb393b..1ef009b592c 100644 --- a/src/gallium/auxiliary/draw/draw_llvm.h +++ b/src/gallium/auxiliary/draw/draw_llvm.h @@ -193,7 +193,7 @@ struct draw_llvm { LLVMTypeRef vb_ptr_type; }; -static struct llvm_vertex_shader * +static INLINE struct llvm_vertex_shader * llvm_vertex_shader(struct draw_vertex_shader *vs) { return (struct llvm_vertex_shader *)vs; |