diff options
author | Brian Paul <[email protected]> | 2012-01-07 14:16:27 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-01-07 14:16:27 -0700 |
commit | 488dd2c1912132fe7ee5e81b05fb64ba62a46098 (patch) | |
tree | 6001b0d4ae1e9278514766d739ade3a9b23fae82 /src/gallium/drivers/llvmpipe | |
parent | 59d2c4f8e5a00133c093137b2f4836313f633d60 (diff) |
gallium: make vbuf_render::set_primitive() return void
All the implementations of this function always return TRUE.
Diffstat (limited to 'src/gallium/drivers/llvmpipe')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_setup_vbuf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_setup_vbuf.c b/src/gallium/drivers/llvmpipe/lp_setup_vbuf.c index 384242f81d7..b287ef4391b 100644 --- a/src/gallium/drivers/llvmpipe/lp_setup_vbuf.c +++ b/src/gallium/drivers/llvmpipe/lp_setup_vbuf.c @@ -113,11 +113,10 @@ lp_setup_unmap_vertices(struct vbuf_render *vbr, } -static boolean +static void lp_setup_set_primitive(struct vbuf_render *vbr, unsigned prim) { lp_setup_context(vbr)->prim = prim; - return TRUE; } typedef const float (*const_float4_ptr)[4]; |