MCPcopy Create free account
hub / github.com/AcademySoftwareFoundation/OpenColorIO / parse_end_args

Function parse_end_args

src/apps/ociomakeclf/main.cpp:22–32  ·  view source on GitHub ↗

Fill 'args' array with OpenColorIO arguments.

Source from the content-addressed store, hash-verified

20
21// Fill 'args' array with OpenColorIO arguments.
22static 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
34void CreateOutputLutFile(const std::string & outLutFilepath, OCIO::ConstGroupTransformRcPtr transform)
35{

Callers

nothing calls this directly

Calls 1

push_backMethod · 0.45

Tested by

no test coverage detected