Looks like a thinko, "Hey, constant buffers can be at most 64 KiB
in size, offset can't be larger." But it can, of course.
I think piglit lacks a test for UBO and BindBufferRange that
tests if it actually works.
const uint8_t *data;
} u;
uint32_t size; /* max 65536 */
- uint16_t offset;
+ uint32_t offset;
boolean user; /* should only be TRUE if u.data is valid and non-NULL */
};
const void *data;
} u;
uint32_t size;
- uint16_t offset;
+ uint32_t offset;
boolean user; /* should only be TRUE if u.data is valid and non-NULL */
};