pleascach/assets/shaders/basic.frag
connellpaxton c9e2877530 Added shader compilation to build process
Created mechanism to construct pipelines, still need to finish debugging that.
2024-01-25 17:07:47 -05:00

11 lines
204 B
GLSL

#version 460 core
layout (location = 0) out vec4 FragColor;
layout (set = 1, binding = 0) uniform Matrices {
mat4 mpv;
float time;
};
void main() {
FragColor = vec4(abs(cos(time)), 0.5, 1.0, 1.0);
}