mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			164 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			164 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
#version 120
 | 
						|
 | 
						|
varying vec3 color;
 | 
						|
varying vec2 texcoord;
 | 
						|
 | 
						|
void main() {
 | 
						|
	color    = gl_Color.rgb;
 | 
						|
	texcoord = gl_MultiTexCoord0.st;
 | 
						|
	
 | 
						|
	gl_Position = ftransform();
 | 
						|
} |