blob: 5b3dc224e23ca6158556a5b56547f2bf0738a353 [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
12#if SK_SUPPORT_GPU
13
Greg Daniel7ef28f32017-04-20 16:41:55 +000014#include "GrBackendSurface.h"
bsalomone179a912016-01-20 06:18:10 -080015#include "GrContext.h"
robertphillips87f15c82016-05-20 11:14:33 -070016#include "GrGpu.h"
bsalomone179a912016-01-20 06:18:10 -080017#include "GrTest.h"
robertphillips87f15c82016-05-20 11:14:33 -070018#include "gl/GrGLContext.h"
bsalomone179a912016-01-20 06:18:10 -080019#include "SkBitmap.h"
20#include "SkGradientShader.h"
21#include "SkImage.h"
22
23namespace skiagm {
24class RectangleTexture : public GM {
25public:
26 RectangleTexture() {
27 this->setBGColor(0xFFFFFFFF);
28 }
29
30protected:
31 SkString onShortName() override {
32 return SkString("rectangle_texture");
33 }
34
35 SkISize onISize() override {
36 return SkISize::Make(1035, 240);
37 }
38
39 void fillPixels(int width, int height, void *pixels) {
40 SkBitmap bmp;
41 bmp.setInfo(SkImageInfo::MakeN32(width, height, kOpaque_SkAlphaType), width * 4);
42 bmp.setPixels(pixels);
43 SkPaint paint;
44 SkCanvas canvas(bmp);
45 SkPoint pts[] = { {0, 0}, {0, SkIntToScalar(height)} };
46 SkColor colors0[] = { 0xFF1060B0 , 0xFF102030 };
reed1a9b9642016-03-13 14:13:58 -070047 paint.setShader(SkGradientShader::MakeLinear(pts, colors0, nullptr, 2,
48 SkShader::kClamp_TileMode));
bsalomone179a912016-01-20 06:18:10 -080049 canvas.drawPaint(paint);
50
51 SkColor colors1[] = { 0xFFA07010 , 0xFFA02080 };
52 paint.setAntiAlias(true);
reed1a9b9642016-03-13 14:13:58 -070053 paint.setShader(SkGradientShader::MakeLinear(pts, colors1, nullptr, 2,
54 SkShader::kClamp_TileMode));
bsalomone179a912016-01-20 06:18:10 -080055 canvas.drawCircle(SkIntToScalar(width) / 2, SkIntToScalar(height) / 2,
56 SkIntToScalar(width + height) / 5, paint);
57 }
58
reed9ce9d672016-03-17 10:51:11 -070059 sk_sp<SkImage> createRectangleTextureImg(GrContext* context, int width, int height,
60 void* pixels) {
bsalomone179a912016-01-20 06:18:10 -080061 if (!context) {
62 return nullptr;
63 }
64 GrGpu* gpu = context->getGpu();
65 if (!gpu) {
66 return nullptr;
67 }
68 const GrGLContext* glCtx = gpu->glContextForTesting();
69 if (!glCtx) {
70 return nullptr;
71 }
72
73 if (!(kGL_GrGLStandard == glCtx->standard() && glCtx->version() >= GR_GL_VER(3, 1)) &&
74 !glCtx->hasExtension("GL_ARB_texture_rectangle")) {
75 return nullptr;
76 }
77
78 // We will always create the GL texture as GL_RGBA, however the pixels uploaded may be
79 // be RGBA or BGRA, depending on how SkPMColor was compiled.
80 GrGLenum format;
81 if (kSkia8888_GrPixelConfig == kBGRA_8888_GrPixelConfig) {
82 format = GR_GL_BGRA;
83 } else {
84 SkASSERT(kSkia8888_GrPixelConfig == kRGBA_8888_GrPixelConfig);
85 format = GR_GL_RGBA;
86 }
87
88 const GrGLInterface* gl = glCtx->interface();
89// Useful for debugging whether errors result from use of RECTANGLE
90// #define TARGET GR_GL_TEXTURE_2D
91#define TARGET GR_GL_TEXTURE_RECTANGLE
bsalomon3c481002016-03-21 09:04:26 -070092 GrGLuint id = 0;
bsalomone179a912016-01-20 06:18:10 -080093 GR_GL_CALL(gl, GenTextures(1, &id));
94 GR_GL_CALL(gl, BindTexture(TARGET, id));
95 GR_GL_CALL(gl, TexParameteri(TARGET, GR_GL_TEXTURE_MAG_FILTER,
96 GR_GL_NEAREST));
97 GR_GL_CALL(gl, TexParameteri(TARGET, GR_GL_TEXTURE_MIN_FILTER,
98 GR_GL_NEAREST));
99 GR_GL_CALL(gl, TexParameteri(TARGET, GR_GL_TEXTURE_WRAP_S,
halcanary9d524f22016-03-29 09:03:52 -0700100 GR_GL_CLAMP_TO_EDGE));
bsalomone179a912016-01-20 06:18:10 -0800101 GR_GL_CALL(gl, TexParameteri(TARGET, GR_GL_TEXTURE_WRAP_T,
102 GR_GL_CLAMP_TO_EDGE));
103 GR_GL_CALL(gl, TexImage2D(TARGET, 0, GR_GL_RGBA, width, height, 0,
104 format, GR_GL_UNSIGNED_BYTE, pixels));
105
106
107 context->resetContext();
108 GrGLTextureInfo info;
109 info.fID = id;
110 info.fTarget = TARGET;
Greg Daniel7ef28f32017-04-20 16:41:55 +0000111
112 GrBackendTexture rectangleTex(width, height, kRGBA_8888_GrPixelConfig, &info);
113
114 if (sk_sp<SkImage> image = SkImage::MakeFromAdoptedTexture(context, rectangleTex,
115 kTopLeft_GrSurfaceOrigin)) {
bsalomone179a912016-01-20 06:18:10 -0800116 return image;
117 }
118 GR_GL_CALL(gl, DeleteTextures(1, &id));
119 return nullptr;
120 }
121
122 void onDraw(SkCanvas* canvas) override {
robertphillips175dd9b2016-04-28 14:32:04 -0700123 GrContext *context = canvas->getGrContext();
124 if (!context) {
bsalomone179a912016-01-20 06:18:10 -0800125 skiagm::GM::DrawGpuOnlyMessage(canvas);
126 return;
127 }
128
mtkleindbfd7ab2016-09-01 11:24:54 -0700129 constexpr int kWidth = 50;
130 constexpr int kHeight = 50;
131 constexpr SkScalar kPad = 5.f;
bsalomone179a912016-01-20 06:18:10 -0800132
133 SkPMColor pixels[kWidth * kHeight];
134 this->fillPixels(kWidth, kHeight, pixels);
reed9ce9d672016-03-17 10:51:11 -0700135 sk_sp<SkImage> rectImg(this->createRectangleTextureImg(context, kWidth, kHeight, pixels));
bsalomone179a912016-01-20 06:18:10 -0800136
137 if (!rectImg) {
138 SkPaint paint;
139 paint.setAntiAlias(true);
mtkleindbfd7ab2016-09-01 11:24:54 -0700140 const char* kMsg = "Could not create rectangle texture image.";
Cary Clark2a475ea2017-04-28 15:35:12 -0400141 canvas->drawString(kMsg, 10, 100, paint);
bsalomone179a912016-01-20 06:18:10 -0800142 return;
143 }
144
mtkleindbfd7ab2016-09-01 11:24:54 -0700145 constexpr SkFilterQuality kQualities[] = {
bsalomone179a912016-01-20 06:18:10 -0800146 kNone_SkFilterQuality,
147 kLow_SkFilterQuality,
148 kMedium_SkFilterQuality,
149 kHigh_SkFilterQuality,
150 };
151
mtkleindbfd7ab2016-09-01 11:24:54 -0700152 constexpr SkScalar kScales[] = { 1.0f, 1.2f, 0.75f };
bsalomone179a912016-01-20 06:18:10 -0800153
154 canvas->translate(kPad, kPad);
155 for (auto s : kScales) {
156 canvas->save();
157 canvas->scale(s, s);
158 for (auto q : kQualities) {
reed9ce9d672016-03-17 10:51:11 -0700159 SkPaint plainPaint;
160 plainPaint.setFilterQuality(q);
161 canvas->drawImage(rectImg.get(), 0, 0, &plainPaint);
162 canvas->translate(kWidth + kPad, 0);
bsalomone179a912016-01-20 06:18:10 -0800163
reed9ce9d672016-03-17 10:51:11 -0700164 SkPaint clampPaint;
165 clampPaint.setFilterQuality(q);
Mike Reed0acd7952017-04-28 11:12:19 -0400166 clampPaint.setShader(rectImg->makeShader());
reed9ce9d672016-03-17 10:51:11 -0700167 canvas->drawRect(SkRect::MakeWH(1.5f * kWidth, 1.5f * kHeight), clampPaint);
168 canvas->translate(kWidth * 1.5f + kPad, 0);
bsalomone179a912016-01-20 06:18:10 -0800169
reed9ce9d672016-03-17 10:51:11 -0700170 SkPaint repeatPaint;
171 repeatPaint.setFilterQuality(q);
172 repeatPaint.setShader(rectImg->makeShader(SkShader::kRepeat_TileMode,
173 SkShader::kMirror_TileMode));
174 canvas->drawRect(SkRect::MakeWH(1.5f * kWidth, 1.5f * kHeight), repeatPaint);
175 canvas->translate(1.5f * kWidth + kPad, 0);
bsalomone179a912016-01-20 06:18:10 -0800176 }
177 canvas->restore();
178 canvas->translate(0, kPad + 1.5f * kHeight * s);
179 }
180 }
181
182private:
183 typedef GM INHERITED;
184};
185
186DEF_GM(return new RectangleTexture;)
187}
188
189#endif