HomeSort by relevance Sort by last modified time
    Searched refs:canvasWidth (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 610 canvasWidth: 100,
621 this.options.canvasWidth /= this.options.pixelWidth;
652 var canvasWidth = this.options.canvasWidth;
655 for(var x=0; x < canvasWidth; x++){
657 var xp = x * 1.0 / canvasWidth * 2 - 1;
891 canvasWidth: imageWidth,
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-raytrace.js 636 canvasWidth: 100,
647 this.options.canvasWidth /= this.options.pixelWidth;
678 var canvasWidth = this.options.canvasWidth;
681 for(var x=0; x < canvasWidth; x++){
683 var xp = x * 1.0 / canvasWidth * 2 - 1;
917 canvasWidth: imageWidth,
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
v8-raytrace.js 636 canvasWidth: 100,
647 this.options.canvasWidth /= this.options.pixelWidth;
678 var canvasWidth = this.options.canvasWidth;
681 for(var x=0; x < canvasWidth; x++){
683 var xp = x * 1.0 / canvasWidth * 2 - 1;
917 canvasWidth: imageWidth,
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
v8-raytrace.js 605 canvasWidth: 100,
616 this.options.canvasWidth /= this.options.pixelWidth;
647 var canvasWidth = this.options.canvasWidth;
650 for(var x=0; x < canvasWidth; x++){
652 var xp = x * 1.0 / canvasWidth * 2 - 1;
886 canvasWidth: imageWidth,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutCanvas.java 658 int canvasWidth = canvasSize.width;
669 int hDelta = canvasWidth - sceneWidth;
685 double hScale = (canvasWidth - 2 * hMargin) / (double) sceneWidth;
    [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 2228 milliseconds