| 147 | } |
| 148 | |
| 149 | ColorMap::ColorMap() |
| 150 | : lut_path(""), lut_size(0), lut_type(LUTType::None), needs_refresh(true), |
| 151 | lut_domain_min{0.0f, 0.0f, 0.0f}, lut_domain_max{1.0f, 1.0f, 1.0f}, |
| 152 | intensity(1.0), intensity_r(1.0), intensity_g(1.0), intensity_b(1.0) |
| 153 | { |
| 154 | init_effect_details(); |
| 155 | load_cube_file(); |
| 156 | } |
| 157 | |
| 158 | ColorMap::ColorMap(const std::string &path, |
| 159 | const Keyframe &i, |
nothing calls this directly
no outgoing calls
no test coverage detected