mirror of
				https://github.com/yuzu-emu/yuzu.git
				synced 2025-11-04 08:43:43 +00:00 
			
		
		
		
	Merge pull request #382 from Subv/a2rgb10_rt
GPU: Implement the RGB10_A2 RenderTarget format
This commit is contained in:
		
						commit
						55d0b0609d
					
				@ -106,6 +106,8 @@ struct SurfaceParams {
 | 
			
		||||
        switch (format) {
 | 
			
		||||
        case Tegra::RenderTargetFormat::RGBA8_UNORM:
 | 
			
		||||
            return PixelFormat::ABGR8;
 | 
			
		||||
        case Tegra::RenderTargetFormat::RGB10_A2_UNORM:
 | 
			
		||||
            return PixelFormat::A2B10G10R10;
 | 
			
		||||
        default:
 | 
			
		||||
            NGLOG_CRITICAL(HW_GPU, "Unimplemented format={}", static_cast<u32>(format));
 | 
			
		||||
            UNREACHABLE();
 | 
			
		||||
 | 
			
		||||
@ -25,6 +25,8 @@ static Tegra::Texture::TextureFormat ConvertToTextureFormat(
 | 
			
		||||
    switch (render_target_format) {
 | 
			
		||||
    case Tegra::RenderTargetFormat::RGBA8_UNORM:
 | 
			
		||||
        return Tegra::Texture::TextureFormat::A8R8G8B8;
 | 
			
		||||
    case Tegra::RenderTargetFormat::RGB10_A2_UNORM:
 | 
			
		||||
        return Tegra::Texture::TextureFormat::A2B10G10R10;
 | 
			
		||||
    default:
 | 
			
		||||
        UNIMPLEMENTED_MSG("Unimplemented RT format");
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user