Added missing semicolon to vertex shader.

This commit is contained in:
Jonathas Costa
2017-06-08 13:21:04 -04:00
parent f967e8dd90
commit f487107eaa
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ void main() {
}
// G-Buffer
vs_gPosition = position
vs_gPosition = position;
position = modelViewProjectionTransform * position;
vs_position = z_normalization(position);