 ca0d54d51b
			
		
	
	
		ca0d54d51b
		
	
	
	
	
		
			
			Specifically, make GLSL link error messages more specific and output only information relevant to the error. Also change type printing to more closely reflect GLSL syntax. This is the default for link error messages, but must me enabled with the new option --enhanced-msgs for compilation error messages. Also with --enhanced-msgs, only emit one error message per source line.
		
			
				
	
	
		
			17 lines
		
	
	
		
			243 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			243 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
| #version 450 core
 | |
| 
 | |
| layout (location = 0) out vec4 FragColor;
 | |
| 
 | |
| layout (location = 0) in VS_OUT
 | |
| {
 | |
|     vec2 foobar;
 | |
| } fs_in;
 | |
| 
 | |
| layout (binding = 1) uniform sampler2D t0;
 | |
| 
 | |
| void main()
 | |
| {             
 | |
|     FragColor = texture(t0, fs_in.foobar);   
 | |
| }
 | |
| 
 |