MCPcopy Create free account
hub / github.com/Autodesk/Aurora / gcd

Function gcd

Libraries/ImageProcessingResolver/ConvertEnvMapLayout.cpp:21–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 2

convertToLatLongLayoutFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected