mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-08-09 02:07:04 +08:00
11 lines
140 B
GLSL
11 lines
140 B
GLSL
#version 460
|
|
|
|
in vec2 tc;
|
|
|
|
out vec4 color;
|
|
|
|
layout (binding = 0) uniform sampler2D samp;
|
|
|
|
void main(void) {
|
|
color = texture(samp, tc);
|
|
} |