| 4448 | /////////////////////////////////////////////////////////////////////////// |
| 4449 | |
| 4450 | void Config::getDefaultLumaCoefs(double * c3) const |
| 4451 | { |
| 4452 | if (!c3) |
| 4453 | { |
| 4454 | throw Exception("getDefaultLumaCoefs: c3 must not be null."); |
| 4455 | } |
| 4456 | memcpy(c3, &getImpl()->m_defaultLumaCoefs[0], 3*sizeof(double)); |
| 4457 | } |
| 4458 | |
| 4459 | void Config::setDefaultLumaCoefs(const double * c3) |
| 4460 | { |