diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-10-21 22:40:17 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-10-22 00:05:28 +0200 |
| commit | 5c711929b4f1670ef756a7e54ea59d207c7253a6 (patch) | |
| tree | 75f07653c5958e9753180ead45bf77f785826a45 /src/transfer_function.cc | |
| parent | 6e322c48a00cd0a115a654777b7bc873138a2866 (diff) | |
Rename lut -> double_lut.
Diffstat (limited to 'src/transfer_function.cc')
| -rw-r--r-- | src/transfer_function.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transfer_function.cc b/src/transfer_function.cc index 7b17fd36..be507af1 100644 --- a/src/transfer_function.cc +++ b/src/transfer_function.cc @@ -50,7 +50,7 @@ using namespace dcp; vector<double> const& -TransferFunction::lut (double from, double to, int bit_depth, bool inverse) const +TransferFunction::double_lut(double from, double to, int bit_depth, bool inverse) const { boost::mutex::scoped_lock lm (_mutex); @@ -61,7 +61,7 @@ TransferFunction::lut (double from, double to, int bit_depth, bool inverse) cons return i->second; } - _luts[descriptor] = make_lut(from, to, bit_depth, inverse); + _luts[descriptor] = make_double_lut(from, to, bit_depth, inverse); return _luts[descriptor]; } |
