diff options
author | Keith Whitwell <[email protected]> | 2008-05-29 00:17:53 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-05-29 00:17:53 +0100 |
commit | 62628c4d3d497cbca73fde869c9069fa90e6453e (patch) | |
tree | 3942a61642833fcbadd3a26fa9c9745730607a85 /src/gallium/auxiliary/draw/draw_private.h | |
parent | 728d1f7f43b6db9f4f42c2d16ba223c492d1147d (diff) |
draw: share machine
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_private.h')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_private.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/draw/draw_private.h b/src/gallium/auxiliary/draw/draw_private.h index c095bf3d7b9..4cbccc8b5bb 100644 --- a/src/gallium/auxiliary/draw/draw_private.h +++ b/src/gallium/auxiliary/draw/draw_private.h @@ -183,6 +183,10 @@ struct draw_context */ struct gallivm_cpu_engine *engine; + /* Here's another one: + */ + struct aos_machine *aos_machine; + struct translate *fetch; struct translate_cache *fetch_cache; @@ -215,6 +219,11 @@ struct draw_context boolean draw_vs_init( struct draw_context *draw ); void draw_vs_destroy( struct draw_context *draw ); +void draw_vs_set_viewport( struct draw_context *, + const struct pipe_viewport_state * ); + +void draw_vs_set_constants( struct draw_context *, + const float (*constants)[4] ); |