mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	Merge pull request #1077 from bunnei/rgba16u
gl_rasterizer_cache: Add RGBA16U to PixelFormatFromTextureFormat.
This commit is contained in:
		
						commit
						40f83fee6a
					
				@ -372,7 +372,15 @@ struct SurfaceParams {
 | 
				
			|||||||
                         static_cast<u32>(component_type));
 | 
					                         static_cast<u32>(component_type));
 | 
				
			||||||
            UNREACHABLE();
 | 
					            UNREACHABLE();
 | 
				
			||||||
        case Tegra::Texture::TextureFormat::R16_G16_B16_A16:
 | 
					        case Tegra::Texture::TextureFormat::R16_G16_B16_A16:
 | 
				
			||||||
            return PixelFormat::RGBA16F;
 | 
					            switch (component_type) {
 | 
				
			||||||
 | 
					            case Tegra::Texture::ComponentType::UNORM:
 | 
				
			||||||
 | 
					                return PixelFormat::RGBA16U;
 | 
				
			||||||
 | 
					            case Tegra::Texture::ComponentType::FLOAT:
 | 
				
			||||||
 | 
					                return PixelFormat::RGBA16F;
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					            LOG_CRITICAL(HW_GPU, "Unimplemented component_type={}",
 | 
				
			||||||
 | 
					                         static_cast<u32>(component_type));
 | 
				
			||||||
 | 
					            UNREACHABLE();
 | 
				
			||||||
        case Tegra::Texture::TextureFormat::BF10GF11RF11:
 | 
					        case Tegra::Texture::TextureFormat::BF10GF11RF11:
 | 
				
			||||||
            switch (component_type) {
 | 
					            switch (component_type) {
 | 
				
			||||||
            case Tegra::Texture::ComponentType::FLOAT:
 | 
					            case Tegra::Texture::ComponentType::FLOAT:
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user