Moving source files to a src folder
This commit is contained in:
11
BarinkEngine/src/Graphics/shaders/RenderSurfaceFrag.shader
Normal file
11
BarinkEngine/src/Graphics/shaders/RenderSurfaceFrag.shader
Normal file
@ -0,0 +1,11 @@
|
||||
#version 440 core
|
||||
layout (location = 0) in vec2 aPos;
|
||||
layout (location = 1) in vec2 aTexCoords;
|
||||
|
||||
|
||||
out vec2 aTexCoords;
|
||||
|
||||
void main(){
|
||||
gl_Position = vec4(aPos.xy , 0.0 ,1.0);
|
||||
aTexCoords = aTexCoords;
|
||||
}
|
Reference in New Issue
Block a user