summaryrefslogtreecommitdiff
path: root/src/rgb_xyz.h
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.h
parent95de247288c5abfd35347d8ad5fe4d5317eb2252 (diff)
Remove LUT parent class.
Diffstat (limited to 'src/rgb_xyz.h')
-rw-r--r--src/rgb_xyz.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rgb_xyz.h b/src/rgb_xyz.h
index 6b0f1842..28e09230 100644
--- a/src/rgb_xyz.h
+++ b/src/rgb_xyz.h
@@ -23,15 +23,15 @@ namespace dcp {
class ARGBFrame;
class XYZFrame;
-class LUT;
+class GammaLUT;
class Image;
extern boost::shared_ptr<ARGBFrame> xyz_to_rgb (
- boost::shared_ptr<const XYZFrame>, boost::shared_ptr<const LUT>, boost::shared_ptr<const LUT>
+ boost::shared_ptr<const XYZFrame>, boost::shared_ptr<const GammaLUT>, boost::shared_ptr<const GammaLUT>
);
extern boost::shared_ptr<XYZFrame> rgb_to_xyz (
- boost::shared_ptr<const Image>, boost::shared_ptr<const LUT>, boost::shared_ptr<const LUT>, double const colour_matrix[3][3]
+ boost::shared_ptr<const Image>, boost::shared_ptr<const GammaLUT>, boost::shared_ptr<const GammaLUT>, double const colour_matrix[3][3]
);
}