Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2017 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 "SkTypes.h" |
| 9 | #include "Test.h" |
| 10 | |
Brian Salomon | c7fe0f7 | 2018-05-11 10:14:21 -0400 | [diff] [blame] | 11 | #include <array> |
| 12 | #include <vector> |
| 13 | #include "GrCaps.h" |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 14 | #include "GrContext.h" |
Brian Salomon | c7fe0f7 | 2018-05-11 10:14:21 -0400 | [diff] [blame] | 15 | #include "GrContextPriv.h" |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 16 | #include "GrGeometryProcessor.h" |
Robert Phillips | 009e9af | 2017-06-15 14:01:04 -0400 | [diff] [blame] | 17 | #include "GrGpuCommandBuffer.h" |
Robert Phillips | 7c525e6 | 2018-06-12 10:11:12 -0400 | [diff] [blame] | 18 | #include "GrMemoryPool.h" |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 19 | #include "GrOpFlushState.h" |
| 20 | #include "GrRenderTargetContext.h" |
| 21 | #include "GrRenderTargetContextPriv.h" |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 22 | #include "GrResourceKey.h" |
Brian Salomon | c7fe0f7 | 2018-05-11 10:14:21 -0400 | [diff] [blame] | 23 | #include "GrResourceProvider.h" |
Mike Reed | 75ae421 | 2018-01-23 11:24:08 -0500 | [diff] [blame] | 24 | #include "SkBitmap.h" |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 25 | #include "SkMakeUnique.h" |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 26 | #include "glsl/GrGLSLFragmentShaderBuilder.h" |
| 27 | #include "glsl/GrGLSLGeometryProcessor.h" |
| 28 | #include "glsl/GrGLSLVarying.h" |
Brian Salomon | c7fe0f7 | 2018-05-11 10:14:21 -0400 | [diff] [blame] | 29 | #include "glsl/GrGLSLVertexGeoBuilder.h" |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 30 | |
| 31 | GR_DECLARE_STATIC_UNIQUE_KEY(gIndexBufferKey); |
| 32 | |
| 33 | static constexpr int kBoxSize = 2; |
| 34 | static constexpr int kBoxCountY = 8; |
| 35 | static constexpr int kBoxCountX = 8; |
| 36 | static constexpr int kBoxCount = kBoxCountY * kBoxCountX; |
| 37 | |
| 38 | static constexpr int kImageWidth = kBoxCountY * kBoxSize; |
| 39 | static constexpr int kImageHeight = kBoxCountX * kBoxSize; |
| 40 | |
| 41 | static constexpr int kIndexPatternRepeatCount = 3; |
| 42 | constexpr uint16_t kIndexPattern[6] = {0, 1, 2, 1, 2, 3}; |
| 43 | |
| 44 | |
| 45 | class DrawMeshHelper { |
| 46 | public: |
| 47 | DrawMeshHelper(GrOpFlushState* state) : fState(state) {} |
| 48 | |
| 49 | sk_sp<const GrBuffer> getIndexBuffer(); |
| 50 | |
| 51 | template<typename T> sk_sp<const GrBuffer> makeVertexBuffer(const SkTArray<T>& data) { |
| 52 | return this->makeVertexBuffer(data.begin(), data.count()); |
| 53 | } |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 54 | template<typename T> sk_sp<const GrBuffer> makeVertexBuffer(const std::vector<T>& data) { |
| 55 | return this->makeVertexBuffer(data.data(), data.size()); |
| 56 | } |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 57 | template<typename T> sk_sp<const GrBuffer> makeVertexBuffer(const T* data, int count); |
| 58 | |
| 59 | void drawMesh(const GrMesh& mesh); |
| 60 | |
| 61 | private: |
| 62 | GrOpFlushState* fState; |
| 63 | }; |
| 64 | |
| 65 | struct Box { |
| 66 | float fX, fY; |
| 67 | GrColor fColor; |
| 68 | }; |
| 69 | |
| 70 | //////////////////////////////////////////////////////////////////////////////////////////////////// |
| 71 | |
| 72 | /** |
| 73 | * This is a GPU-backend specific test. It tries to test all possible usecases of GrMesh. The test |
| 74 | * works by drawing checkerboards of colored boxes, reading back the pixels, and comparing with |
| 75 | * expected results. The boxes are drawn on integer boundaries and the (opaque) colors are chosen |
| 76 | * from the set (r,g,b) = (0,255)^3, so the GPU renderings ought to produce exact matches. |
| 77 | */ |
| 78 | |
Robert Phillips | 88a32ef | 2018-06-07 11:05:56 -0400 | [diff] [blame] | 79 | static void run_test(GrContext* context, const char* testName, skiatest::Reporter*, |
| 80 | const sk_sp<GrRenderTargetContext>&, const SkBitmap& gold, |
| 81 | std::function<void(DrawMeshHelper*)> testFn); |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 82 | |
| 83 | DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrMeshTest, reporter, ctxInfo) { |
Robert Phillips | 88a32ef | 2018-06-07 11:05:56 -0400 | [diff] [blame] | 84 | GrContext* context = ctxInfo.grContext(); |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 85 | |
Robert Phillips | 0c4b7b1 | 2018-03-06 08:20:37 -0500 | [diff] [blame] | 86 | sk_sp<GrRenderTargetContext> rtc(context->contextPriv().makeDeferredRenderTargetContext( |
| 87 | SkBackingFit::kExact, kImageWidth, kImageHeight, |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 88 | kRGBA_8888_GrPixelConfig, nullptr)); |
| 89 | if (!rtc) { |
| 90 | ERRORF(reporter, "could not create render target context."); |
| 91 | return; |
| 92 | } |
| 93 | |
| 94 | SkTArray<Box> boxes; |
| 95 | SkTArray<std::array<Box, 4>> vertexData; |
| 96 | SkBitmap gold; |
| 97 | |
| 98 | // ---- setup ---------- |
| 99 | |
| 100 | SkPaint paint; |
| 101 | paint.setBlendMode(SkBlendMode::kSrc); |
| 102 | gold.allocN32Pixels(kImageWidth, kImageHeight); |
| 103 | |
| 104 | SkCanvas goldCanvas(gold); |
| 105 | |
| 106 | for (int y = 0; y < kBoxCountY; ++y) { |
| 107 | for (int x = 0; x < kBoxCountX; ++x) { |
| 108 | int c = y + x; |
| 109 | int rgb[3] = {-(c & 1) & 0xff, -((c >> 1) & 1) & 0xff, -((c >> 2) & 1) & 0xff}; |
| 110 | |
| 111 | const Box box = boxes.push_back() = { |
| 112 | float(x * kBoxSize), |
| 113 | float(y * kBoxSize), |
| 114 | GrColorPackRGBA(rgb[0], rgb[1], rgb[2], 255) |
| 115 | }; |
| 116 | |
| 117 | std::array<Box, 4>& boxVertices = vertexData.push_back(); |
| 118 | for (int i = 0; i < 4; ++i) { |
| 119 | boxVertices[i] = { |
| 120 | box.fX + (i/2) * kBoxSize, |
| 121 | box.fY + (i%2) * kBoxSize, |
| 122 | box.fColor |
| 123 | }; |
| 124 | } |
| 125 | |
| 126 | paint.setARGB(255, rgb[0], rgb[1], rgb[2]); |
| 127 | goldCanvas.drawRect(SkRect::MakeXYWH(box.fX, box.fY, kBoxSize, kBoxSize), paint); |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | goldCanvas.flush(); |
| 132 | |
| 133 | // ---- tests ---------- |
| 134 | |
| 135 | #define VALIDATE(buff) \ |
| 136 | if (!buff) { \ |
| 137 | ERRORF(reporter, #buff " is null."); \ |
| 138 | return; \ |
| 139 | } |
| 140 | |
Robert Phillips | 88a32ef | 2018-06-07 11:05:56 -0400 | [diff] [blame] | 141 | run_test(context, "setNonIndexedNonInstanced", reporter, rtc, gold, |
| 142 | [&](DrawMeshHelper* helper) { |
| 143 | SkTArray<Box> expandedVertexData; |
| 144 | for (int i = 0; i < kBoxCount; ++i) { |
| 145 | for (int j = 0; j < 6; ++j) { |
| 146 | expandedVertexData.push_back(vertexData[i][kIndexPattern[j]]); |
| 147 | } |
| 148 | } |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 149 | |
Robert Phillips | 88a32ef | 2018-06-07 11:05:56 -0400 | [diff] [blame] | 150 | // Draw boxes one line at a time to exercise base vertex. |
| 151 | auto vbuff = helper->makeVertexBuffer(expandedVertexData); |
| 152 | VALIDATE(vbuff); |
| 153 | for (int y = 0; y < kBoxCountY; ++y) { |
| 154 | GrMesh mesh(GrPrimitiveType::kTriangles); |
| 155 | mesh.setNonIndexedNonInstanced(kBoxCountX * 6); |
| 156 | mesh.setVertexData(vbuff.get(), y * kBoxCountX * 6); |
| 157 | helper->drawMesh(mesh); |
| 158 | } |
| 159 | }); |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 160 | |
Robert Phillips | 88a32ef | 2018-06-07 11:05:56 -0400 | [diff] [blame] | 161 | run_test(context, "setIndexed", reporter, rtc, gold, [&](DrawMeshHelper* helper) { |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 162 | auto ibuff = helper->getIndexBuffer(); |
| 163 | VALIDATE(ibuff); |
| 164 | auto vbuff = helper->makeVertexBuffer(vertexData); |
| 165 | VALIDATE(vbuff); |
| 166 | int baseRepetition = 0; |
| 167 | int i = 0; |
| 168 | |
| 169 | // Start at various repetitions within the patterned index buffer to exercise base index. |
| 170 | while (i < kBoxCount) { |
| 171 | GR_STATIC_ASSERT(kIndexPatternRepeatCount >= 3); |
| 172 | int repetitionCount = SkTMin(3 - baseRepetition, kBoxCount - i); |
| 173 | |
Chris Dalton | 3809bab | 2017-06-13 10:55:06 -0600 | [diff] [blame] | 174 | GrMesh mesh(GrPrimitiveType::kTriangles); |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 175 | mesh.setIndexed(ibuff.get(), repetitionCount * 6, baseRepetition * 6, |
Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 176 | baseRepetition * 4, (baseRepetition + repetitionCount) * 4 - 1, |
| 177 | GrPrimitiveRestart::kNo); |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 178 | mesh.setVertexData(vbuff.get(), (i - baseRepetition) * 4); |
| 179 | helper->drawMesh(mesh); |
| 180 | |
| 181 | baseRepetition = (baseRepetition + 1) % 3; |
| 182 | i += repetitionCount; |
| 183 | } |
| 184 | }); |
| 185 | |
Robert Phillips | 88a32ef | 2018-06-07 11:05:56 -0400 | [diff] [blame] | 186 | run_test(context, "setIndexedPatterned", reporter, rtc, gold, [&](DrawMeshHelper* helper) { |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 187 | auto ibuff = helper->getIndexBuffer(); |
| 188 | VALIDATE(ibuff); |
| 189 | auto vbuff = helper->makeVertexBuffer(vertexData); |
| 190 | VALIDATE(vbuff); |
| 191 | |
| 192 | // Draw boxes one line at a time to exercise base vertex. setIndexedPatterned does not |
| 193 | // support a base index. |
| 194 | for (int y = 0; y < kBoxCountY; ++y) { |
Chris Dalton | 3809bab | 2017-06-13 10:55:06 -0600 | [diff] [blame] | 195 | GrMesh mesh(GrPrimitiveType::kTriangles); |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 196 | mesh.setIndexedPatterned(ibuff.get(), 6, 4, kBoxCountX, kIndexPatternRepeatCount); |
| 197 | mesh.setVertexData(vbuff.get(), y * kBoxCountX * 4); |
| 198 | helper->drawMesh(mesh); |
| 199 | } |
| 200 | }); |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 201 | |
| 202 | for (bool indexed : {false, true}) { |
Brian Salomon | c7fe0f7 | 2018-05-11 10:14:21 -0400 | [diff] [blame] | 203 | if (!context->contextPriv().caps()->instanceAttribSupport()) { |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 204 | break; |
| 205 | } |
| 206 | |
Robert Phillips | 88a32ef | 2018-06-07 11:05:56 -0400 | [diff] [blame] | 207 | run_test(context, indexed ? "setIndexedInstanced" : "setInstanced", |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 208 | reporter, rtc, gold, [&](DrawMeshHelper* helper) { |
| 209 | auto idxbuff = indexed ? helper->getIndexBuffer() : nullptr; |
| 210 | auto instbuff = helper->makeVertexBuffer(boxes); |
| 211 | VALIDATE(instbuff); |
| 212 | auto vbuff = helper->makeVertexBuffer(std::vector<float>{0,0, 0,1, 1,0, 1,1}); |
| 213 | VALIDATE(vbuff); |
| 214 | auto vbuff2 = helper->makeVertexBuffer( // for testing base vertex. |
| 215 | std::vector<float>{-1,-1, -1,-1, 0,0, 0,1, 1,0, 1,1}); |
| 216 | VALIDATE(vbuff2); |
| 217 | |
| 218 | // Draw boxes one line at a time to exercise base instance, base vertex, and null vertex |
| 219 | // buffer. setIndexedInstanced intentionally does not support a base index. |
| 220 | for (int y = 0; y < kBoxCountY; ++y) { |
Chris Dalton | 3809bab | 2017-06-13 10:55:06 -0600 | [diff] [blame] | 221 | GrMesh mesh(indexed ? GrPrimitiveType::kTriangles |
| 222 | : GrPrimitiveType::kTriangleStrip); |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 223 | if (indexed) { |
| 224 | VALIDATE(idxbuff); |
Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 225 | mesh.setIndexedInstanced(idxbuff.get(), 6, instbuff.get(), kBoxCountX, |
| 226 | y * kBoxCountX, GrPrimitiveRestart::kNo); |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 227 | } else { |
| 228 | mesh.setInstanced(instbuff.get(), kBoxCountX, y * kBoxCountX, 4); |
| 229 | } |
| 230 | switch (y % 3) { |
| 231 | case 0: |
Brian Salomon | c7fe0f7 | 2018-05-11 10:14:21 -0400 | [diff] [blame] | 232 | if (context->contextPriv().caps()->shaderCaps()->vertexIDSupport()) { |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 233 | if (y % 2) { |
| 234 | // We don't need this call because it's the initial state of GrMesh. |
| 235 | mesh.setVertexData(nullptr); |
| 236 | } |
| 237 | break; |
| 238 | } |
| 239 | // Fallthru. |
| 240 | case 1: |
| 241 | mesh.setVertexData(vbuff.get()); |
| 242 | break; |
| 243 | case 2: |
| 244 | mesh.setVertexData(vbuff2.get(), 2); |
| 245 | break; |
| 246 | } |
| 247 | helper->drawMesh(mesh); |
| 248 | } |
| 249 | }); |
| 250 | } |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 251 | } |
| 252 | |
| 253 | //////////////////////////////////////////////////////////////////////////////////////////////////// |
| 254 | |
| 255 | class GrMeshTestOp : public GrDrawOp { |
| 256 | public: |
| 257 | DEFINE_OP_CLASS_ID |
| 258 | |
Robert Phillips | 88a32ef | 2018-06-07 11:05:56 -0400 | [diff] [blame] | 259 | static std::unique_ptr<GrDrawOp> Make(GrContext* context, |
| 260 | std::function<void(DrawMeshHelper*)> testFn) { |
Robert Phillips | c994a93 | 2018-06-19 13:09:54 -0400 | [diff] [blame] | 261 | GrOpMemoryPool* pool = context->contextPriv().opMemoryPool(); |
| 262 | |
| 263 | return pool->allocate<GrMeshTestOp>(testFn); |
Robert Phillips | 88a32ef | 2018-06-07 11:05:56 -0400 | [diff] [blame] | 264 | } |
| 265 | |
| 266 | private: |
Robert Phillips | 7c525e6 | 2018-06-12 10:11:12 -0400 | [diff] [blame] | 267 | friend class GrOpMemoryPool; // for ctor |
| 268 | |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 269 | GrMeshTestOp(std::function<void(DrawMeshHelper*)> testFn) |
| 270 | : INHERITED(ClassID()) |
| 271 | , fTestFn(testFn) { |
| 272 | this->setBounds(SkRect::MakeIWH(kImageWidth, kImageHeight), |
| 273 | HasAABloat::kNo, IsZeroArea::kNo); |
| 274 | } |
| 275 | |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 276 | const char* name() const override { return "GrMeshTestOp"; } |
| 277 | FixedFunctionFlags fixedFunctionFlags() const override { return FixedFunctionFlags::kNone; } |
Brian Osman | 532b3f9 | 2018-07-11 10:02:07 -0400 | [diff] [blame] | 278 | RequiresDstTexture finalize(const GrCaps&, const GrAppliedClip*) override { |
Brian Salomon | f86d37b | 2017-06-16 10:04:34 -0400 | [diff] [blame] | 279 | return RequiresDstTexture::kNo; |
| 280 | } |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 281 | void onPrepare(GrOpFlushState*) override {} |
| 282 | void onExecute(GrOpFlushState* state) override { |
| 283 | DrawMeshHelper helper(state); |
| 284 | fTestFn(&helper); |
| 285 | } |
| 286 | |
| 287 | std::function<void(DrawMeshHelper*)> fTestFn; |
| 288 | |
| 289 | typedef GrDrawOp INHERITED; |
| 290 | }; |
| 291 | |
| 292 | class GrMeshTestProcessor : public GrGeometryProcessor { |
| 293 | public: |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 294 | GrMeshTestProcessor(bool instanced, bool hasVertexBuffer) |
Brian Salomon | 92be2f7 | 2018-06-19 14:33:47 -0400 | [diff] [blame] | 295 | : INHERITED(kGrMeshTestProcessor_ClassID) { |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 296 | if (instanced) { |
Brian Salomon | 92be2f7 | 2018-06-19 14:33:47 -0400 | [diff] [blame] | 297 | fInstanceLocation = {"location", kHalf2_GrVertexAttribType}; |
| 298 | fColor = {"color", kUByte4_norm_GrVertexAttribType}; |
| 299 | this->setInstanceAttributeCnt(2); |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 300 | if (hasVertexBuffer) { |
Brian Salomon | 92be2f7 | 2018-06-19 14:33:47 -0400 | [diff] [blame] | 301 | fVertex = {"vertex", kHalf2_GrVertexAttribType}; |
| 302 | this->setVertexAttributeCnt(1); |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 303 | } |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 304 | } else { |
Brian Salomon | 92be2f7 | 2018-06-19 14:33:47 -0400 | [diff] [blame] | 305 | fVertex = {"vertex", kHalf2_GrVertexAttribType}; |
| 306 | fColor = {"color", kUByte4_norm_GrVertexAttribType}; |
| 307 | this->setVertexAttributeCnt(2); |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 308 | } |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 309 | } |
| 310 | |
| 311 | const char* name() const override { return "GrMeshTest Processor"; } |
| 312 | |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 313 | void getGLSLProcessorKey(const GrShaderCaps&, GrProcessorKeyBuilder* b) const final { |
Brian Salomon | 92be2f7 | 2018-06-19 14:33:47 -0400 | [diff] [blame] | 314 | b->add32(fInstanceLocation.isInitialized()); |
| 315 | b->add32(fVertex.isInitialized()); |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 316 | } |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 317 | |
| 318 | GrGLSLPrimitiveProcessor* createGLSLInstance(const GrShaderCaps&) const final; |
| 319 | |
Brian Salomon | 92be2f7 | 2018-06-19 14:33:47 -0400 | [diff] [blame] | 320 | private: |
| 321 | const Attribute& onVertexAttribute(int i) const override { |
| 322 | if (fInstanceLocation.isInitialized()) { |
| 323 | return fVertex; |
| 324 | } |
| 325 | return IthAttribute(i, fVertex, fColor); |
| 326 | } |
| 327 | |
| 328 | const Attribute& onInstanceAttribute(int i) const override { |
| 329 | return IthAttribute(i, fInstanceLocation, fColor); |
| 330 | } |
| 331 | |
| 332 | Attribute fInstanceLocation; |
| 333 | Attribute fVertex; |
| 334 | Attribute fColor; |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 335 | |
| 336 | friend class GLSLMeshTestProcessor; |
| 337 | typedef GrGeometryProcessor INHERITED; |
| 338 | }; |
| 339 | |
| 340 | class GLSLMeshTestProcessor : public GrGLSLGeometryProcessor { |
| 341 | void setData(const GrGLSLProgramDataManager& pdman, const GrPrimitiveProcessor&, |
| 342 | FPCoordTransformIter&& transformIter) final {} |
| 343 | |
| 344 | void onEmitCode(EmitArgs& args, GrGPArgs* gpArgs) final { |
| 345 | const GrMeshTestProcessor& mp = args.fGP.cast<GrMeshTestProcessor>(); |
| 346 | |
| 347 | GrGLSLVaryingHandler* varyingHandler = args.fVaryingHandler; |
| 348 | varyingHandler->emitAttributes(mp); |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 349 | varyingHandler->addPassThroughAttribute(mp.fColor, args.fOutputColor); |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 350 | |
| 351 | GrGLSLVertexBuilder* v = args.fVertBuilder; |
Brian Salomon | 92be2f7 | 2018-06-19 14:33:47 -0400 | [diff] [blame] | 352 | if (!mp.fInstanceLocation.isInitialized()) { |
| 353 | v->codeAppendf("float2 vertex = %s;", mp.fVertex.name()); |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 354 | } else { |
Brian Salomon | 92be2f7 | 2018-06-19 14:33:47 -0400 | [diff] [blame] | 355 | if (mp.fVertex.isInitialized()) { |
| 356 | v->codeAppendf("float2 offset = %s;", mp.fVertex.name()); |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 357 | } else { |
Ethan Nicholas | 8aa4569 | 2017-09-20 11:24:15 -0400 | [diff] [blame] | 358 | v->codeAppend ("float2 offset = float2(sk_VertexID / 2, sk_VertexID % 2);"); |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 359 | } |
Brian Salomon | 92be2f7 | 2018-06-19 14:33:47 -0400 | [diff] [blame] | 360 | v->codeAppendf("float2 vertex = %s + offset * %i;", mp.fInstanceLocation.name(), |
Brian Salomon | 70132d0 | 2018-05-29 15:33:06 -0400 | [diff] [blame] | 361 | kBoxSize); |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 362 | } |
Ethan Nicholas | 8aa4569 | 2017-09-20 11:24:15 -0400 | [diff] [blame] | 363 | gpArgs->fPositionVar.set(kFloat2_GrSLType, "vertex"); |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 364 | |
Chris Dalton | 6028361 | 2018-02-14 13:38:14 -0700 | [diff] [blame] | 365 | GrGLSLFPFragmentBuilder* f = args.fFragBuilder; |
Ethan Nicholas | f7b8820 | 2017-09-18 14:10:39 -0400 | [diff] [blame] | 366 | f->codeAppendf("%s = half4(1);", args.fOutputCoverage); |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 367 | } |
| 368 | }; |
| 369 | |
| 370 | GrGLSLPrimitiveProcessor* GrMeshTestProcessor::createGLSLInstance(const GrShaderCaps&) const { |
| 371 | return new GLSLMeshTestProcessor; |
| 372 | } |
| 373 | |
| 374 | //////////////////////////////////////////////////////////////////////////////////////////////////// |
| 375 | |
| 376 | template<typename T> |
| 377 | sk_sp<const GrBuffer> DrawMeshHelper::makeVertexBuffer(const T* data, int count) { |
| 378 | return sk_sp<const GrBuffer>( |
| 379 | fState->resourceProvider()->createBuffer( |
| 380 | count * sizeof(T), kVertex_GrBufferType, kDynamic_GrAccessPattern, |
| 381 | GrResourceProvider::kNoPendingIO_Flag | |
| 382 | GrResourceProvider::kRequireGpuMemory_Flag, data)); |
| 383 | } |
| 384 | |
| 385 | sk_sp<const GrBuffer> DrawMeshHelper::getIndexBuffer() { |
| 386 | GR_DEFINE_STATIC_UNIQUE_KEY(gIndexBufferKey); |
Brian Salomon | d28a79d | 2017-10-16 13:01:07 -0400 | [diff] [blame] | 387 | return fState->resourceProvider()->findOrCreatePatternedIndexBuffer( |
| 388 | kIndexPattern, 6, kIndexPatternRepeatCount, 4, gIndexBufferKey); |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 389 | } |
| 390 | |
| 391 | void DrawMeshHelper::drawMesh(const GrMesh& mesh) { |
Robert Phillips | 2890fbf | 2017-07-26 15:48:41 -0400 | [diff] [blame] | 392 | GrRenderTargetProxy* proxy = fState->drawOpArgs().fProxy; |
Brian Salomon | d818ebf | 2018-07-02 14:08:49 +0000 | [diff] [blame] | 393 | GrPipeline pipeline(proxy, GrPipeline::ScissorState::kDisabled, SkBlendMode::kSrc); |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 394 | GrMeshTestProcessor mtp(mesh.isInstanced(), mesh.hasVertexData()); |
Brian Salomon | 4934890 | 2018-06-26 09:12:38 -0400 | [diff] [blame] | 395 | fState->rtCommandBuffer()->draw(mtp, pipeline, nullptr, nullptr, &mesh, 1, |
Greg Daniel | 500d58b | 2017-08-24 15:59:33 -0400 | [diff] [blame] | 396 | SkRect::MakeIWH(kImageWidth, kImageHeight)); |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 397 | } |
| 398 | |
Robert Phillips | 88a32ef | 2018-06-07 11:05:56 -0400 | [diff] [blame] | 399 | static void run_test(GrContext* context, const char* testName, skiatest::Reporter* reporter, |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 400 | const sk_sp<GrRenderTargetContext>& rtc, const SkBitmap& gold, |
| 401 | std::function<void(DrawMeshHelper*)> testFn) { |
| 402 | const int w = gold.width(), h = gold.height(), rowBytes = gold.rowBytes(); |
| 403 | const uint32_t* goldPx = reinterpret_cast<const uint32_t*>(gold.getPixels()); |
| 404 | if (h != rtc->height() || w != rtc->width()) { |
| 405 | ERRORF(reporter, "[%s] expectation and rtc not compatible (?).", testName); |
| 406 | return; |
| 407 | } |
| 408 | if (sizeof(uint32_t) * kImageWidth != gold.rowBytes()) { |
| 409 | ERRORF(reporter, "unexpected row bytes in gold image.", testName); |
| 410 | return; |
| 411 | } |
| 412 | |
| 413 | SkAutoSTMalloc<kImageHeight * kImageWidth, uint32_t> resultPx(h * rowBytes); |
Chris Dalton | 344e903 | 2017-12-11 15:42:09 -0700 | [diff] [blame] | 414 | rtc->clear(nullptr, 0xbaaaaaad, GrRenderTargetContext::CanClearFullscreen::kYes); |
Robert Phillips | 88a32ef | 2018-06-07 11:05:56 -0400 | [diff] [blame] | 415 | rtc->priv().testingOnly_addDrawOp(GrMeshTestOp::Make(context, testFn)); |
Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 416 | rtc->readPixels(gold.info(), resultPx, rowBytes, 0, 0, 0); |
| 417 | for (int y = 0; y < h; ++y) { |
| 418 | for (int x = 0; x < w; ++x) { |
| 419 | uint32_t expected = goldPx[y * kImageWidth + x]; |
| 420 | uint32_t actual = resultPx[y * kImageWidth + x]; |
| 421 | if (expected != actual) { |
| 422 | ERRORF(reporter, "[%s] pixel (%i,%i): got 0x%x expected 0x%x", |
| 423 | testName, x, y, actual, expected); |
| 424 | return; |
| 425 | } |
| 426 | } |
| 427 | } |
| 428 | } |