mirror of
				https://github.com/ryujinx-mirror/ryujinx.git
				synced 2025-11-04 08:18:58 -06:00 
			
		
		
		
	Change packed aliasing formats to UInt (#6358)
This commit is contained in:
		@@ -674,9 +674,9 @@ namespace Ryujinx.Graphics.Gpu.Image
 | 
			
		||||
                {
 | 
			
		||||
                    1 => new FormatInfo(Format.R8Unorm, 1, 1, 1, 1),
 | 
			
		||||
                    2 => new FormatInfo(Format.R16Unorm, 1, 1, 2, 1),
 | 
			
		||||
                    4 => new FormatInfo(Format.R32Float, 1, 1, 4, 1),
 | 
			
		||||
                    8 => new FormatInfo(Format.R32G32Float, 1, 1, 8, 2),
 | 
			
		||||
                    16 => new FormatInfo(Format.R32G32B32A32Float, 1, 1, 16, 4),
 | 
			
		||||
                    4 => new FormatInfo(Format.R32Uint, 1, 1, 4, 1),
 | 
			
		||||
                    8 => new FormatInfo(Format.R32G32Uint, 1, 1, 8, 2),
 | 
			
		||||
                    16 => new FormatInfo(Format.R32G32B32A32Uint, 1, 1, 16, 4),
 | 
			
		||||
                    _ => format,
 | 
			
		||||
                };
 | 
			
		||||
            }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user