From 5c711929b4f1670ef756a7e54ea59d207c7253a6 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 21 Oct 2023 22:40:17 +0200 Subject: Rename lut -> double_lut. --- src/transfer_function.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/transfer_function.h') diff --git a/src/transfer_function.h b/src/transfer_function.h index 9dc517e3..033c3045 100644 --- a/src/transfer_function.h +++ b/src/transfer_function.h @@ -61,12 +61,12 @@ public: virtual ~TransferFunction () {} /** @return A look-up table (of size 2^bit_depth) */ - std::vector const& lut (double from, double to, int bit_depth, bool inverse) const; + std::vector const& double_lut(double from, double to, int bit_depth, bool inverse) const; virtual bool about_equal (std::shared_ptr other, double epsilon) const = 0; protected: - virtual std::vector make_lut (double from, double to, int bit_depth, bool inverse) const = 0; + virtual std::vector make_double_lut(double from, double to, int bit_depth, bool inverse) const = 0; private: struct LUTDescriptor { -- cgit v1.2.3