mirror of
				https://gitlab.winehq.org/wine/vkd3d.git
				synced 2025-09-12 18:50:22 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			318 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			318 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| [pixel shader]
 | |
| const float4 f1;
 | |
| const uniform float4 f2;
 | |
| 
 | |
| float4 main() : sv_target
 | |
| {
 | |
|     return f1 + f2;
 | |
| }
 | |
| 
 | |
| [test]
 | |
| uniform 0 float4 1.0 2.0 3.0 4.0
 | |
| uniform 4 float4 0.1 0.2 0.3 0.4
 | |
| draw quad
 | |
| probe all rgba (1.1, 2.2, 3.3, 4.4)
 | |
| 
 | |
| [pixel shader fail(sm<6)]
 | |
| float4 main() : sv_target
 | |
| {
 | |
|     const float f;
 | |
|     return 0;
 | |
| }
 |