From: Marek Olšák Date: Fri, 25 Oct 2019 20:36:15 +0000 (-0400) Subject: compiler: make variable::data::binding unsigned X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=af94600484ea4d0907ef7adddf0e6558434acdb0;p=mesa.git compiler: make variable::data::binding unsigned Nothing seems to set a negative value. Reviewed-by: Connor Abbott --- 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.