projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
09c0287
)
translate: Fix a call to indexed SSE run.
author
Michal Krol
<michal@vmware.com>
Wed, 30 Dec 2009 15:28:01 +0000
(16:28 +0100)
committer
Michal Krol
<michal@vmware.com>
Wed, 30 Dec 2009 15:28:01 +0000
(16:28 +0100)
src/gallium/auxiliary/translate/translate_sse.c
patch
|
blob
|
history
diff --git
a/src/gallium/auxiliary/translate/translate_sse.c
b/src/gallium/auxiliary/translate/translate_sse.c
index ddfa4c6b4aaf5e0d3615439f629d1e554cd5f1c4..ffc5fe9e818629ec4336c504a6841d1cfef4fcdc 100644
(file)
--- 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 );
}