Lines Matching refs:context
50 static void drawNativeRect(GraphicsContext* context, in drawNativeRect() argument
53 SkCanvas* canvas = context->platformContext()->canvas(); in drawNativeRect()
67 static Color getPixelAt(GraphicsContext* context, int x, int y) in getPixelAt() argument
69 …const SkBitmap& bitmap = context->platformContext()->canvas()->getTopDevice()->accessBitmap(false); in getPixelAt()
75 static void clearTopLayerAlphaChannel(GraphicsContext* context) in clearTopLayerAlphaChannel() argument
77 …SkBitmap& bitmap = const_cast<SkBitmap&>(context->platformContext()->canvas()->getTopDevice()->acc… in clearTopLayerAlphaChannel()
86 static void clearTopLayerAlphaPixel(GraphicsContext* context, int x, int y) in clearTopLayerAlphaPixel() argument
88 …SkBitmap& bitmap = const_cast<SkBitmap&>(context->platformContext()->canvas()->getTopDevice()->acc… in clearTopLayerAlphaPixel()
108 helper.init(src->context(), in TEST()
113 EXPECT_TRUE(src->context() == helper.context()); in TEST()
121 src->context()->save(); in TEST()
122 src->context()->scale(FloatSize(2.0, 0.5)); in TEST()
125 helper.init(src->context(), in TEST()
133 EXPECT_TRUE(src->context() == helper.context()); in TEST()
137 src->context()->restore(); in TEST()
147 helper.init(src->context(), in TEST()
153 EXPECT_TRUE(src->context() != helper.context()); in TEST()
161 helper.init(src->context(), in TEST()
167 EXPECT_TRUE(src->context() != helper.context()); in TEST()
173 src->context()->save(); in TEST()
174 src->context()->scale(FloatSize(2.0, 0.5)); in TEST()
177 helper.init(src->context(), in TEST()
185 EXPECT_TRUE(src->context() != helper.context()); in TEST()
189 src->context()->restore(); in TEST()
199 helper.init(src->context(), in TEST()
205 EXPECT_TRUE(src->context() != helper.context()); in TEST()
218 helper.init(src->context(), in TEST()
224 EXPECT_TRUE(src->context() != helper.context()); in TEST()
230 src->context()->save(); in TEST()
231 src->context()->translate(0, -1); in TEST()
234 helper.init(src->context(), in TEST()
240 EXPECT_TRUE(src->context() != helper.context()); in TEST()
244 src->context()->restore(); in TEST()
249 helper.init(src->context(), in TEST()
255 EXPECT_TRUE(src->context() != helper.context()); in TEST()
261 src->context()->save(); in TEST()
262 src->context()->scale(FloatSize(2.0, 0.5)); in TEST()
265 helper.init(src->context(), in TEST()
273 EXPECT_TRUE(src->context() != helper.context()); in TEST()
277 src->context()->restore(); in TEST()
287 helper.init(src->context(), in TEST()
293 drawNativeRect(helper.context(), 3, 3, 1, 1); in TEST()
294 clearTopLayerAlphaChannel(helper.context()); in TEST()
300 EXPECT_EQ(Color(Color::transparent), getPixelAt(src->context(), 0, 0)); in TEST()
301 EXPECT_EQ(Color(Color::white), getPixelAt(src->context(), 2, 2)); in TEST()
302 EXPECT_EQ(Color(Color::black), getPixelAt(src->context(), 3, 3)); in TEST()
303 EXPECT_EQ(Color(Color::white), getPixelAt(src->context(), 4, 4)); in TEST()
315 src->context()->fillRect(fullRect, red, ColorSpaceDeviceRGB); in TEST()
316 src->context()->beginTransparencyLayer(0.5); in TEST()
318 src->context()->fillRect(rightHalf, green, ColorSpaceDeviceRGB); in TEST()
324 helper.init(src->context(), in TEST()
330 helper.context()->fillRect(inner, Color(0x7f000000), ColorSpaceDeviceRGB); in TEST()
335 clearTopLayerAlphaPixel(helper.context(), 1, 1); in TEST()
336 clearTopLayerAlphaPixel(helper.context(), 12, 12); in TEST()
341 src->context()->endTransparencyLayer(); in TEST()
345 EXPECT_EQ(red, getPixelAt(src->context(), 0, 0)); in TEST()
346 EXPECT_EQ(red, getPixelAt(src->context(), 1, 1)); in TEST()
347 EXPECT_EQ(darkRed, getPixelAt(src->context(), 2, 2)); in TEST()
353 EXPECT_EQ(darkGreenRed, getPixelAt(src->context(), 13, 13)); in TEST()
357 EXPECT_EQ(greenRed, getPixelAt(src->context(), 14, 14)); in TEST()
358 EXPECT_EQ(greenRed, getPixelAt(src->context(), 15, 15)); in TEST()
368 src->context()->fillRect(fullRect, white, ColorSpaceDeviceRGB); in TEST()
371 src->context()->save(); in TEST()
372 src->context()->translate(0, -8); in TEST()
380 helper.init(src->context(), in TEST()
388 helper.context()->fillRect(bottomRight, green, ColorSpaceDeviceRGB); in TEST()
392 src->context()->restore(); in TEST()
395 EXPECT_EQ(green, getPixelAt(src->context(), 15, 7)); in TEST()
407 src->context()->fillRect(fullRect, white, ColorSpaceDeviceRGB); in TEST()
415 src->context()->save(); in TEST()
417 src->context()->concatCTM(cw90); in TEST()
422 src->context()->beginTransparencyLayer(0.5); in TEST()
425 src->context()->fillRect(blackRect, black, ColorSpaceDeviceRGB); in TEST()
433 helper.init(src->context(), in TEST()
439 helper.context()->fillRect(helper.drawRect(), Color(0x7f7f0000), ColorSpaceDeviceRGB); in TEST()
440 clearTopLayerAlphaChannel(helper.context()); in TEST()
445 src->context()->endTransparencyLayer(); in TEST()
448 EXPECT_EQ(white, getPixelAt(src->context(), 0, 0)); in TEST()
452 EXPECT_EQ(white, getPixelAt(src->context(), 6, 0)); in TEST()
453 EXPECT_EQ(gray, getPixelAt(src->context(), 7, 0)); in TEST()
454 EXPECT_EQ(gray, getPixelAt(src->context(), 8, 0)); in TEST()
455 EXPECT_EQ(white, getPixelAt(src->context(), 9, 0)); in TEST()
458 EXPECT_EQ(white, getPixelAt(src->context(), 6, 15)); in TEST()
459 EXPECT_EQ(gray, getPixelAt(src->context(), 7, 15)); in TEST()
460 EXPECT_EQ(gray, getPixelAt(src->context(), 8, 15)); in TEST()
461 EXPECT_EQ(white, getPixelAt(src->context(), 9, 15)); in TEST()
466 EXPECT_EQ(white, getPixelAt(src->context(), 0, 1)); in TEST()
467 EXPECT_EQ(redwhite, getPixelAt(src->context(), 1, 1)); in TEST()
468 EXPECT_EQ(redwhite, getPixelAt(src->context(), 6, 1)); in TEST()
469 EXPECT_EQ(redgray, getPixelAt(src->context(), 7, 1)); in TEST()
470 EXPECT_EQ(redgray, getPixelAt(src->context(), 8, 1)); in TEST()
471 EXPECT_EQ(redwhite, getPixelAt(src->context(), 9, 1)); in TEST()
472 EXPECT_EQ(redwhite, getPixelAt(src->context(), 14, 1)); in TEST()
473 EXPECT_EQ(white, getPixelAt(src->context(), 15, 1)); in TEST()
476 src->context()->restore(); in TEST()
486 src->context()->fillRect(topRect, white, ColorSpaceDeviceRGB); in TEST()
489 src->context()->fillRect(bottomRect, red, ColorSpaceDeviceRGB); in TEST()
491 src->context()->save(); in TEST()
500 src->context()->concatCTM(scale); in TEST()
505 src->context()->concatCTM(up); in TEST()
513 helper.init(src->context(), in TEST()
519 helper.context()->fillRect(helper.drawRect(), Color(0x7f7f0000), ColorSpaceDeviceRGB); in TEST()
520 clearTopLayerAlphaChannel(helper.context()); in TEST()
531 src->context()->fillRect(fullBuffer, Color::white, ColorSpaceDeviceRGB); in TEST()
534 src->context()->save(); in TEST()
537 src->context()->concatCTM(scale); in TEST()
542 helper.init(src->context(), in TEST()
549 EXPECT_TRUE(helper.context()->getCTM().isIdentity()); in TEST()
559 …SkBitmap& bitmap = const_cast<SkBitmap&>(helper.context()->platformContext()->canvas()->getTopDevi… in TEST()
564 src->context()->restore(); in TEST()
584 src->context()->fillRect(fullBuffer, Color::white, ColorSpaceDeviceRGB); in TEST()
588 src->context()->beginTransparencyLayer(0.5); in TEST()
590 src->context()->fillRect(topHalf, Color(0xFFFF0000), ColorSpaceDeviceRGB); in TEST()
593 src->context()->save(); in TEST()
596 src->context()->concatCTM(scale); in TEST()
602 helper.init(src->context(), in TEST()
607 helper.context()->fillRect(helper.drawRect(), Color(0x7f000000), ColorSpaceDeviceRGB); in TEST()
608 clearTopLayerAlphaChannel(helper.context()); in TEST()
613 src->context()->restore(); in TEST()
614 src->context()->endTransparencyLayer(); in TEST()
617 EXPECT_EQ(redBackground, getPixelAt(src->context(), 0, 0)); in TEST()
618 EXPECT_EQ(redBackground, getPixelAt(src->context(), 1, 1)); in TEST()
624 EXPECT_EQ(darkRed, getPixelAt(src->context(), 2, 2)); in TEST()
625 EXPECT_EQ(darkRed, getPixelAt(src->context(), 7, 7)); in TEST()
630 EXPECT_EQ(darkWhite, getPixelAt(src->context(), 8, 8)); in TEST()
631 EXPECT_EQ(darkWhite, getPixelAt(src->context(), 13, 13)); in TEST()
634 EXPECT_EQ(white, getPixelAt(src->context(), 14, 14)); in TEST()
635 EXPECT_EQ(white, getPixelAt(src->context(), 15, 15)); in TEST()
647 helper.init(src->context(), in TEST()
656 helper.context()->fillRect(pixel, 0xFFFF0000, ColorSpaceDeviceRGB); in TEST()
658 helper.context()->fillRect(pixel, 0xFF00FF00, ColorSpaceDeviceRGB); in TEST()
660 helper.context()->fillRect(pixel, 0xFF0000FF, ColorSpaceDeviceRGB); in TEST()
662 helper.context()->fillRect(pixel, 0xFF008080, ColorSpaceDeviceRGB); in TEST()
664 helper.context()->fillRect(pixel, 0xFF800080, ColorSpaceDeviceRGB); in TEST()
666 helper.context()->fillRect(pixel, 0xFF808000, ColorSpaceDeviceRGB); in TEST()
670 helper.context()->fillRect(pixel, 0xFF000000, ColorSpaceDeviceRGB); in TEST()
673 clearTopLayerAlphaChannel(helper.context()); in TEST()
678 EXPECT_EQ(oneThirdResult, getPixelAt(src->context(), 0, 0)); in TEST()
679 EXPECT_EQ(oneThirdResult, getPixelAt(src->context(), 1, 0)); in TEST()
680 EXPECT_EQ(oneThirdResult, getPixelAt(src->context(), 2, 0)); in TEST()
681 EXPECT_EQ(oneThirdResult, getPixelAt(src->context(), 3, 0)); in TEST()
682 EXPECT_EQ(oneThirdResult, getPixelAt(src->context(), 4, 0)); in TEST()
683 EXPECT_EQ(oneThirdResult, getPixelAt(src->context(), 5, 0)); in TEST()
684 EXPECT_EQ(fullResult, getPixelAt(src->context(), 6, 0)); in TEST()
685 EXPECT_EQ(Color::transparent, getPixelAt(src->context(), 7, 0)); in TEST()