What is the equivalent setting in matrix such that i can do
canvas.drawBitmap(BitmapResouce, mMatrix, p);
that can set the source rectangle to be subset of the image that is equivalent to this call
canvas.drawBitmap(BitmapResouce, sourceRectangle, destinationRectangle, null);
Because i need to use the matrix but at the same time i want the source image to be clipped?

