translate: Fix a call to indexed SSE run.
authorMichal Krol <michal@vmware.com>
Wed, 30 Dec 2009 15:28:01 +0000 (16:28 +0100)
committerMichal Krol <michal@vmware.com>
Wed, 30 Dec 2009 15:28:01 +0000 (16:28 +0100)
src/gallium/auxiliary/translate/translate_sse.c

index ddfa4c6b4aaf5e0d3615439f629d1e554cd5f1c4..ffc5fe9e818629ec4336c504a6841d1cfef4fcdc 100644 (file)
@@ -55,6 +55,7 @@ typedef void (PIPE_CDECL *run_func)( struct translate *translate,
 typedef void (PIPE_CDECL *run_elts_func)( struct translate *translate,
                                           const unsigned *elts,
                                           unsigned count,
+                                          unsigned instance_id,
                                           void *output_buffer );
 
 struct translate_buffer {
@@ -693,6 +694,7 @@ static void PIPE_CDECL translate_sse_run_elts( struct translate *translate,
    p->gen_run_elts( translate,
                    elts,
                    count,
+                    0,
                    output_buffer );
 }