Add D16 depth format and ZF32 TIC format

Used by One Piece Unlimited World Red
This commit is contained in:
Billy Laws 2022-01-22 15:01:42 +00:00 committed by PixelyIon
parent be007c4ccc
commit 3be30e68c3
2 changed files with 4 additions and 0 deletions

View File

@ -247,6 +247,8 @@ namespace skyline::gpu::interconnect {
depthRenderTarget.guest.format = [&]() -> texture::Format { depthRenderTarget.guest.format = [&]() -> texture::Format {
using MaxwellDepthRtFormat = maxwell3d::DepthRtFormat; using MaxwellDepthRtFormat = maxwell3d::DepthRtFormat;
switch (format) { switch (format) {
case MaxwellDepthRtFormat::D16Unorm:
return format::D16Unorm;
case MaxwellDepthRtFormat::D32Float: case MaxwellDepthRtFormat::D32Float:
return format::D32Float; return format::D32Float;
case MaxwellDepthRtFormat::S8D24Unorm: case MaxwellDepthRtFormat::S8D24Unorm:
@ -1691,6 +1693,7 @@ namespace skyline::gpu::interconnect {
TIC_FORMAT_CASE_ST(Dxn1, Bc4111R, Unorm, OneFloat, OneFloat, OneFloat, R); TIC_FORMAT_CASE_ST(Dxn1, Bc4111R, Unorm, OneFloat, OneFloat, OneFloat, R);
TIC_FORMAT_CASE_ST(Dxn1, Bc4RRR1, Unorm, R, R, R, OneFloat); TIC_FORMAT_CASE_ST(Dxn1, Bc4RRR1, Unorm, R, R, R, OneFloat);
TIC_FORMAT_CASE_ST(BC7U, Bc7, Unorm, R, G, B, A); TIC_FORMAT_CASE_ST(BC7U, Bc7, Unorm, R, G, B, A);
TIC_FORMAT_CASE_ST(ZF32, D32, Float, R, R, R, OneFloat);
default: default:
throw exception("Cannot translate TIC format: 0x{:X}", static_cast<u32>(format.Raw())); throw exception("Cannot translate TIC format: 0x{:X}", static_cast<u32>(format.Raw()));

View File

@ -144,6 +144,7 @@ namespace skyline::gpu::format {
); );
// Depth/Stencil Formats // Depth/Stencil Formats
FORMAT(D16Unorm, 16, eD16Unorm, vka::eDepth);
FORMAT(D32Float, 32, eD32Sfloat, vka::eDepth); FORMAT(D32Float, 32, eD32Sfloat, vka::eDepth);
FORMAT(S8D24Unorm, 32, eD24UnormS8Uint, .vkAspect = { FORMAT(S8D24Unorm, 32, eD24UnormS8Uint, .vkAspect = {
vka::eStencil | vka::eDepth vka::eStencil | vka::eDepth