cave-story-solaris/src/Backends/WiiU/shader sources/texture.frag
Clownacy 8377f011cf Add in-progress hardware Wii U renderer
*Very* incomplete. Right now, it can render textures and perform
colour-fills to the screen.
2020-04-21 00:59:12 +01:00

8 lines
No EOL
172 B
GLSL

#version 150 core
layout(location = 0) uniform sampler2D tex;
in vec2 texture_coordinates;
out vec4 fragment;
void main()
{
fragment = texture(tex, texture_coordinates);
}