diff options
author | Dave Airlie <[email protected]> | 2010-09-08 08:41:57 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2010-09-08 08:41:57 +1000 |
commit | d42efb9e8df6ef872ab4f142e3daf1b6cb9eff11 (patch) | |
tree | bd6cd1754fdddb6a730ad4fe61478187419df78e /src/gallium/drivers/r600/radeon.h | |
parent | 9ef1c51be16ea360481cf9f82ebb1e3eb01efb18 (diff) |
r600g: add support for constants in memory buffers.
DX9 constants were in the constant file, and evergreen no longer support
cfile. r600/700 can also use constants in memory buffers, so add the code
(disabled for now) to enable that as precursor for evergreen.
Diffstat (limited to 'src/gallium/drivers/r600/radeon.h')
-rw-r--r-- | src/gallium/drivers/r600/radeon.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/radeon.h b/src/gallium/drivers/r600/radeon.h index cf26ecfe231..0a8cb73e7dc 100644 --- a/src/gallium/drivers/r600/radeon.h +++ b/src/gallium/drivers/r600/radeon.h @@ -194,6 +194,7 @@ enum r600_stype { R600_STATE_DSA, R600_STATE_SHADER, /* has PS,VS,GS,FS variants */ R600_STATE_CONSTANT, /* has PS,VS,GS,FS variants */ + R600_STATE_CBUF, /* has PS,VS,GS,FS variants */ R600_STATE_RESOURCE, /* has PS,VS,GS,FS variants */ R600_STATE_SAMPLER, /* has PS,VS,GS,FS variants */ R600_STATE_SAMPLER_BORDER, /* has PS,VS,GS,FS variants */ |