diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2023-09-28 16:17:56 -0400 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2023-09-28 16:17:56 -0400 |
| commit | 43f3dc16cc9e43c459814249089c79f22eefa7dc (patch) | |
| tree | 74cf6c9d447183af89180acefcace146cea98428 /assets/shaders/vert.vert | |
| parent | d8133778d078356501ea6e30ce9408edb9b0c19b (diff) | |
add torus and update models to not include vertex color
Diffstat (limited to 'assets/shaders/vert.vert')
| -rw-r--r-- | assets/shaders/vert.vert | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/assets/shaders/vert.vert b/assets/shaders/vert.vert index 07044c8..593e88c 100644 --- a/assets/shaders/vert.vert +++ b/assets/shaders/vert.vert @@ -27,10 +27,12 @@ void main() { ubo.proj * ubo.view * ubo.model * + vec4(inPosition, 1.0); +/* vec4(instPos, 1.0) * vec4(instRot, 1.0) * vec4(instScale, 1.0) * - vec4(inPosition, 1.0); +*/ fragColor = vec4(0.0, 0.0, 0.0, 0.0); fragTexCoord = vec3(inUV, 0); } |
