| 2986 | } |
| 2987 | |
| 2988 | void |
| 2989 | Settings::getGeneratorColor(float *r, |
| 2990 | float *g, |
| 2991 | float *b) const |
| 2992 | { |
| 2993 | *r = _defaultGeneratorColor->getValue(0); |
| 2994 | *g = _defaultGeneratorColor->getValue(1); |
| 2995 | *b = _defaultGeneratorColor->getValue(2); |
| 2996 | } |
| 2997 | |
| 2998 | void |
| 2999 | Settings::getReaderColor(float *r, |
no test coverage detected