Fill 'args' array with OpenColorIO arguments.
| 20 | |
| 21 | // Fill 'args' array with OpenColorIO arguments. |
| 22 | static int parse_end_args(int argc, const char * argv[]) |
| 23 | { |
| 24 | while ( argc > 0) |
| 25 | { |
| 26 | args.push_back(argv[0]); |
| 27 | argc--; |
| 28 | argv++; |
| 29 | } |
| 30 | |
| 31 | return 0; |
| 32 | } |
| 33 | |
| 34 | void CreateOutputLutFile(const std::string & outLutFilepath, OCIO::ConstGroupTransformRcPtr transform) |
| 35 | { |