shaders/first.frag
author František Kučera <franta-hg@frantovo.cz>
Sun, 26 Nov 2023 16:27:50 +0100
branchv_0
changeset 0 bb715a82a8f1
child 2 3faef2f5128e
permissions -rw-r--r--
project skeleton

#version 330 core

uniform sampler2D jazz;
in vec2 textureCoordinate;
out vec3 outColor; 

void main(){
	outColor = texture(jazz, textureCoordinate).xyz;
	// outColor *= vec3(0.8, 1., 0.2);
}