ocioutils: remove unused function

We could have kept this, but since I want to reorganize the sliders it might result in confusion in the codebase
This commit is contained in:
itsmattkc
2022-05-08 11:48:54 -07:00
parent 514295c853
commit 8b951371bb
2 changed files with 0 additions and 13 deletions
-12
View File
@@ -44,16 +44,4 @@ OCIO::BitDepth OCIOUtils::GetOCIOBitDepthFromPixelFormat(VideoParams::Format for
return OCIO::BIT_DEPTH_UNKNOWN;
}
OCIO::GradingRGBM OCIOUtils::QVec4ToRGBM(const QVector4D &vector)
{
OCIO::GradingRGBM rgbm;
rgbm.m_red = vector.x();
rgbm.m_green = vector.y();
rgbm.m_blue = vector.z();
rgbm.m_master = vector.w();
return rgbm;
}
}
-1
View File
@@ -35,7 +35,6 @@ class OCIOUtils
public:
static OCIO::BitDepth GetOCIOBitDepthFromPixelFormat(VideoParams::Format format);
static OCIO::GradingRGBM QVec4ToRGBM(const QVector4D &vector);
};
}