diff options
author | Marek Olšák <[email protected]> | 2011-03-05 15:53:46 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-03-05 17:41:11 +0100 |
commit | 65482f2c2b1c3456d0ca58a38d82c02a5d6d362c (patch) | |
tree | bcd341edebd94f6ae97359e3456c2d8f640f2112 /src/gallium/drivers/r300/r300_context.h | |
parent | 95c7881ac8240fa369e33db411bbd165d0f61948 (diff) |
r300g: implement instanced arrays
Diffstat (limited to 'src/gallium/drivers/r300/r300_context.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_context.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_context.h b/src/gallium/drivers/r300/r300_context.h index 58e1094e339..1e28221326d 100644 --- a/src/gallium/drivers/r300/r300_context.h +++ b/src/gallium/drivers/r300/r300_context.h @@ -610,6 +610,8 @@ struct r300_context { boolean vertex_arrays_dirty; boolean vertex_arrays_indexed; int vertex_arrays_offset; + int vertex_arrays_instance_id; + boolean instancing_enabled; }; #define foreach_atom(r300, atom) \ |