12 lines
		
	
	
	
		
			172 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			172 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
#version 450 core
 | 
						|
 | 
						|
in vec2 vso_TexCoord;
 | 
						|
 | 
						|
uniform sampler2D u_Texture;
 | 
						|
 | 
						|
out vec4 fso_FragmentColor;
 | 
						|
 | 
						|
void main()
 | 
						|
{
 | 
						|
	fso_FragmentColor = texture(u_Texture, vso_TexCoord);
 | 
						|
}
 |