Merge pull request #651 from chrisforbes/fix-shader-interface-mismatch

Fix interface mismatch between VS and GS in deferredshadows
This commit is contained in:
Sascha Willems 2020-01-08 19:49:30 +01:00 committed by GitHub
commit 8668606a14
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
#version 420
#version 450
#define LIGHT_COUNT 3
@ -24,4 +24,4 @@ void main()
EmitVertex();
}
EndPrimitive();
}
}