mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-10-31 07:25:22 +01:00 
			
		
		
		
	Adds configurable light exposure control and bloom effect (light bleeding) with client-side settings.
		
			
				
	
	
		
			12 lines
		
	
	
		
			183 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			183 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
| #ifdef GL_ES
 | |
| varying mediump vec2 varTexCoord;
 | |
| #else
 | |
| centroid varying vec2 varTexCoord;
 | |
| #endif
 | |
| 
 | |
| void main(void)
 | |
| {
 | |
| 	varTexCoord.st = inTexCoord0.st;
 | |
| 	gl_Position = inVertexPosition;
 | |
| }
 |