diff options
author | Dave Airlie <[email protected]> | 2017-11-15 09:59:42 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2017-11-17 11:31:40 +1000 |
commit | a6b379284365e8adee780b691596d3a66de1ba93 (patch) | |
tree | c188e600e823ffc64a4f31006c648e50fda7505e /src/gallium/drivers/r600/r600_shader.h | |
parent | 5689bb00229a422267ada6aef770dacc81e3319e (diff) |
r600: add core pieces of image support.
This adds the atoms and gallium api implementations,
along with support for compress/decompress paths for
shader images.
Tested-By: Gert Wollny <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_shader.h')
-rw-r--r-- | src/gallium/drivers/r600/r600_shader.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/r600_shader.h b/src/gallium/drivers/r600/r600_shader.h index c6efbb9852f..ccbcd6723ad 100644 --- a/src/gallium/drivers/r600/r600_shader.h +++ b/src/gallium/drivers/r600/r600_shader.h @@ -118,6 +118,7 @@ struct r600_shader { boolean uses_atomics; boolean uses_images; uint8_t atomic_base; + uint8_t rat_base; }; union r600_shader_key { |