1
0
Fork 0
mirror of https://github.com/bjornbytes/lovr.git synced 2024-07-03 04:53:35 +00:00
lovr/etc/shaders/unlit.vert
bjorn 3bf5ec5744 Shader improvements;
Mostly renaming things and adding helper functions.
2022-07-06 22:54:56 -07:00

14 lines
291 B
GLSL

#version 460
#extension GL_EXT_multiview : require
#extension GL_GOOGLE_include_directive : require
#include "lovr.glsl"
void main() {
Color = PassColor * VertexColor;
Normal = normalize(NormalMatrix * VertexNormal);
UV = VertexUV;
Position = DefaultPosition;
PointSize = 1.f;
}