mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-30 15:30:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			122 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			122 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
| #version 330 core
 | |
| smooth in vec4 color;
 | |
| 
 | |
| layout (location = 0) out vec4 fragColor;
 | |
| 
 | |
| void main()
 | |
| {
 | |
|    fragColor = color;
 | |
| }
 | 
