Reshade dependency update

This commit is contained in:
2025-12-31 14:27:34 +01:00
parent f2e1c64880
commit 6479bef5e0
8 changed files with 248 additions and 119 deletions

View File

@@ -186,10 +186,18 @@ namespace reshade { namespace api
{
unknown = 0,
srgb_nonlinear,
extended_srgb_linear,
hdr10_st2084,
// BT.709/sRGB primaries
srgb,
// BT.709/sRGB primaries + linear
scrgb,
// BT.2020 primaries + PQ transfer function
hdr10_pq,
// BT.2020 primaries + HLG transfer function
hdr10_hlg,
srgb_nonlinear = srgb,
extended_srgb_linear = scrgb,
hdr10_st2084 = hdr10_pq,
};
/// <summary>
@@ -306,7 +314,7 @@ namespace reshade { namespace api
case format::bc3_typeless:
case format::bc3_unorm:
case format::bc3_unorm_srgb:
return format::bc2_typeless;
return format::bc3_typeless;
case format::bc4_typeless:
case format::bc4_unorm:
case format::bc4_snorm:
@@ -480,6 +488,8 @@ namespace reshade { namespace api
case format::b8g8r8x8_unorm:
case format::b8g8r8x8_unorm_srgb:
return 8;
case format::r9g9b9e5:
return 9;
case format::r10g10b10a2_typeless:
case format::r10g10b10a2_unorm:
case format::r10g10b10a2_xr_bias: