summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Krol <michal@vmware.com>2009-12-30 16:28:01 +0100
committerMichal Krol <michal@vmware.com>2009-12-30 16:28:01 +0100
commit76e53923ba79124c6df55bddd7e9a11a7e9104d4 (patch)
tree05f872443987815fe210075d3670d4f47f7365d1
parent09c0287b84725098c0b365668231ddf00487c84c (diff)
translate: Fix a call to indexed SSE run.
-rw-r--r--src/gallium/auxiliary/translate/translate_sse.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/translate/translate_sse.c b/src/gallium/auxiliary/translate/translate_sse.c
index ddfa4c6b4aa..ffc5fe9e818 100644
--- a/src/gallium/auxiliary/translate/translate_sse.c
+++ b/src/gallium/auxiliary/translate/translate_sse.c
@@ -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 );
}