summaryrefslogtreecommitdiff
path: root/src/rgb_xyz.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-01-27 22:50:01 +0000
committerCarl Hetherington <cth@carlh.net>2014-01-27 22:50:01 +0000
commit04b4d9f08ee30eb4dc4e62cddc4b332c69d18ac0 (patch)
treeacdc02ea849b4b6553e073f3cce2574ee59c2403 /src/rgb_xyz.cc
parent95de247288c5abfd35347d8ad5fe4d5317eb2252 (diff)
Remove LUT parent class.
Diffstat (limited to 'src/rgb_xyz.cc')
-rw-r--r--src/rgb_xyz.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rgb_xyz.cc b/src/rgb_xyz.cc
index 9cf12e4c..92997441 100644
--- a/src/rgb_xyz.cc
+++ b/src/rgb_xyz.cc
@@ -40,8 +40,8 @@ using namespace dcp;
shared_ptr<ARGBFrame>
dcp::xyz_to_rgb (
boost::shared_ptr<const XYZFrame> xyz_frame,
- boost::shared_ptr<const LUT> lut_in,
- boost::shared_ptr<const LUT> lut_out
+ boost::shared_ptr<const GammaLUT> lut_in,
+ boost::shared_ptr<const GammaLUT> lut_out
)
{
int const max_colour = pow (2, lut_out->bit_depth()) - 1;
@@ -108,8 +108,8 @@ dcp::xyz_to_rgb (
shared_ptr<dcp::XYZFrame>
dcp::rgb_to_xyz (
boost::shared_ptr<const Image> rgb,
- boost::shared_ptr<const LUT> lut_in,
- boost::shared_ptr<const LUT> lut_out,
+ boost::shared_ptr<const GammaLUT> lut_in,
+ boost::shared_ptr<const GammaLUT> lut_out,
double const colour_matrix[3][3]
)
{