HomeSort by relevance Sort by last modified time
    Searched refs:canvasHeight (Results 1 - 8 of 8) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContext3DCairo.cpp 87 void GraphicsContext3D::paintToCanvas(const unsigned char* imagePixels, int imageWidth, int imageHeight, int canvasWidth, int canvasHeight, PlatformContextCairo* context)
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/
GraphicsContext3DCG.cpp 257 void GraphicsContext3D::paintToCanvas(const unsigned char* imagePixels, int imageWidth, int imageHeight, int canvasWidth, int canvasHeight, CGContextRef context)
259 if (!imagePixels || imageWidth <= 0 || imageHeight <= 0 || canvasWidth <= 0 || canvasHeight <= 0 || !context)
268 CGRect rect = CGRectMake(0, 0, canvasWidth, canvasHeight);
  /external/v8/benchmarks/
raytrace.js 609 canvasHeight: 100,
620 this.options.canvasHeight /= this.options.pixelHeight;
651 var canvasHeight = this.options.canvasHeight;
654 for(var y=0; y < canvasHeight; y++){
656 var yp = y * 1.0 / canvasHeight * 2 - 1;
892 canvasHeight: imageHeight,
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-raytrace.js 635 canvasHeight: 100,
646 this.options.canvasHeight /= this.options.pixelHeight;
677 var canvasHeight = this.options.canvasHeight;
680 for(var y=0; y < canvasHeight; y++){
682 var yp = y * 1.0 / canvasHeight * 2 - 1;
918 canvasHeight: imageHeight,
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
v8-raytrace.js 635 canvasHeight: 100,
646 this.options.canvasHeight /= this.options.pixelHeight;
677 var canvasHeight = this.options.canvasHeight;
680 for(var y=0; y < canvasHeight; y++){
682 var yp = y * 1.0 / canvasHeight * 2 - 1;
918 canvasHeight: imageHeight,
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
v8-raytrace.js 604 canvasHeight: 100,
615 this.options.canvasHeight /= this.options.pixelHeight;
646 var canvasHeight = this.options.canvasHeight;
649 for(var y=0; y < canvasHeight; y++){
651 var yp = y * 1.0 / canvasHeight * 2 - 1;
887 canvasHeight: imageHeight,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutCanvas.java 659 int canvasHeight = canvasSize.height;
677 int vDelta = canvasHeight - sceneHeight;
686 double vScale = (canvasHeight - 2 * vMargin) / (double) sceneHeight;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext3D.h 767 int canvasWidth, int canvasHeight, CGContextRef context);
770 int canvasWidth, int canvasHeight, PlatformContextCairo* context);
    [all...]

Completed in 203 milliseconds