Chromium Code Reviews| Index: tests/ImageNewShaderTest.cpp |
| diff --git a/tests/ImageNewShaderTest.cpp b/tests/ImageNewShaderTest.cpp |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..615af83645860b1998b733d6e833b8f2e2307ca7 |
| --- /dev/null |
| +++ b/tests/ImageNewShaderTest.cpp |
| @@ -0,0 +1,101 @@ |
| +/* |
| + * Copyright 2014 Google Inc. |
| + * |
| + * Use of this source code is governed by a BSD-style license that can be |
| + * found in the LICENSE file. |
| + */ |
| + |
| +#if SK_SUPPORT_GPU |
| +#include "GrContextFactory.h" |
| +#endif |
| +#include "SkCanvas.h" |
| +#include "SkImage.h" |
| +#include "SkShader.h" |
| +#include "SkSurface.h" |
| + |
| +#include "Test.h" |
| + |
| +void testBitmapEquality(skiatest::Reporter* reporter, SkBitmap& bm1, SkBitmap& bm2) { |
| + REPORTER_ASSERT(reporter, bm1.getSize() == bm2.getSize()); |
| + REPORTER_ASSERT(reporter, 0 == memcmp(bm1.getPixels(), bm2.getPixels(), bm1.getSize())); |
|
Justin Novosad
2014/07/11 15:13:55
I don't understand why this does not crash. You ha
Rémi Piotaix
2014/07/11 15:33:51
Done.
|
| +} |
| + |
| +void runShaderTest(skiatest::Reporter* reporter, SkSurface* source, SkSurface* destination, SkImageInfo& info) { |
| + SkCanvas* rasterCanvas = source->getCanvas(); |
| + rasterCanvas->drawColor(0xFFDEDEDE, SkXfermode::kSrc_Mode); |
| + |
| + SkAutoTUnref<SkImage> rasterImage(source->newImageSnapshot()); |
| + SkAutoTUnref<SkShader> rasterShader(rasterImage->newShader( |
| + SkShader::kRepeat_TileMode, |
| + SkShader::kRepeat_TileMode)); |
| + |
| + SkPaint paint; |
| + paint.setShader(rasterShader); |
| + SkCanvas* canvasDest = destination->getCanvas(); |
| + canvasDest->clear(SK_ColorTRANSPARENT); |
| + canvasDest->drawPaint(paint); |
| + |
| + SkIRect rect = SkIRect::MakeXYWH(0, 0, 5, 5); |
| + |
| + SkBitmap bmOrig; |
| + rasterCanvas->readPixels(rect, &bmOrig); |
| + |
| + SkBitmap bm; |
| + canvasDest->readPixels(rect, &bm); |
| + |
| + testBitmapEquality(reporter, bmOrig, bm); |
| +} |
| + |
| +DEF_TEST(ImageNewShader, reporter) { |
| + SkImageInfo info = SkImageInfo::MakeN32Premul(5, 5); |
| + |
| + SkAutoTUnref<SkSurface> srcSurface(SkSurface::NewRaster(info)); |
| + SkAutoTUnref<SkSurface> dstSurface(SkSurface::NewRaster(info)); |
| + |
| + runShaderTest(reporter, srcSurface.get(), dstSurface.get(), info); |
| +} |
| + |
| +#if SK_SUPPORT_GPU |
| + |
| +void gpuToGpu(skiatest::Reporter* reporter, GrContext* context) { |
| + SkImageInfo info = SkImageInfo::MakeN32Premul(5, 5); |
| + |
| + SkAutoTUnref<SkSurface> srcSurface(SkSurface::NewRenderTarget(context, info)); |
| + SkAutoTUnref<SkSurface> dstSurface(SkSurface::NewRenderTarget(context, info)); |
| + |
| + runShaderTest(reporter, srcSurface.get(), dstSurface.get(), info); |
| +} |
| + |
| +void gpuToRaster(skiatest::Reporter* reporter, GrContext* context) { |
| + SkImageInfo info = SkImageInfo::MakeN32Premul(5, 5); |
| + |
| + SkAutoTUnref<SkSurface> srcSurface(SkSurface::NewRenderTarget(context, info)); |
| + SkAutoTUnref<SkSurface> dstSurface(SkSurface::NewRaster(info)); |
| + |
| + runShaderTest(reporter, srcSurface.get(), dstSurface.get(), info); |
| +} |
| + |
| +void rasterToGpu(skiatest::Reporter* reporter, GrContext* context) { |
| + SkImageInfo info = SkImageInfo::MakeN32Premul(5, 5); |
| + |
| + SkAutoTUnref<SkSurface> srcSurface(SkSurface::NewRaster(info)); |
| + SkAutoTUnref<SkSurface> dstSurface(SkSurface::NewRenderTarget(context, info)); |
| + |
| + runShaderTest(reporter, srcSurface.get(), dstSurface.get(), info); |
| +} |
| + |
| +DEF_GPUTEST(ImageNewShader_GPU, reporter, factory) { |
| + GrContext* context = factory->get(GrContextFactory::kNative_GLContextType); |
| + |
| + // GPU -> GPU |
| + gpuToGpu(reporter, context); |
| + |
| + // GPU -> RASTER |
| + gpuToRaster(reporter, context); |
| + |
| + |
| + // RASTER -> GPU |
| + rasterToGpu(reporter, context); |
| +} |
| + |
| +#endif |