28 lines
		
	
	
		
			153 B
		
	
	
	
		
			GLSL
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			153 B
		
	
	
	
		
			GLSL
		
	
	
		
			Executable File
		
	
	
	
	
float4 a;
 | 
						|
float b;
 | 
						|
 | 
						|
void f1()
 | 
						|
{
 | 
						|
    a * b;
 | 
						|
}
 | 
						|
 | 
						|
float3 c;
 | 
						|
 | 
						|
void f2()
 | 
						|
{
 | 
						|
    a.x + b + c.x;
 | 
						|
}
 | 
						|
 | 
						|
void f3()
 | 
						|
{
 | 
						|
    c;
 | 
						|
}
 | 
						|
 | 
						|
int d;
 | 
						|
 | 
						|
void f4()
 | 
						|
{
 | 
						|
    d * a;
 | 
						|
}
 | 
						|
 | 
						|
int e; |