[idd/client] correct HDR luminance when PQ conversion is in use

This commit is contained in:
Geoffrey McRae
2026-07-16 09:28:01 +10:00
committed by Geoffrey McRae
parent 1b3305e1dc
commit 05d8bc5311
2 changed files with 13 additions and 3 deletions

View File

@@ -18,8 +18,8 @@ class CHDR16to10Effect : public CComputeEffect
private:
struct Consts
{
float ReferenceWhiteNits; // scRGB reference white in nits (typically 80)
} m_consts = { 80.0f };
float ReferenceWhiteNits; // scRGB reference white in nits (BT.2408 recommends 203)
} m_consts = { 203.0f };
ComPtr<ID3D12Resource> m_constBuffer;
public: