Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Image_makeNonTextureImage.cpp
Go to the documentation of this file.
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.
4// HASH=ecdbaff44a02c310ef672b7d393c6dea
5REG_FIDDLE(Image_makeNonTextureImage, 256, 256, false, 5) {
6void draw(SkCanvas* canvas) {
7 auto dContext = GrAsDirectContext(canvas->recordingContext());
8 if (!dContext) {
9 return;
10 }
11
12 auto drawImage = [=](sk_sp<SkImage> image, const char* label) -> void {
13 if (nullptr == image) {
14 return;
15 }
17 paint.setAntiAlias(true);
18 SkFont font = SkFont(fontMgr->matchFamilyStyle(nullptr, {}));
20 canvas->drawImage(nonTexture, 0, 0);
21 canvas->drawString(label, 20, nonTexture->height() / 4, font, paint);
22 };
23 sk_sp<SkImage> bitmapImage(source.asImage());
24 sk_sp<SkImage> textureImage(SkImages::BorrowTextureFrom(dContext,
29 nullptr));
30 drawImage(image, "image");
31 canvas->translate(image->width(), 0);
32 drawImage(bitmapImage, "source");
33 canvas->translate(-image->width(), image->height());
34 drawImage(textureImage, "backEndTexture");
35}
36} // END FIDDLE
static GrDirectContext * GrAsDirectContext(GrContext_Base *base)
@ kTopLeft_GrSurfaceOrigin
Definition GrTypes.h:148
@ kOpaque_SkAlphaType
pixel is opaque
Definition SkAlphaType.h:28
@ kRGBA_8888_SkColorType
pixel with 8 bits for red, green, blue, alpha; in 32-bit word
Definition SkColorType.h:24
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
sk_sp< SkImage > asImage() const
Definition SkBitmap.cpp:645
void translate(SkScalar dx, SkScalar dy)
virtual GrRecordingContext * recordingContext() const
void drawString(const char str[], SkScalar x, SkScalar y, const SkFont &font, const SkPaint &paint)
Definition SkCanvas.h:1803
void drawImage(const SkImage *image, SkScalar left, SkScalar top)
Definition SkCanvas.h:1528
sk_sp< SkTypeface > matchFamilyStyle(const char familyName[], const SkFontStyle &) const
int width() const
Definition SkImage.h:285
sk_sp< SkImage > makeNonTextureImage(GrDirectContext *=nullptr) const
Definition SkImage.cpp:260
int height() const
Definition SkImage.h:291
const Paint & paint
sk_sp< SkFontMgr > fontMgr
Definition examples.cpp:32
sk_sp< SkImage > image
Definition examples.cpp:29
SkBitmap source
Definition examples.cpp:28
GrBackendTexture backEndTexture
Definition examples.cpp:25
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60
SK_API sk_sp< SkImage > BorrowTextureFrom(GrRecordingContext *context, const GrBackendTexture &backendTexture, GrSurfaceOrigin origin, SkColorType colorType, SkAlphaType alphaType, sk_sp< SkColorSpace > colorSpace, TextureReleaseProc textureReleaseProc=nullptr, ReleaseContext releaseContext=nullptr)