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