diff options
author | Keith Whitwell <[email protected]> | 2008-05-15 12:39:08 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-05-23 09:16:55 +0100 |
commit | 7c99d7fe60e7bb0b7cf103a851aeef4614278ca6 (patch) | |
tree | ebd38aa2e37aecb6820bc2f28b15060a7ff0bf1e /src/gallium/auxiliary/draw/draw_private.h | |
parent | 2f0d1396e4c1626b3b1ac799bd29e86a9530369e (diff) |
draw: create specialized vs varients incorporating fetch & emit
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_private.h')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_private.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/draw/draw_private.h b/src/gallium/auxiliary/draw/draw_private.h index 3418ee2b886..c095bf3d7b9 100644 --- a/src/gallium/auxiliary/draw/draw_private.h +++ b/src/gallium/auxiliary/draw/draw_private.h @@ -184,7 +184,9 @@ struct draw_context struct gallivm_cpu_engine *engine; + struct translate *fetch; struct translate_cache *fetch_cache; + struct translate *emit; struct translate_cache *emit_cache; } vs; |