mirror of
https://github.com/Linloir/SceneEditor.git
synced 2025-12-17 15:38:11 +08:00
13 lines
261 B
GLSL
13 lines
261 B
GLSL
#version 430 core
|
|
out vec4 FragColor;
|
|
|
|
in vec2 TexCoords;
|
|
|
|
uniform sampler2D texture_diffuse1;
|
|
uniform sampler2D texture_specular1;
|
|
|
|
void main()
|
|
{
|
|
FragColor = texture(texture_specular1, TexCoords);
|
|
FragColor = texture(texture_diffuse1, TexCoords);
|
|
} |