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