1
0
Fork 0
forked from suyu/suyu

correct the implementation of RGBA16UI

This commit is contained in:
greggameplayer 2019-11-12 20:09:54 +01:00 committed by Unknown
parent 885d88825e
commit c6bc13d0aa

View file

@ -249,6 +249,8 @@ PixelFormat PixelFormatFromTextureFormat(Tegra::Texture::TextureFormat format,
return PixelFormat::RGBA16U; return PixelFormat::RGBA16U;
case Tegra::Texture::ComponentType::FLOAT: case Tegra::Texture::ComponentType::FLOAT:
return PixelFormat::RGBA16F; return PixelFormat::RGBA16F;
case Tegra::Texture::ComponentType::UINT:
return PixelFormat::RGBA16UI;
default: default:
break; break;
} }