mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	renderer/vulkan: don't add two alphas together in blend func
This commit is contained in:
		
							parent
							
								
									bfc42e0f62
								
							
						
					
					
						commit
						47bf87ade2
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -2204,7 +2204,7 @@ struct wlr_vk_pipeline *setup_get_or_create_pipeline(
 | 
			
		|||
		.dstColorBlendFactor = VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA,
 | 
			
		||||
		.colorBlendOp = VK_BLEND_OP_ADD,
 | 
			
		||||
		.srcAlphaBlendFactor = VK_BLEND_FACTOR_ONE,
 | 
			
		||||
		.dstAlphaBlendFactor = VK_BLEND_FACTOR_ONE,
 | 
			
		||||
		.dstAlphaBlendFactor = VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA,
 | 
			
		||||
		.alphaBlendOp = VK_BLEND_OP_ADD,
 | 
			
		||||
		.colorWriteMask =
 | 
			
		||||
			VK_COLOR_COMPONENT_R_BIT |
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue