Allow for larger binding numbers. 65K instead of 255.
This commit is contained in:
parent
196b6e24f6
commit
c056adcddd
2 changed files with 4 additions and 4 deletions
|
|
@ -621,8 +621,8 @@ public:
|
|||
unsigned int layoutSet : 7;
|
||||
static const unsigned int layoutSetEnd = 0x3F;
|
||||
|
||||
unsigned int layoutBinding : 8;
|
||||
static const unsigned int layoutBindingEnd = 0xFF;
|
||||
unsigned int layoutBinding : 16;
|
||||
static const unsigned int layoutBindingEnd = 0xFFFF;
|
||||
|
||||
unsigned int layoutIndex : 8;
|
||||
static const unsigned int layoutIndexEnd = 0xFF;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue