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

This reverts commit 05d8bc5311.
This commit is contained in:
Geoffrey McRae
2026-07-16 09:58:44 +10:00
parent 05d8bc5311
commit e502af7d9d
2 changed files with 3 additions and 13 deletions

View File

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