mirror of
https://github.com/GayPizzaSpecifications/padlab.git
synced 2025-08-16 11:21:32 +00:00
Implement functional OpenGL 3.3 renderer
w/ crude batching
This commit is contained in:
10
src/frag.glsl
Normal file
10
src/frag.glsl
Normal file
@ -0,0 +1,10 @@
|
||||
#version 330 core
|
||||
|
||||
out vec4 outColour;
|
||||
|
||||
uniform vec4 uColour;
|
||||
|
||||
void main()
|
||||
{
|
||||
outColour = uColour;
|
||||
}
|
Reference in New Issue
Block a user