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