mirror of
				https://gitlab.winehq.org/wine/vkd3d.git
				synced 2025-09-12 18:50:22 -07:00 
			
		
		
		
	Signed-off-by: Zebediah Figura <zfigura@codeweavers.com> Signed-off-by: Giovanni Mascellani <gmascellani@codeweavers.com> Signed-off-by: Matteo Bruni <mbruni@codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
		
			
				
	
	
		
			32 lines
		
	
	
		
			462 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			462 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| [pixel shader]
 | |
| 
 | |
| float2 max(float2 a, float2 b)
 | |
| {
 | |
|     return a + b;
 | |
| }
 | |
| 
 | |
| float4 main() : sv_target
 | |
| {
 | |
|     return float4(max(0.1, 0.2), max(float2(0.1, 0.2), float2(0.3, 0.4)));
 | |
| }
 | |
| 
 | |
| [test]
 | |
| draw quad
 | |
| probe all rgba (0.3, 0.3, 0.4, 0.6)
 | |
| 
 | |
| [pixel shader]
 | |
| 
 | |
| float2 max(float2 a, float3 b)
 | |
| {
 | |
|     return a + b.xy;
 | |
| }
 | |
| 
 | |
| float4 main() : sv_target
 | |
| {
 | |
|     return float4(max(0.1, 0.2), max(float2(0.1, 0.2), float2(0.3, 0.4)));
 | |
| }
 | |
| 
 | |
| [test]
 | |
| draw quad
 | |
| probe all rgba (0.3, 0.3, 0.3, 0.4)
 |