Shadows, broke OpenGL, broke graphics settings, Exception raised when closing software

This commit is contained in:
Halbear 2026-08-30 01:06:23 +01:00
parent f7127e0878
commit 0d41f3e15b
36 changed files with 1187 additions and 219 deletions

View file

@ -14,5 +14,5 @@ void main() {
outTexCoords = inPosition;
mat4 skyView = mat4(mat3(uboView.view));
vec4 pos = uboProj.proj * skyView * vec4(inPosition, 1.0);
gl_Position = vec4(pos.xy, 0.0, pos.w);
gl_Position = vec4(pos.xy, pos.w, pos.w);
}