mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-11-04 12:20:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			157 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			157 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
#version 330 core
 | 
						|
layout (location = 0) in vec2 aVertex;
 | 
						|
 | 
						|
uniform mat4 uMVPMatrix;
 | 
						|
 | 
						|
void main()
 | 
						|
{
 | 
						|
   gl_Position = uMVPMatrix * vec4(aVertex, 0.0f, 1.0f);
 | 
						|
}
 |