IFACEMETHODIMP CanvasCommandList::GetBoundsWithTransform(
     ICanvasResourceCreator* resourceCreator,
     Numerics::Matrix3x2 transform,
     Rect* bounds)
 {
     return GetImageBoundsImpl(this, resourceCreator, &transform, bounds);
 }
Exemple #2
0
 IFACEMETHODIMP CanvasCommandList::GetBoundsWithTransform(
     ICanvasDrawingSession* drawingSession,
     Numerics::Matrix3x2 transform,
     Rect* bounds)
 {
     return GetImageBoundsImpl(this, drawingSession, &transform, bounds);
 }
 IFACEMETHODIMP CanvasCommandList::GetBounds(
     ICanvasResourceCreator* resourceCreator,
     Rect* bounds)
 {
     return GetImageBoundsImpl(this, resourceCreator, nullptr, bounds);
 }
Exemple #4
0
 IFACEMETHODIMP CanvasCommandList::GetBounds(
     ICanvasDrawingSession* drawingSession,
     Rect* bounds)
 {
     return GetImageBoundsImpl(this, drawingSession, nullptr, bounds);
 }