mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-30 05:05:19 -05:00
9 lines
100 B
GLSL
9 lines
100 B
GLSL
#version 330 core
|
|
|
|
in vec4 fragColor;
|
|
out vec4 outColor;
|
|
|
|
void main() {
|
|
outColor = fragColor;
|
|
}
|