diff options
-rw-r--r-- | src/compiler/glsl/ir.h | 2 | ||||
-rw-r--r-- | src/compiler/nir/nir.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/glsl/ir.h b/src/compiler/glsl/ir.h index ecf4b691472..93647f963f4 100644 --- a/src/compiler/glsl/ir.h +++ b/src/compiler/glsl/ir.h @@ -905,7 +905,7 @@ public: * * For array types, this represents the binding point for the first element. */ - int16_t binding; + uint16_t binding; /** * Storage location of the base of this variable diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h index f5f9826a27c..00e5028d27b 100644 --- a/src/compiler/nir/nir.h +++ b/src/compiler/nir/nir.h @@ -470,7 +470,7 @@ typedef struct nir_variable { * * For array types, this represents the binding point for the first element. */ - int binding; + unsigned binding; /** * Location an atomic counter or transform feedback is stored at. |