| 16 | using StringArray = castor::Vector< castor::MbString >; |
| 17 | |
| 18 | void printUsage() |
| 19 | { |
| 20 | std::cout << "HeightMapToNormalMap is a tool used to convert a height map to a normal map." << std::endl; |
| 21 | std::cout << "Usage:" << std::endl; |
| 22 | std::cout << "HeightMapToNormalMap -s strength FILE" << std::endl; |
| 23 | std::cout << " FILE must be an image file." << std::endl; |
| 24 | std::cout << " strength is a floating point value defining the normals strength (default is 8.0)." << std::endl; |
| 25 | } |
| 26 | |
| 27 | struct Options |
| 28 | { |