blob: ab58379e3e2575e2381a2329ebecf73ea4941137 [file] [log] [blame]
bsalomone179a912016-01-20 06:18:10 -08001/*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8// This test only works with the GPU backend.
9
10#include "gm.h"
11
Greg Daniel7ef28f32017-04-20 16:41:55 +000012#include "GrBackendSurface.h"
bsalomone179a912016-01-20 06:18:10 -080013#include "GrContext.h"
Robert Phillipsf35fd8d2018-01-22 10:48:15 -050014#include "GrContextPriv.h"
robertphillips87f15c82016-05-20 11:14:33 -070015#include "GrGpu.h"
bsalomone179a912016-01-20 06:18:10 -080016#include "GrTest.h"
robertphillips87f15c82016-05-20 11:14:33 -070017#include "gl/GrGLContext.h"
bsalomone179a912016-01-20 06:18:10 -080018#include "SkBitmap.h"
19#include "SkGradientShader.h"
20#include "SkImage.h"
21
22namespace skiagm {
23class RectangleTexture : public GM {
24public:
25 RectangleTexture() {
26 this->setBGColor(0xFFFFFFFF);
27 }
28
29protected:
30 SkString onShortName() override {
31 return SkString("rectangle_texture");
32 }
33
34 SkISize onISize() override {
35 return SkISize::Make(1035, 240);
36 }
37
38 void fillPixels(int width, int height, void *pixels) {
39 SkBitmap bmp;
40 bmp.setInfo(SkImageInfo::MakeN32(width, height, kOpaque_SkAlphaType), width * 4);
41 bmp.setPixels(pixels);
42 SkPaint paint;
43 SkCanvas canvas(bmp);
44 SkPoint pts[] = { {0, 0}, {0, SkIntToScalar(height)} };
45 SkColor colors0[] = { 0xFF1060B0 , 0xFF102030 };
reed1a9b9642016-03-13 14:13:58 -070046 paint.setShader(SkGradientShader::MakeLinear(pts, colors0, nullptr, 2,
47 SkShader::kClamp_TileMode));
bsalomone179a912016-01-20 06:18:10 -080048 canvas.drawPaint(paint);
49
50 SkColor colors1[] = { 0xFFA07010 , 0xFFA02080 };
51 paint.setAntiAlias(true);
reed1a9b9642016-03-13 14:13:58 -070052 paint.setShader(SkGradientShader::MakeLinear(pts, colors1, nullptr, 2,
53 SkShader::kClamp_TileMode));
bsalomone179a912016-01-20 06:18:10 -080054 canvas.drawCircle(SkIntToScalar(width) / 2, SkIntToScalar(height) / 2,
55 SkIntToScalar(width + height) / 5, paint);
56 }
57
reed9ce9d672016-03-17 10:51:11 -070058 sk_sp<SkImage> createRectangleTextureImg(GrContext* context, int width, int height,
59 void* pixels) {
bsalomone179a912016-01-20 06:18:10 -080060 if (!context) {
61 return nullptr;
62 }
Khushalc421ca12018-06-26 14:38:34 -070063 if (context->abandoned()) {
Robert Phillips6d363702018-06-25 08:53:09 -040064 return nullptr;
65 }
Robert Phillipsf35fd8d2018-01-22 10:48:15 -050066 GrGpu* gpu = context->contextPriv().getGpu();
bsalomone179a912016-01-20 06:18:10 -080067 if (!gpu) {
68 return nullptr;
69 }
70 const GrGLContext* glCtx = gpu->glContextForTesting();
71 if (!glCtx) {
72 return nullptr;
73 }
74
75 if (!(kGL_GrGLStandard == glCtx->standard() && glCtx->version() >= GR_GL_VER(3, 1)) &&
Weiliang Chen1e04b362018-07-12 17:13:35 -040076 !(glCtx->hasExtension("GL_ARB_texture_rectangle") ||
77 glCtx->hasExtension("GL_ANGLE_texture_rectangle"))) {
bsalomone179a912016-01-20 06:18:10 -080078 return nullptr;
79 }
80
81 // We will always create the GL texture as GL_RGBA, however the pixels uploaded may be
82 // be RGBA or BGRA, depending on how SkPMColor was compiled.
83 GrGLenum format;
84 if (kSkia8888_GrPixelConfig == kBGRA_8888_GrPixelConfig) {
85 format = GR_GL_BGRA;
86 } else {
87 SkASSERT(kSkia8888_GrPixelConfig == kRGBA_8888_GrPixelConfig);
88 format = GR_GL_RGBA;
89 }
90
91 const GrGLInterface* gl = glCtx->interface();
92// Useful for debugging whether errors result from use of RECTANGLE
93// #define TARGET GR_GL_TEXTURE_2D
94#define TARGET GR_GL_TEXTURE_RECTANGLE
bsalomon3c481002016-03-21 09:04:26 -070095 GrGLuint id = 0;
bsalomone179a912016-01-20 06:18:10 -080096 GR_GL_CALL(gl, GenTextures(1, &id));
97 GR_GL_CALL(gl, BindTexture(TARGET, id));
98 GR_GL_CALL(gl, TexParameteri(TARGET, GR_GL_TEXTURE_MAG_FILTER,
99 GR_GL_NEAREST));
100 GR_GL_CALL(gl, TexParameteri(TARGET, GR_GL_TEXTURE_MIN_FILTER,
101 GR_GL_NEAREST));
102 GR_GL_CALL(gl, TexParameteri(TARGET, GR_GL_TEXTURE_WRAP_S,
halcanary9d524f22016-03-29 09:03:52 -0700103 GR_GL_CLAMP_TO_EDGE));
bsalomone179a912016-01-20 06:18:10 -0800104 GR_GL_CALL(gl, TexParameteri(TARGET, GR_GL_TEXTURE_WRAP_T,
105 GR_GL_CLAMP_TO_EDGE));
106 GR_GL_CALL(gl, TexImage2D(TARGET, 0, GR_GL_RGBA, width, height, 0,
107 format, GR_GL_UNSIGNED_BYTE, pixels));
108
109
110 context->resetContext();
111 GrGLTextureInfo info;
112 info.fID = id;
113 info.fTarget = TARGET;
Greg Danielf5d87582017-12-18 14:48:15 -0500114 info.fFormat = GR_GL_RGBA8;
Greg Daniel7ef28f32017-04-20 16:41:55 +0000115
Greg Danielf5d87582017-12-18 14:48:15 -0500116 GrBackendTexture rectangleTex(width, height, GrMipMapped::kNo, info);
Greg Daniel7ef28f32017-04-20 16:41:55 +0000117
118 if (sk_sp<SkImage> image = SkImage::MakeFromAdoptedTexture(context, rectangleTex,
Greg Danielf5d87582017-12-18 14:48:15 -0500119 kTopLeft_GrSurfaceOrigin,
120 kRGBA_8888_SkColorType)) {
bsalomone179a912016-01-20 06:18:10 -0800121 return image;
122 }
123 GR_GL_CALL(gl, DeleteTextures(1, &id));
124 return nullptr;
125 }
126
127 void onDraw(SkCanvas* canvas) override {
robertphillips175dd9b2016-04-28 14:32:04 -0700128 GrContext *context = canvas->getGrContext();
129 if (!context) {
bsalomone179a912016-01-20 06:18:10 -0800130 skiagm::GM::DrawGpuOnlyMessage(canvas);
131 return;
132 }
133
mtkleindbfd7ab2016-09-01 11:24:54 -0700134 constexpr int kWidth = 50;
135 constexpr int kHeight = 50;
136 constexpr SkScalar kPad = 5.f;
bsalomone179a912016-01-20 06:18:10 -0800137
138 SkPMColor pixels[kWidth * kHeight];
139 this->fillPixels(kWidth, kHeight, pixels);
reed9ce9d672016-03-17 10:51:11 -0700140 sk_sp<SkImage> rectImg(this->createRectangleTextureImg(context, kWidth, kHeight, pixels));
bsalomone179a912016-01-20 06:18:10 -0800141
142 if (!rectImg) {
143 SkPaint paint;
144 paint.setAntiAlias(true);
mtkleindbfd7ab2016-09-01 11:24:54 -0700145 const char* kMsg = "Could not create rectangle texture image.";
Cary Clark2a475ea2017-04-28 15:35:12 -0400146 canvas->drawString(kMsg, 10, 100, paint);
bsalomone179a912016-01-20 06:18:10 -0800147 return;
148 }
149
mtkleindbfd7ab2016-09-01 11:24:54 -0700150 constexpr SkFilterQuality kQualities[] = {
bsalomone179a912016-01-20 06:18:10 -0800151 kNone_SkFilterQuality,
152 kLow_SkFilterQuality,
153 kMedium_SkFilterQuality,
154 kHigh_SkFilterQuality,
155 };
156
mtkleindbfd7ab2016-09-01 11:24:54 -0700157 constexpr SkScalar kScales[] = { 1.0f, 1.2f, 0.75f };
bsalomone179a912016-01-20 06:18:10 -0800158
159 canvas->translate(kPad, kPad);
160 for (auto s : kScales) {
161 canvas->save();
162 canvas->scale(s, s);
163 for (auto q : kQualities) {
reed9ce9d672016-03-17 10:51:11 -0700164 SkPaint plainPaint;
165 plainPaint.setFilterQuality(q);
166 canvas->drawImage(rectImg.get(), 0, 0, &plainPaint);
167 canvas->translate(kWidth + kPad, 0);
bsalomone179a912016-01-20 06:18:10 -0800168
reed9ce9d672016-03-17 10:51:11 -0700169 SkPaint clampPaint;
170 clampPaint.setFilterQuality(q);
Mike Reed0acd7952017-04-28 11:12:19 -0400171 clampPaint.setShader(rectImg->makeShader());
reed9ce9d672016-03-17 10:51:11 -0700172 canvas->drawRect(SkRect::MakeWH(1.5f * kWidth, 1.5f * kHeight), clampPaint);
173 canvas->translate(kWidth * 1.5f + kPad, 0);
bsalomone179a912016-01-20 06:18:10 -0800174
reed9ce9d672016-03-17 10:51:11 -0700175 SkPaint repeatPaint;
176 repeatPaint.setFilterQuality(q);
177 repeatPaint.setShader(rectImg->makeShader(SkShader::kRepeat_TileMode,
178 SkShader::kMirror_TileMode));
179 canvas->drawRect(SkRect::MakeWH(1.5f * kWidth, 1.5f * kHeight), repeatPaint);
180 canvas->translate(1.5f * kWidth + kPad, 0);
bsalomone179a912016-01-20 06:18:10 -0800181 }
182 canvas->restore();
183 canvas->translate(0, kPad + 1.5f * kHeight * s);
184 }
185 }
186
187private:
188 typedef GM INHERITED;
189};
190
191DEF_GM(return new RectangleTexture;)
192}