| 24 | #include <QColor> |
| 25 | |
| 26 | NormalmapGenerator::NormalmapGenerator(IntensityMap::Mode mode, bool useRed, bool useGreen, bool useBlue, bool useAlpha) |
| 27 | : tileable(false), useRed(useRed), useGreen(useGreen), useBlue(useBlue), useAlpha(useAlpha), mode(mode) |
| 28 | {} |
| 29 | |
| 30 | const IntensityMap& NormalmapGenerator::getIntensityMap() const { |
| 31 | return this->intensity; |
nothing calls this directly
no outgoing calls
no test coverage detected