Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Match ACES 2.0 shader resource suffix format to regular luts. #2077

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/OpenColorIO/ops/fixedfunction/FixedFunctionOpGPU.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ std::string _Add_Reach_table(
std::ostringstream resName;
resName << shaderCreator->getResourcePrefix()
<< std::string("_")
<< std::string("reach_m_table")
<< std::string("reach_m_table_")
<< resourceIndex;

// Note: Remove potentially problematic double underscores from GLSL resource names.
Expand Down Expand Up @@ -684,7 +684,7 @@ std::string _Add_Cusp_table(
std::ostringstream resName;
resName << shaderCreator->getResourcePrefix()
<< std::string("_")
<< std::string("gamut_cusp_table")
<< std::string("gamut_cusp_table_")
<< resourceIndex;

// Note: Remove potentially problematic double underscores from GLSL resource names.
Expand Down Expand Up @@ -803,7 +803,7 @@ std::string _Add_Gamma_table(
std::ostringstream resName;
resName << shaderCreator->getResourcePrefix()
<< std::string("_")
<< std::string("upper_hull_gamma_table")
<< std::string("upper_hull_gamma_table_")
<< resourceIndex;

// Note: Remove potentially problematic double underscores from GLSL resource names.
Expand Down
Loading