diff options
author | Marek Olšák <[email protected]> | 2010-05-15 21:22:23 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2010-05-15 21:22:23 +0200 |
commit | 95ba021105a2f1a29c8a4f51641c7a0b527226be (patch) | |
tree | 569ec99d0dad5b1f4f4846b3299aeddb00f0035c /src/gallium/drivers/r300/r300_context.h | |
parent | af87ef10dc3c3940ddd27ff699406edd7a1dcc38 (diff) |
r300g: fix emission of some non-CSO atoms at the beginning of CS
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 4a59c6a8fb2..d2c8f56f6d7 100644 --- a/src/gallium/drivers/r300/r300_context.h +++ b/src/gallium/drivers/r300/r300_context.h @@ -55,6 +55,8 @@ struct r300_atom { unsigned size; /* Whether this atom should be emitted. */ boolean dirty; + /* Whether this atom may be emitted with state == NULL. */ + boolean allow_null_state; }; struct r300_blend_state { |