blob: a87684e7d352a3181b467b5c2a330584dd5dcca8 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
2/*
3 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00008
9// This test only works with the GPU backend.
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000010
bsalomon@google.comd9f826c2011-07-18 15:25:04 +000011#include "gm.h"
bsalomon@google.coma68937c2012-08-03 15:00:52 +000012
13#if SK_SUPPORT_GPU
bsalomon@google.comd9f826c2011-07-18 15:25:04 +000014#include "GrContext.h"
bsalomon@google.com68b58c92013-01-17 16:50:08 +000015#include "effects/GrSimpleTextureEffect.h"
bsalomon@google.comd9f826c2011-07-18 15:25:04 +000016#include "SkColorPriv.h"
17#include "SkDevice.h"
18
19namespace skiagm {
20
bsalomon@google.comd9f826c2011-07-18 15:25:04 +000021static const int S = 200;
22
23class TexDataGM : public GM {
24public:
bsalomon@google.com48dd1a22011-10-31 14:18:20 +000025 TexDataGM() {
26 this->setBGColor(0xff000000);
27 }
bsalomon@google.comd9f826c2011-07-18 15:25:04 +000028
29protected:
30 virtual SkString onShortName() {
31 return SkString("texdata");
32 }
33
34 virtual SkISize onISize() {
35 return make_isize(2*S, 2*S);
36 }
37
commit-bot@chromium.org1d5bbb22013-10-14 14:15:28 +000038 virtual uint32_t onGetFlags() const SK_OVERRIDE { return kGPUOnly_Flag; }
39
bsalomon@google.comd9f826c2011-07-18 15:25:04 +000040 virtual void onDraw(SkCanvas* canvas) {
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000041 SkBaseDevice* device = canvas->getTopDevice();
commit-bot@chromium.orgb8d00db2013-06-26 19:18:23 +000042 GrRenderTarget* target = device->accessRenderTarget();
commit-bot@chromium.org644629c2013-11-21 06:21:58 +000043 GrContext* ctx = canvas->getGrContext();
bsalomon@google.comd9f826c2011-07-18 15:25:04 +000044 if (ctx && target) {
commit-bot@chromium.orgbeede902013-10-16 11:50:50 +000045 SkAutoTArray<SkPMColor> gTextureData((2 * S) * (2 * S));
bsalomon@google.comd9f826c2011-07-18 15:25:04 +000046 static const int stride = 2 * S;
47 static const SkPMColor gray = SkPackARGB32(0x40, 0x40, 0x40, 0x40);
48 static const SkPMColor white = SkPackARGB32(0xff, 0xff, 0xff, 0xff);
49 static const SkPMColor red = SkPackARGB32(0x80, 0x80, 0x00, 0x00);
50 static const SkPMColor blue = SkPackARGB32(0x80, 0x00, 0x00, 0x80);
51 static const SkPMColor green = SkPackARGB32(0x80, 0x00, 0x80, 0x00);
52 static const SkPMColor black = SkPackARGB32(0x00, 0x00, 0x00, 0x00);
53 for (int i = 0; i < 2; ++i) {
54 int offset = 0;
55 // fill upper-left
56 for (int y = 0; y < S; ++y) {
57 for (int x = 0; x < S; ++x) {
58 gTextureData[offset + y * stride + x] = gray;
59 }
60 }
61 // fill upper-right
62 offset = S;
63 for (int y = 0; y < S; ++y) {
64 for (int x = 0; x < S; ++x) {
65 gTextureData[offset + y * stride + x] = white;
66 }
67 }
68 // fill lower left
69 offset = S * stride;
70 for (int y = 0; y < S; ++y) {
71 for (int x = 0; x < S; ++x) {
72 gTextureData[offset + y * stride + x] = black;
73 }
74 }
75 // fill lower right
76 offset = S * stride + S;
77 for (int y = 0; y < S; ++y) {
78 for (int x = 0; x < S; ++x) {
79 gTextureData[offset + y * stride + x] = gray;
80 }
81 }
82
83 GrTextureDesc desc;
bsalomon@google.comd9f826c2011-07-18 15:25:04 +000084 // use RT flag bit because in GL it makes the texture be bottom-up
85 desc.fFlags = i ? kRenderTarget_GrTextureFlagBit :
86 kNone_GrTextureFlags;
bsalomon@google.comfec0bc32013-02-07 14:43:04 +000087 desc.fConfig = kSkia8888_GrPixelConfig;
bsalomon@google.comd9f826c2011-07-18 15:25:04 +000088 desc.fWidth = 2 * S;
89 desc.fHeight = 2 * S;
rmistry@google.comd6176b02012-08-23 18:14:13 +000090 GrTexture* texture =
commit-bot@chromium.orgbeede902013-10-16 11:50:50 +000091 ctx->createUncachedTexture(desc, gTextureData.get(), 0);
bsalomon@google.comd9f826c2011-07-18 15:25:04 +000092
93 if (!texture) {
94 return;
95 }
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +000096 SkAutoUnref au(texture);
bsalomon@google.comd9f826c2011-07-18 15:25:04 +000097
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +000098 GrContext::AutoClip acs(ctx, SkRect::MakeWH(2*S, 2*S));
robertphillips@google.com3e11c0b2012-07-11 18:20:35 +000099
bsalomon@google.comd9f826c2011-07-18 15:25:04 +0000100 ctx->setRenderTarget(target);
101
102 GrPaint paint;
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000103 paint.setBlendFunc(kOne_GrBlendCoeff, kISA_GrBlendCoeff);
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000104 SkMatrix vm;
bsalomon@google.comd9f826c2011-07-18 15:25:04 +0000105 if (i) {
bsalomon@google.com9d12f5c2011-09-29 18:08:18 +0000106 vm.setRotate(90 * SK_Scalar1,
107 S * SK_Scalar1,
108 S * SK_Scalar1);
bsalomon@google.comd9f826c2011-07-18 15:25:04 +0000109 } else {
110 vm.reset();
111 }
112 ctx->setMatrix(vm);
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000113 SkMatrix tm;
bsalomon@google.comd9f826c2011-07-18 15:25:04 +0000114 tm = vm;
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +0000115 tm.postIDiv(2*S, 2*S);
commit-bot@chromium.org42dacab2013-07-13 17:24:24 +0000116 paint.addColorTextureEffect(texture, tm);
bsalomon@google.comd9f826c2011-07-18 15:25:04 +0000117
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000118 ctx->drawRect(paint, SkRect::MakeWH(2*S, 2*S));
bsalomon@google.comd9f826c2011-07-18 15:25:04 +0000119
120 // now update the lower right of the texture in first pass
121 // or upper right in second pass
122 offset = 0;
123 for (int y = 0; y < S; ++y) {
124 for (int x = 0; x < S; ++x) {
rmistry@google.comd6176b02012-08-23 18:14:13 +0000125 gTextureData[offset + y * stride + x] =
bsalomon@google.comd9f826c2011-07-18 15:25:04 +0000126 ((x + y) % 2) ? (i ? green : red) : blue;
127 }
128 }
bsalomon@google.com6f379512011-11-16 20:36:03 +0000129 texture->writePixels(S, (i ? 0 : S), S, S,
commit-bot@chromium.orgbeede902013-10-16 11:50:50 +0000130 texture->config(), gTextureData.get(),
bsalomon@google.com6f379512011-11-16 20:36:03 +0000131 4 * stride);
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000132 ctx->drawRect(paint, SkRect::MakeWH(2*S, 2*S));
bsalomon@google.comd9f826c2011-07-18 15:25:04 +0000133 }
134 }
135 }
136
137private:
138 typedef GM INHERITED;
139};
140
141//////////////////////////////////////////////////////////////////////////////
142
143static GM* MyFactory(void*) { return new TexDataGM; }
144static GMRegistry reg(MyFactory);
145
146}
147
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000148#endif