Hal Canary | 83c2f70 | 2019-03-07 14:53:03 -0500 | [diff] [blame] | 1 | // Copyright 2019 Google LLC. |
| 2 | // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. |
| 3 | #include "fiddle/examples.h" |
| 4 | // HASH=94e9296c53bad074bf2a48ff885dac13 |
| 5 | REG_FIDDLE(Image_006, 256, 128, false, 3) { |
| 6 | void draw(SkCanvas* canvas) { |
| 7 | GrContext* context = canvas->getGrContext(); |
| 8 | if (!context) { |
| 9 | return; |
| 10 | } |
| 11 | canvas->scale(.25f, .25f); |
| 12 | int x = 0; |
| 13 | for (auto origin : { kBottomLeft_GrSurfaceOrigin, kTopLeft_GrSurfaceOrigin } ) { |
| 14 | sk_sp<SkImage> image = SkImage::MakeFromTexture(context, backEndTexture, |
| 15 | origin, kRGBA_8888_SkColorType, kOpaque_SkAlphaType, nullptr); |
| 16 | canvas->drawImage(image, x, 0); |
| 17 | x += 512; |
| 18 | } |
| 19 | } |
| 20 | } // END FIDDLE |