diff options
author | Marek Olšák <[email protected]> | 2019-10-25 16:36:15 -0400 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2019-11-04 16:49:46 -0500 |
commit | af94600484ea4d0907ef7adddf0e6558434acdb0 (patch) | |
tree | 1733e477acf4adcbbee6c3e4fb904fe66da3451e /src/compiler/glsl/ir.h | |
parent | 4b4b383f38ab772d4ad1a4ddccc2d72749257b3a (diff) |
compiler: make variable::data::binding unsigned
Nothing seems to set a negative value.
Reviewed-by: Connor Abbott <[email protected]>
Diffstat (limited to 'src/compiler/glsl/ir.h')
-rw-r--r-- | src/compiler/glsl/ir.h | 2 |
1 files changed, 1 insertions, 1 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 |