gl: Disallow overlapping binding points

This commit is contained in:
kd-11 2022-06-04 21:07:06 +03:00 committed by kd-11
parent 88faac7bbc
commit 6c315e8aee
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
#define GL_TEMP_IMAGE_SLOT 31
#define UBO_SLOT(x) (x)
#define SSBO_SLOT(x) (x)
#define SSBO_SLOT(x) (x + 8)
#define GL_VERTEX_PARAMS_BIND_SLOT UBO_SLOT(0)
#define GL_VERTEX_LAYOUT_BIND_SLOT UBO_SLOT(1)