Searched defs:canvasWidth (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DGraphicsContext3DCairo.cpp87 void GraphicsContext3D::paintToCanvas(const unsigned char* imagePixels, int imageWidth, int imageHeight, int canvasWidth, int canvasHeight, PlatformContextCairo* context) argument
89 if (!imagePixels || imageWidth <= 0 || imageHeight <= 0 || canvasWidth <= 0 || canvasHeight <= 0 || !context)
95 cairo_rectangle(cr, 0, 0, canvasWidth, canvasHeight);
108 cairo_rectangle(cr, 0, 0, canvasWidth, -canvasHeight);
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DGraphicsContext3DCG.cpp257 void GraphicsContext3D::paintToCanvas(const unsigned char* imagePixels, int imageWidth, int imageHeight, int canvasWidth, int canvasHeight, CGContextRef context) argument
259 if (!imagePixels || imageWidth <= 0 || imageHeight <= 0 || canvasWidth <= 0 || canvasHeight <= 0 || !context)
268 CGRect rect = CGRectMake(0, 0, canvasWidth, canvasHeight);

Completed in 50 milliseconds