Archived
1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
graph/shaders/sobel.frag

7 lines
102 B
GLSL
Executable file

#version 450 core
layout(location = 0) out vec4 outColor;
void main() {
outColor = vec4(1.0);
}