Fix CI. #22

Merged
shaunrd0 merged 9 commits from fix-ci into main 2026-02-15 01:41:29 +00:00
Showing only changes of commit 6d9689720d - Show all commits

View File

@@ -109,11 +109,12 @@ void main()
#version 330 #version 330
uniform samplerCube uTexture; uniform samplerCube uTexture;
varying vec3 vTexCoord; in vec3 vTexCoord;
out vec4 FragColor;
void main() void main()
{ {
gl_FragColor = texture(uTexture, vTexCoord); FragColor = texture(uTexture, vTexCoord);
} }
)" )"