diff options
Diffstat (limited to 'src/shader.vert')
-rw-r--r-- | src/shader.vert | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader.vert b/src/shader.vert index 182bd51..58f8712 100644 --- a/src/shader.vert +++ b/src/shader.vert @@ -17,7 +17,7 @@ layout(location = 0) out vec3 fragColor; layout(location = 1) out vec2 fragTexCoord; void main() { - gl_Position = ubo.proj * ubo.view * ubo.model * vec4(inPosition, 1.0); + gl_Position = ubo.proj * ubo.view * ubo.model * vec4(inPosition, 1); //gl_Position = vec4(inPosition * 2, 1.0); gl_PointSize = 1.5f; |