 5fa8def9df
			
		
	
	5fa8def9df
	
	
	
		
			
			According to docs and Intel legacy drivers, GLSL version 130 is for GL 3.0 not GL 2.0/2.1 Validated files with reference compiler from https://www.khronos.org/opengles/sdk/tools/Reference-Compiler/
		
			
				
	
	
		
			10 lines
		
	
	
		
			120 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			120 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
| #version 110
 | |
| 
 | |
| varying vec2 vUv;
 | |
| 
 | |
| uniform sampler2DRect map;
 | |
| 
 | |
| void main() {
 | |
|   gl_FragColor = texture2DRect (map, vUv);
 | |
| }
 |