Esempio n. 1
0
 OfxRectI ImageBase::getBounds() const
 {
   OfxRectI bounds;
   getIntPropertyN(kOfxImagePropBounds, &bounds.x1, 4);
   return bounds;
 }
Esempio n. 2
0
 OfxRectI ImageBase::getROD() const
 {
   OfxRectI rod;
   getIntPropertyN(kOfxImagePropRegionOfDefinition, &rod.x1, 4);
   return rod;
 }
Esempio n. 3
0
 OfxRectI Image::getROD() const
 {
   OfxRectI rod;
   getIntPropertyN(kOfxImagePropBounds, &rod.x1, 4);
   return rod;
 }