diff options
author | Marek Olšák <[email protected]> | 2016-04-19 02:21:25 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2016-04-22 01:14:14 +0200 |
commit | 3acaefb1bbf329059ab7e8d1ffa2b99b516e0f50 (patch) | |
tree | 14487f3a15923fe4ed230e1a884a87ee78b443b5 /src/gallium/drivers/radeonsi/si_state.h | |
parent | 0954d5e9827baba4972e92a1f760cd891c9c0798 (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_state.h')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_state.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/radeonsi/si_state.h b/src/gallium/drivers/radeonsi/si_state.h index 5e5271f2813..ef9f86449e6 100644 --- a/src/gallium/drivers/radeonsi/si_state.h +++ b/src/gallium/drivers/radeonsi/si_state.h @@ -197,10 +197,10 @@ struct si_descriptors { unsigned ce_offset; /* The i-th bit is set if that element is enabled (non-NULL resource). */ - uint64_t enabled_mask; + unsigned enabled_mask; /* elements of the list that are changed and need to be uploaded */ - uint64_t dirty_mask; + unsigned dirty_mask; /* Whether the CE ram is dirty and needs to be reinitialized entirely * before we can do partial updates. */ |