blob: 0f164ebc796e42d4ae176e8fea95ccdc5b12eb64 [file] [log] [blame]
bsalomone5286e02016-01-14 09:24:09 -08001/*
2 * Copyright 2015 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#include "Test.h"
Robert Phillips3500b772017-01-27 10:11:42 -05009#include "TestUtils.h"
10
bsalomone5286e02016-01-14 09:24:09 -080011#if SK_SUPPORT_GPU
Brian Salomonc65aec92017-03-09 09:03:58 -050012#include "GrClip.h"
bsalomone5286e02016-01-14 09:24:09 -080013#include "GrContext.h"
robertphillips4fd74ae2016-08-03 14:26:53 -070014#include "GrContextPriv.h"
Brian Osman11052242016-10-27 14:47:55 -040015#include "GrRenderTargetContext.h"
Brian Salomonc65aec92017-03-09 09:03:58 -050016#include "gl/GLTestContext.h"
bsalomone5286e02016-01-14 09:24:09 -080017#include "gl/GrGLGpu.h"
18#include "gl/GrGLUtil.h"
bsalomone5286e02016-01-14 09:24:09 -080019
Brian Salomon739c5bf2016-11-07 09:53:44 -050020// skbug.com/5932
Robert Phillipsd46697a2017-01-25 12:10:37 -050021static void test_basic_draw_as_src(skiatest::Reporter* reporter, GrContext* context,
22 sk_sp<GrSurfaceProxy> rectProxy, uint32_t expectedPixelValues[]) {
Brian Salomon739c5bf2016-11-07 09:53:44 -050023 sk_sp<GrRenderTargetContext> rtContext(
Robert Phillipsd46697a2017-01-25 12:10:37 -050024 context->makeRenderTargetContext(SkBackingFit::kExact, rectProxy->width(),
25 rectProxy->height(), rectProxy->config(),
Brian Salomon739c5bf2016-11-07 09:53:44 -050026 nullptr));
Brian Salomon514baff2016-11-17 15:17:07 -050027 for (auto filter : {GrSamplerParams::kNone_FilterMode,
28 GrSamplerParams::kBilerp_FilterMode,
29 GrSamplerParams::kMipMap_FilterMode}) {
Brian Salomon739c5bf2016-11-07 09:53:44 -050030 rtContext->clear(nullptr, 0xDDCCBBAA, true);
Robert Phillipsd46697a2017-01-25 12:10:37 -050031 sk_sp<GrFragmentProcessor> fp(GrSimpleTextureEffect::Make(
32 context,
33 sk_ref_sp(rectProxy->asTextureProxy()),
34 nullptr,
35 SkMatrix::I(), filter));
Brian Salomon739c5bf2016-11-07 09:53:44 -050036 GrPaint paint;
37 paint.setPorterDuffXPFactory(SkBlendMode::kSrc);
38 paint.addColorFragmentProcessor(std::move(fp));
Brian Salomon82f44312017-01-11 13:42:54 -050039 rtContext->drawPaint(GrNoClip(), std::move(paint), SkMatrix::I());
Robert Phillips3500b772017-01-27 10:11:42 -050040 test_read_pixels(reporter, context, rtContext.get(), expectedPixelValues,
41 "RectangleTexture-basic-draw");
Brian Salomon739c5bf2016-11-07 09:53:44 -050042 }
43}
44
bsalomone5286e02016-01-14 09:24:09 -080045static void test_clear(skiatest::Reporter* reporter, GrContext* context,
Robert Phillipsd46697a2017-01-25 12:10:37 -050046 GrSurfaceContext* rectContext) {
47 if (GrRenderTargetContext* rtc = rectContext->asRenderTargetContext()) {
bsalomone5286e02016-01-14 09:24:09 -080048 // Clear the whole thing.
49 GrColor color0 = GrColorPackRGBA(0xA, 0xB, 0xC, 0xD);
Brian Osman11052242016-10-27 14:47:55 -040050 rtc->clear(nullptr, color0, false);
bsalomone5286e02016-01-14 09:24:09 -080051
Robert Phillipsd46697a2017-01-25 12:10:37 -050052 int w = rtc->width();
53 int h = rtc->height();
bsalomone5286e02016-01-14 09:24:09 -080054 int pixelCnt = w * h;
55 SkAutoTMalloc<uint32_t> expectedPixels(pixelCnt);
56
57 // The clear color is a GrColor, our readback is to kRGBA_8888, which may be different.
benjaminwagner2a641ee2016-01-15 06:21:18 -080058 uint32_t expectedColor0 = 0;
bsalomone5286e02016-01-14 09:24:09 -080059 uint8_t* expectedBytes0 = SkTCast<uint8_t*>(&expectedColor0);
60 expectedBytes0[0] = GrColorUnpackR(color0);
61 expectedBytes0[1] = GrColorUnpackG(color0);
62 expectedBytes0[2] = GrColorUnpackB(color0);
63 expectedBytes0[3] = GrColorUnpackA(color0);
Robert Phillipsd46697a2017-01-25 12:10:37 -050064 for (int i = 0; i < rtc->width() * rtc->height(); ++i) {
bsalomone5286e02016-01-14 09:24:09 -080065 expectedPixels.get()[i] = expectedColor0;
66 }
67
68 // Clear the the top to a different color.
69 GrColor color1 = GrColorPackRGBA(0x1, 0x2, 0x3, 0x4);
70 SkIRect rect = SkIRect::MakeWH(w, h/2);
Brian Osman11052242016-10-27 14:47:55 -040071 rtc->clear(&rect, color1, false);
bsalomone5286e02016-01-14 09:24:09 -080072
benjaminwagner2a641ee2016-01-15 06:21:18 -080073 uint32_t expectedColor1 = 0;
bsalomone5286e02016-01-14 09:24:09 -080074 uint8_t* expectedBytes1 = SkTCast<uint8_t*>(&expectedColor1);
75 expectedBytes1[0] = GrColorUnpackR(color1);
76 expectedBytes1[1] = GrColorUnpackG(color1);
77 expectedBytes1[2] = GrColorUnpackB(color1);
78 expectedBytes1[3] = GrColorUnpackA(color1);
79
80 for (int y = 0; y < h/2; ++y) {
81 for (int x = 0; x < w; ++x) {
82 expectedPixels.get()[y * h + x] = expectedColor1;
83 }
84 }
85
Robert Phillips3500b772017-01-27 10:11:42 -050086 test_read_pixels(reporter, context, rtc, expectedPixels.get(), "RectangleTexture-clear");
bsalomone5286e02016-01-14 09:24:09 -080087 }
88}
89
bsalomon758586c2016-04-06 14:02:39 -070090DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(RectangleTexture, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -070091 GrContext* context = ctxInfo.grContext();
92 sk_gpu_test::GLTestContext* glContext = ctxInfo.glContext();
bsalomone5286e02016-01-14 09:24:09 -080093 static const int kWidth = 13;
94 static const int kHeight = 13;
95
96 GrColor pixels[kWidth * kHeight];
97 for (int y = 0; y < kHeight; ++y) {
98 for (int x = 0; x < kWidth; ++x) {
99 pixels[y * kWidth + x] = y * kWidth + x;
100 }
101 }
102
103 for (int origin = 0; origin < 2; ++origin) {
104 GrGLuint rectTexID = glContext->createTextureRectangle(kWidth, kHeight, GR_GL_RGBA,
105 GR_GL_RGBA, GR_GL_UNSIGNED_BYTE,
106 pixels);
107
108 if (!rectTexID) {
109 return;
110 }
111
112 // Let GrContext know that we messed with the GL context directly.
113 context->resetContext();
114
115 // Wrap the rectangle texture ID in a GrTexture
116 GrGLTextureInfo rectangleInfo;
117 rectangleInfo.fID = rectTexID;
118 rectangleInfo.fTarget = GR_GL_TEXTURE_RECTANGLE;
119
120 GrBackendTextureDesc rectangleDesc;
121 rectangleDesc.fFlags = kRenderTarget_GrBackendTextureFlag;
122 rectangleDesc.fConfig = kRGBA_8888_GrPixelConfig;
123 rectangleDesc.fWidth = kWidth;
124 rectangleDesc.fHeight = kHeight;
125 rectangleDesc.fOrigin = origin ? kBottomLeft_GrSurfaceOrigin : kTopLeft_GrSurfaceOrigin;
126 rectangleDesc.fTextureHandle = reinterpret_cast<GrBackendObject>(&rectangleInfo);
127
128 GrColor refPixels[kWidth * kHeight];
129 bool flipRef = rectangleDesc.fOrigin == kBottomLeft_GrSurfaceOrigin;
130 for (int y = 0; y < kHeight; ++y) {
131 for (int x = 0; x < kWidth; ++x) {
132 int y0 = flipRef ? kHeight - y - 1 : y;
133 refPixels[y * kWidth + x] = pixels[y0 * kWidth + x];
134 }
135 }
136
Robert Phillips26caf892017-01-27 10:58:31 -0500137 sk_sp<GrSurfaceProxy> rectProxy = GrSurfaceProxy::MakeWrappedBackend(context,
138 rectangleDesc);
139 if (!rectProxy) {
140 ERRORF(reporter, "Error creating proxy for rectangle texture.");
141 GR_GL_CALL(glContext->gl(), DeleteTextures(1, &rectTexID));
142 continue;
bsalomone5286e02016-01-14 09:24:09 -0800143 }
144
Robert Phillipsd46697a2017-01-25 12:10:37 -0500145 test_basic_draw_as_src(reporter, context, rectProxy, refPixels);
bsalomone5286e02016-01-14 09:24:09 -0800146
Robert Phillips3500b772017-01-27 10:11:42 -0500147 // Test copy to both a texture and RT
148 test_copy_from_surface(reporter, context, rectProxy.get(), refPixels,
149 false, "RectangleTexture-copy-from");
Brian Salomon739c5bf2016-11-07 09:53:44 -0500150
Robert Phillipsd46697a2017-01-25 12:10:37 -0500151 sk_sp<GrSurfaceContext> rectContext = context->contextPriv().makeWrappedSurfaceContext(
152 std::move(rectProxy), nullptr);
153 SkASSERT(rectContext);
bsalomone5286e02016-01-14 09:24:09 -0800154
Robert Phillips3500b772017-01-27 10:11:42 -0500155 test_read_pixels(reporter, context, rectContext.get(), refPixels, "RectangleTexture-read");
bsalomone5286e02016-01-14 09:24:09 -0800156
Robert Phillips3500b772017-01-27 10:11:42 -0500157 test_copy_to_surface(reporter, context, rectContext.get(), "RectangleTexture-copy-to");
bsalomone5286e02016-01-14 09:24:09 -0800158
Robert Phillips3500b772017-01-27 10:11:42 -0500159 test_write_pixels(reporter, context, rectContext.get(), true, "RectangleTexture-write");
Robert Phillipsd46697a2017-01-25 12:10:37 -0500160
161 test_clear(reporter, context, rectContext.get());
bsalomone5286e02016-01-14 09:24:09 -0800162
163 GR_GL_CALL(glContext->gl(), DeleteTextures(1, &rectTexID));
164 }
165}
166
167#endif