| 19 | #include <Aurora/Foundation/Utilities.h> |
| 20 | |
| 21 | int gcd(int a, int b) |
| 22 | { |
| 23 | return b ? gcd(b, a % b) : a; |
| 24 | } |
| 25 | |
| 26 | std::vector<OIIO::ImageBuf> getSixFacesFromSourceImage(pxr::HioImage::StorageSpec& imageData) |
| 27 | { |
no outgoing calls
no test coverage detected