We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e2aeec commit 9329896Copy full SHA for 9329896
attachments/38_ray_tracing.frag
@@ -8,5 +8,6 @@ layout(location = 1) in vec2 fragTexCoord;
8
layout(location = 0) out vec4 outColor;
9
10
void main() {
11
+ // Not used, see Slang shader
12
outColor = texture(texSampler, fragTexCoord);
13
}
attachments/38_ray_tracing.vert
@@ -14,6 +14,7 @@ layout(location = 0) out vec3 fragColor;
14
layout(location = 1) out vec2 fragTexCoord;
15
16
17
18
gl_Position = ubo.proj * ubo.view * ubo.model * vec4(inPosition, 1.0);
19
fragColor = inColor;
20
fragTexCoord = inTexCoord;
0 commit comments