mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-03 02:56:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			139 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			139 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
#version 120
 | 
						|
 | 
						|
varying vec2 uv;
 | 
						|
 | 
						|
void main(void)
 | 
						|
{
 | 
						|
    gl_Position = gl_Vertex;
 | 
						|
    uv = (gl_Vertex.xy * vec2(1.0,-1.0) + vec2(1.0)) / 2;
 | 
						|
}
 |