 65cdff9a54
			
		
	
	
		65cdff9a54
		
	
	
	
	
		
			
			When copying split types with mixtures of user variables and buitins, where the builtins are extracted, there is a parallel structures traversal. The traversal was not obtaining the derefenced types in the array case.
		
			
				
	
	
		
			13 lines
		
	
	
		
			154 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			154 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
| struct S {
 | |
|     float f;
 | |
|     float4 pos : SV_Position;
 | |
| };
 | |
| 
 | |
| float4 main(int i, S input[3]) : COLOR0
 | |
| {
 | |
|     S a[3];
 | |
|     input = a;
 | |
| 
 | |
|     return float3(1.0);
 | |
| }
 |