Home | History | Annotate | Download | only in paint

Lines Matching full:dirtyrect

96 ANPCanvas* PaintPlugin::getCanvas(ANPRectI* dirtyRect) {
101 !gSurfaceI.lock(env, m_surface, &bitmap, dirtyRect)) {
110 if (dirtyRect) {
112 clipR.left = dirtyRect->left;
113 clipR.top = dirtyRect->top;
114 clipR.right = dirtyRect->right;
115 clipR.bottom = dirtyRect->bottom;
122 ANPCanvas* PaintPlugin::getCanvas(ANPRectF* dirtyRect) {
125 newRect.left = (int) dirtyRect->left;
126 newRect.top = (int) dirtyRect->top;
127 newRect.right = (int) dirtyRect->right;
128 newRect.bottom = (int) dirtyRect->bottom;