From 17f0783d452995c284f9014777a3a95831513321 Mon Sep 17 00:00:00 2001 From: "cuneyt.ozdas" Date: Fri, 2 Aug 2024 11:41:26 -0700 Subject: [PATCH] - Adding CTF tests for PQ_TO_LINEAR FixedFunction. Signed-off-by: cuneyt.ozdas --- tests/cpu/fileformats/FileFormatCTF_tests.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/cpu/fileformats/FileFormatCTF_tests.cpp b/tests/cpu/fileformats/FileFormatCTF_tests.cpp index fd7273e200..9ebdb8ab07 100644 --- a/tests/cpu/fileformats/FileFormatCTF_tests.cpp +++ b/tests/cpu/fileformats/FileFormatCTF_tests.cpp @@ -3838,6 +3838,8 @@ OCIO_ADD_TEST(FileFormatCTF, ff_load_save_ctf) ValidateFixedFunctionStyleNoParam(OCIO::FixedFunctionOpData::uvY_TO_XYZ , __LINE__); ValidateFixedFunctionStyleNoParam(OCIO::FixedFunctionOpData::XYZ_TO_LUV , __LINE__); ValidateFixedFunctionStyleNoParam(OCIO::FixedFunctionOpData::LUV_TO_XYZ , __LINE__); + ValidateFixedFunctionStyleNoParam(OCIO::FixedFunctionOpData::PQ_TO_LINEAR , __LINE__); + ValidateFixedFunctionStyleNoParam(OCIO::FixedFunctionOpData::LINEAR_TO_PQ , __LINE__); } OCIO_ADD_TEST(FileFormatCTF, load_ff_fail_version)