This repository has been archived on 2025-02-17. You can view files and clone it, but cannot push or open issues or pull requests.

12 lines
218 B
GLSL

#version 450
#extension GL_ARB_separate_shader_objects : enable
layout(early_fragment_tests) in;
layout(location = 0) in vec4 frag_color;
layout(location = 0) out vec4 color;
void main() {
color = frag_color;
}