mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 15:26:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			431 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			431 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
| #version 120
 | |
| 
 | |
| #include "openmw_vertex.h.glsl"
 | |
| 
 | |
| varying vec4  position;
 | |
| varying float linearDepth;
 | |
| 
 | |
| #include "shadows_vertex.glsl"
 | |
| #include "depth.glsl"
 | |
| 
 | |
| void main(void)
 | |
| {
 | |
|     gl_Position = mw_modelToClip(gl_Vertex);
 | |
| 
 | |
|     position = gl_Vertex;
 | |
| 
 | |
|     vec4 viewPos = mw_modelToView(gl_Vertex);
 | |
|     linearDepth = getLinearDepth(gl_Position.z, viewPos.z);
 | |
| 
 | |
|     setupShadowCoords(viewPos, normalize((gl_NormalMatrix * gl_Normal).xyz));
 | |
| }
 |