mirror of
https://github.com/Linloir/SceneEditor.git
synced 2025-12-16 23:18:12 +08:00
12 lines
166 B
GLSL
12 lines
166 B
GLSL
#version 430 core
|
|
out vec4 FragColor;
|
|
|
|
in vec2 TexCoord;
|
|
|
|
// texture sampler
|
|
uniform sampler2D texture1;
|
|
|
|
void main()
|
|
{
|
|
FragColor = texture(texture1, TexCoord);
|
|
} |