mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-11-02 20:51:23 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			No EOL
		
	
	
		
			260 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			No EOL
		
	
	
		
			260 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
#version 110
 | 
						|
 | 
						|
uniform mat4 ProjMtx;
 | 
						|
 | 
						|
attribute vec2 Position;
 | 
						|
attribute vec2 UV;
 | 
						|
attribute vec4 Color;
 | 
						|
 | 
						|
varying vec2 Frag_UV;
 | 
						|
varying vec4 Frag_Color;
 | 
						|
 | 
						|
void main()
 | 
						|
{
 | 
						|
	Frag_UV = UV;
 | 
						|
	Frag_Color = Color;
 | 
						|
    gl_Position = ProjMtx * vec4(Position.xy, 0.0, 1.0);
 | 
						|
} |