forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
14
Kha/Sources/Shaders/painter-text.vert.glsl
Normal file
14
Kha/Sources/Shaders/painter-text.vert.glsl
Normal file
@ -0,0 +1,14 @@
|
||||
#version 450
|
||||
|
||||
in vec3 vertexPosition;
|
||||
in vec2 vertexUV;
|
||||
in vec4 vertexColor;
|
||||
uniform mat4 projectionMatrix;
|
||||
out vec2 texCoord;
|
||||
out vec4 fragmentColor;
|
||||
|
||||
void main() {
|
||||
gl_Position = projectionMatrix * vec4(vertexPosition, 1.0);
|
||||
texCoord = vertexUV;
|
||||
fragmentColor = vertexColor;
|
||||
}
|
Reference in New Issue
Block a user