| 28 | namespace |
| 29 | { |
| 30 | OCIO::FileTransformRcPtr GetFileTransform(const std::string & filename) |
| 31 | { |
| 32 | const std::string filepath(ocioTestFilesDir + std::string("/") + filename); |
| 33 | |
| 34 | OCIO::FileTransformRcPtr file = OCIO::FileTransform::Create(); |
| 35 | file->setSrc(filepath.c_str()); |
| 36 | |
| 37 | return file; |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | OCIO_ADD_GPU_TEST(Lut3DOp, red_only_using_CSP_file_legacy_shader) |
no test coverage detected