mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	texture_cache: Fix layered null surfaces
Null texture cubes were not considered arrays, causing issues on Vulkan and OpenGL when creating views.
This commit is contained in:
		@@ -991,7 +991,9 @@ private:
 | 
			
		||||
        params.target = target;
 | 
			
		||||
        params.is_tiled = false;
 | 
			
		||||
        params.srgb_conversion = false;
 | 
			
		||||
        params.is_layered = false;
 | 
			
		||||
        params.is_layered =
 | 
			
		||||
            target == SurfaceTarget::Texture1DArray || target == SurfaceTarget::Texture2DArray ||
 | 
			
		||||
            target == SurfaceTarget::TextureCubemap || target == SurfaceTarget::TextureCubeArray;
 | 
			
		||||
        params.block_width = 0;
 | 
			
		||||
        params.block_height = 0;
 | 
			
		||||
        params.block_depth = 0;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user