mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-16 08:02:36 +00:00
Added shader support, removed unused debugging puts statements and fixed Gosu Font.draw deprecation warning.
This commit is contained in:
8
shaders/vertex/lighting.glsl
Normal file
8
shaders/vertex/lighting.glsl
Normal file
@@ -0,0 +1,8 @@
|
||||
# version 150
|
||||
# extension GL_ARB_explicit_attrib_location : enable
|
||||
|
||||
layout(location = 0) in vec3 vert;
|
||||
|
||||
void main() {
|
||||
gl_Position = vec4(vert, 1.0);
|
||||
}
|
||||
Reference in New Issue
Block a user