From: Ian Romanick Date: Fri, 15 Feb 2008 18:00:31 +0000 (-0800) Subject: Make this file build on non-SSE builds (e.g., Cell) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b08d3fa249c830d274dca362b8f824b75fe26945;p=mesa.git Make this file build on non-SSE builds (e.g., Cell) --- 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; }