Intel GPU/OpenGL 2.x planet normals fix

This commit is contained in:
Anuken
2025-10-08 08:45:40 +09:00
parent 576b7f6b6b
commit a0cf5b7265
6 changed files with 22 additions and 7 deletions

View File

@@ -0,0 +1,13 @@
attribute vec4 a_position;
attribute vec3 a_normal;
uniform mat4 u_proj;
uniform mat4 u_trans;
uniform vec4 u_color;
varying vec4 v_col;
void main(){
v_col = vec4(1.0);
gl_Position = u_proj * u_trans * a_position;
}