diff options
author | Michal Krol <[email protected]> | 2009-12-29 23:21:01 +0100 |
---|---|---|
committer | Michal Krol <[email protected]> | 2009-12-29 23:21:01 +0100 |
commit | 7ca0ce38340144794267609646048b3820d594ab (patch) | |
tree | 7c31399f0373cb652b682e9af0fedde839d58a77 /src/gallium/auxiliary/translate/translate_sse.c | |
parent | 7124fa16efe0f8ffb402bcd182f276032bed378d (diff) |
Implement draw_arrays_instanced() in softpipe.
Modify the translate module to respect instance divisors and accept
instance id as a parameter to calculate input vertex offset.
Diffstat (limited to 'src/gallium/auxiliary/translate/translate_sse.c')
-rw-r--r-- | src/gallium/auxiliary/translate/translate_sse.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/translate/translate_sse.c b/src/gallium/auxiliary/translate/translate_sse.c index b62db8d8f33..edd0be17f0b 100644 --- a/src/gallium/auxiliary/translate/translate_sse.c +++ b/src/gallium/auxiliary/translate/translate_sse.c @@ -637,6 +637,7 @@ static void PIPE_CDECL translate_sse_run_elts( struct translate *translate, static void PIPE_CDECL translate_sse_run( struct translate *translate, unsigned start, unsigned count, + unsigned instance_id, void *output_buffer ) { struct translate_sse *p = (struct translate_sse *)translate; |