summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/radeonsi/si_pipe.h
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2016-04-19 02:21:25 +0200
committerMarek Olšák <[email protected]>2016-04-22 01:14:14 +0200
commit3acaefb1bbf329059ab7e8d1ffa2b99b516e0f50 (patch)
tree14487f3a15923fe4ed230e1a884a87ee78b443b5 /src/gallium/drivers/radeonsi/si_pipe.h
parent0954d5e9827baba4972e92a1f760cd891c9c0798 (diff)
radeonsi: shorten slot masks to 32 bits
Reviewed-by: Bas Nieuwenhuizen <[email protected]> Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_pipe.h')
-rw-r--r--src/gallium/drivers/radeonsi/si_pipe.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/radeonsi/si_pipe.h b/src/gallium/drivers/radeonsi/si_pipe.h
index 85bf10f0102..13946a5ad71 100644
--- a/src/gallium/drivers/radeonsi/si_pipe.h
+++ b/src/gallium/drivers/radeonsi/si_pipe.h
@@ -137,8 +137,8 @@ struct si_cs_shader_state {
struct si_textures_info {
struct si_sampler_views views;
- uint64_t depth_texture_mask; /* which textures are depth */
- uint64_t compressed_colortex_mask;
+ uint32_t depth_texture_mask; /* which textures are depth */
+ uint32_t compressed_colortex_mask;
};
struct si_images_info {