OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2014 Google Inc. | 2 * Copyright 2014 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "SkCanvas.h" | 8 #include "SkCanvas.h" |
9 #include "SkPicture.h" | 9 #include "SkPicture.h" |
10 #include "SkPictureRecorder.h" | 10 #include "SkPictureRecorder.h" |
11 #include "SkShader.h" | 11 #include "SkShader.h" |
12 #include "Test.h" | 12 #include "Test.h" |
13 | 13 |
14 // Test that attempting to create a picture shader with a nullptr picture or | 14 // Test that attempting to create a picture shader with a nullptr picture or |
15 // empty picture returns a shader that draws nothing. | 15 // empty picture returns a shader that draws nothing. |
16 DEF_TEST(PictureShader_empty, reporter) { | 16 DEF_TEST(PictureShader_empty, reporter) { |
17 SkPaint paint; | 17 SkPaint paint; |
18 | 18 |
19 SkBitmap bitmap; | 19 SkBitmap bitmap; |
20 bitmap.allocN32Pixels(1,1); | 20 bitmap.allocN32Pixels(1,1); |
21 | 21 |
22 SkCanvas canvas(bitmap); | 22 SkCanvas canvas(bitmap); |
23 canvas.clear(SK_ColorGREEN); | 23 canvas.clear(SK_ColorGREEN); |
24 | 24 |
25 paint.setShader(SkShader::MakePictureShader( | 25 SkShader* shader = SkShader::CreatePictureShader( |
26 nullptr, SkShader::kClamp_TileMode, SkShader::kClamp_TileMode, nullp
tr, nullptr)); | 26 nullptr, SkShader::kClamp_TileMode, SkShader::kClamp_TileMode, nullp
tr, nullptr); |
| 27 paint.setShader(shader)->unref(); |
27 | 28 |
28 canvas.drawRect(SkRect::MakeWH(1,1), paint); | 29 canvas.drawRect(SkRect::MakeWH(1,1), paint); |
29 REPORTER_ASSERT(reporter, *bitmap.getAddr32(0,0) == SK_ColorGREEN); | 30 REPORTER_ASSERT(reporter, *bitmap.getAddr32(0,0) == SK_ColorGREEN); |
30 | 31 |
31 | 32 |
32 SkPictureRecorder factory; | 33 SkPictureRecorder factory; |
33 factory.beginRecording(0, 0, nullptr, 0); | 34 factory.beginRecording(0, 0, nullptr, 0); |
34 sk_sp<SkPicture> picture(factory.endRecording()); | 35 SkAutoTUnref<SkPicture> picture(factory.endRecording()); |
35 paint.setShader(SkShader::MakePictureShader(std::move(picture), SkShader::kC
lamp_TileMode, | 36 shader = SkShader::CreatePictureShader( |
36 SkShader::kClamp_TileMode, nullp
tr, nullptr)); | 37 picture.get(), SkShader::kClamp_TileMode, SkShader::kClamp_TileMode,
nullptr, nullptr); |
| 38 paint.setShader(shader)->unref(); |
37 | 39 |
38 canvas.drawRect(SkRect::MakeWH(1,1), paint); | 40 canvas.drawRect(SkRect::MakeWH(1,1), paint); |
39 REPORTER_ASSERT(reporter, *bitmap.getAddr32(0,0) == SK_ColorGREEN); | 41 REPORTER_ASSERT(reporter, *bitmap.getAddr32(0,0) == SK_ColorGREEN); |
40 } | 42 } |
OLD | NEW |