| 30 | namespace |
| 31 | { |
| 32 | OCIO::FileTransformRcPtr GetFileTransform(const std::string & filename) |
| 33 | { |
| 34 | const std::string filepath(ocioTestFilesDir + std::string("/") + filename); |
| 35 | |
| 36 | OCIO::FileTransformRcPtr file = OCIO::FileTransform::Create(); |
| 37 | file->setSrc(filepath.c_str()); |
| 38 | |
| 39 | return file; |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | // The LUTs below are identities unless otherwise noted. |
no test coverage detected