From af94600484ea4d0907ef7adddf0e6558434acdb0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Fri, 25 Oct 2019 16:36:15 -0400 Subject: [PATCH] compiler: make variable::data::binding unsigned Nothing seems to set a negative value. Reviewed-by: Connor Abbott --- src/compiler/glsl/ir.h | 2 +- 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. -- 2.30.2