yane 1.1.11

An N.E.S. emulator and emulation library.
Documentation
1
2
3
4
5
6
7
8
9
10
#version 330 core

in vec2 UV;
out vec3 color;

uniform sampler2D renderedTexture;

void main() {
    color = texture(renderedTexture, UV).xyz;
}