diff options
author | Ian Romanick <[email protected]> | 2008-02-15 10:00:31 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2008-02-15 10:00:31 -0800 |
commit | b08d3fa249c830d274dca362b8f824b75fe26945 (patch) | |
tree | 285c26d5f321bf33b4b20e046291cfd25a1c01a4 | |
parent | 397b81bd1c7984b1667af7ef954e053263a7a661 (diff) |
Make this file build on non-SSE builds (e.g., Cell)
-rw-r--r-- | src/gallium/auxiliary/draw/draw_vs_sse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_vs_sse.c b/src/gallium/auxiliary/draw/draw_vs_sse.c index 04349cb404c..27bc66812c3 100644 --- a/src/gallium/auxiliary/draw/draw_vs_sse.c +++ b/src/gallium/auxiliary/draw/draw_vs_sse.c @@ -243,7 +243,7 @@ struct draw_vertex_shader * draw_create_vs_sse( struct draw_context *draw, const struct pipe_shader_state *templ ) { - return NULL; + return (void *) 0; } |