mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-31 03:20:09 +01:00
radeonsi: fix undefined shift in macro definition
Pointed out by coverity Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
This commit is contained in:
parent
93ba356544
commit
378ea92bf6
1 changed files with 1 additions and 1 deletions
|
|
@ -126,7 +126,7 @@ static const unsigned si_pc_shader_type_bits[] = {
|
|||
/* Max counters per HW block */
|
||||
#define SI_QUERY_MAX_COUNTERS 16
|
||||
|
||||
#define SI_PC_SHADERS_WINDOWING (1 << 31)
|
||||
#define SI_PC_SHADERS_WINDOWING (1u << 31)
|
||||
|
||||
struct si_query_group {
|
||||
struct si_query_group *next;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue