diff options
author | omnisci3nce <17525998+omnisci3nce@users.noreply.github.com> | 2024-04-03 19:54:57 +1100 |
---|---|---|
committer | omnisci3nce <17525998+omnisci3nce@users.noreply.github.com> | 2024-04-03 19:54:57 +1100 |
commit | 6a95b047998c0e0dcfdf60d17cf2cd0bd0bfee12 (patch) | |
tree | 6c167578415c2357e23da4b760f6d71cee670eaa /assets | |
parent | fb3e055ff500e530e9ec46317441688bf4d07e13 (diff) |
make set explicit
Diffstat (limited to 'assets')
-rw-r--r-- | assets/shaders/object.frag | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/shaders/object.frag b/assets/shaders/object.frag index 8466c1d..fa50fcf 100644 --- a/assets/shaders/object.frag +++ b/assets/shaders/object.frag @@ -5,7 +5,7 @@ layout(location = 0) in vec3 in_position; layout(location = 1) in vec3 in_normal; layout(location = 2) in vec2 in_tex_coord; -layout(binding = 1) uniform sampler2D texSampler; +layout(set = 0, binding = 1) uniform sampler2D texSampler; layout(location = 0) out vec4 out_color; |