This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
rpgedit/src/view/default.fs

9 lines
162 B
Forth
Raw Normal View History

2017-09-12 09:20:19 +02:00
varying highp vec2 vTextureCoord;
uniform sampler2D uSampler;
void main(void) {
2017-09-12 09:20:19 +02:00
gl_FragColor = texture2D(uSampler, vec2(vTextureCoord.x, vTextureCoord.y));
}