/* * Copyright 2015 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "GrDrawAtlasOp.h" #include "GrDrawOpTest.h" #include "GrOpFlushState.h" #include "SkGr.h" #include "SkRSXform.h" #include "SkRandom.h" void GrDrawAtlasOp::applyPipelineOptimizations(const GrPipelineOptimizations& optimizations) { SkASSERT(fGeoData.count() == 1); if (optimizations.getOverrideColorIfSet(&fGeoData[0].fColor) && fHasColors) { size_t vertexStride = sizeof(SkPoint) + sizeof(SkPoint) + (this->hasColors() ? sizeof(GrColor) : 0); uint8_t* currVertex = fGeoData[0].fVerts.begin(); for (int i = 0; i < 4 * fQuadCount; ++i) { *(reinterpret_cast(currVertex + sizeof(SkPoint))) = fGeoData[0].fColor; currVertex += vertexStride; } } fColor = fGeoData[0].fColor; // We'd like to assert this, but we can't because of GLPrograms test // SkASSERT(init.readsLocalCoords()); } static sk_sp make_gp(bool hasColors, GrColor color, const SkMatrix& viewMatrix) { using namespace GrDefaultGeoProcFactory; Color gpColor(color); if (hasColors) { gpColor.fType = Color::kPremulGrColorAttribute_Type; } return GrDefaultGeoProcFactory::Make(gpColor, Coverage::kSolid_Type, LocalCoords::kHasExplicit_Type, viewMatrix); } void GrDrawAtlasOp::onPrepareDraws(Target* target) const { // Setup geometry processor sk_sp gp(make_gp(this->hasColors(), this->color(), this->viewMatrix())); int instanceCount = fGeoData.count(); size_t vertexStride = gp->getVertexStride(); SkASSERT(vertexStride == sizeof(SkPoint) + sizeof(SkPoint) + (this->hasColors() ? sizeof(GrColor) : 0)); QuadHelper helper; int numQuads = this->quadCount(); void* verts = helper.init(target, vertexStride, numQuads); if (!verts) { SkDebugf("Could not allocate vertices\n"); return; } uint8_t* vertPtr = reinterpret_cast(verts); for (int i = 0; i < instanceCount; i++) { const Geometry& args = fGeoData[i]; size_t allocSize = args.fVerts.count(); memcpy(vertPtr, args.fVerts.begin(), allocSize); vertPtr += allocSize; } helper.recordDraw(target, gp.get()); } GrDrawAtlasOp::GrDrawAtlasOp(GrColor color, const SkMatrix& viewMatrix, int spriteCount, const SkRSXform* xforms, const SkRect* rects, const SkColor* colors) : INHERITED(ClassID()) { SkASSERT(xforms); SkASSERT(rects); fViewMatrix = viewMatrix; Geometry& installedGeo = fGeoData.push_back(); installedGeo.fColor = color; // Figure out stride and offsets // Order within the vertex is: position [color] texCoord size_t texOffset = sizeof(SkPoint); size_t vertexStride = 2 * sizeof(SkPoint); fHasColors = SkToBool(colors); if (colors) { texOffset += sizeof(GrColor); vertexStride += sizeof(GrColor); } // Compute buffer size and alloc buffer fQuadCount = spriteCount; int allocSize = static_cast(4 * vertexStride * spriteCount); installedGeo.fVerts.reset(allocSize); uint8_t* currVertex = installedGeo.fVerts.begin(); SkRect bounds; bounds.setLargestInverted(); int paintAlpha = GrColorUnpackA(installedGeo.fColor); for (int spriteIndex = 0; spriteIndex < spriteCount; ++spriteIndex) { // Transform rect SkPoint quad[4]; const SkRect& currRect = rects[spriteIndex]; xforms[spriteIndex].toQuad(currRect.width(), currRect.height(), quad); // Copy colors if necessary if (colors) { // convert to GrColor SkColor color = colors[spriteIndex]; if (paintAlpha != 255) { color = SkColorSetA(color, SkMulDiv255Round(SkColorGetA(color), paintAlpha)); } GrColor grColor = SkColorToPremulGrColor(color); *(reinterpret_cast(currVertex + sizeof(SkPoint))) = grColor; *(reinterpret_cast(currVertex + vertexStride + sizeof(SkPoint))) = grColor; *(reinterpret_cast(currVertex + 2 * vertexStride + sizeof(SkPoint))) = grColor; *(reinterpret_cast(currVertex + 3 * vertexStride + sizeof(SkPoint))) = grColor; } // Copy position and uv to verts *(reinterpret_cast(currVertex)) = quad[0]; *(reinterpret_cast(currVertex + texOffset)) = SkPoint::Make(currRect.fLeft, currRect.fTop); bounds.growToInclude(quad[0].fX, quad[0].fY); currVertex += vertexStride; *(reinterpret_cast(currVertex)) = quad[1]; *(reinterpret_cast(currVertex + texOffset)) = SkPoint::Make(currRect.fRight, currRect.fTop); bounds.growToInclude(quad[1].fX, quad[1].fY); currVertex += vertexStride; *(reinterpret_cast(currVertex)) = quad[2]; *(reinterpret_cast(currVertex + texOffset)) = SkPoint::Make(currRect.fRight, currRect.fBottom); bounds.growToInclude(quad[2].fX, quad[2].fY); currVertex += vertexStride; *(reinterpret_cast(currVertex)) = quad[3]; *(reinterpret_cast(currVertex + texOffset)) = SkPoint::Make(currRect.fLeft, currRect.fBottom); bounds.growToInclude(quad[3].fX, quad[3].fY); currVertex += vertexStride; } this->setTransformedBounds(bounds, viewMatrix, HasAABloat::kNo, IsZeroArea::kNo); } bool GrDrawAtlasOp::onCombineIfPossible(GrOp* t, const GrCaps& caps) { GrDrawAtlasOp* that = t->cast(); if (!GrPipeline::CanCombine(*this->pipeline(), this->bounds(), *that->pipeline(), that->bounds(), caps)) { return false; } // We currently use a uniform viewmatrix for this op. if (!this->viewMatrix().cheapEqualTo(that->viewMatrix())) { return false; } if (this->hasColors() != that->hasColors()) { return false; } if (!this->hasColors() && this->color() != that->color()) { return false; } fGeoData.push_back_n(that->fGeoData.count(), that->fGeoData.begin()); fQuadCount += that->quadCount(); this->joinBounds(*that); return true; } #if GR_TEST_UTILS static SkRSXform random_xform(SkRandom* random) { static const SkScalar kMinExtent = -100.f; static const SkScalar kMaxExtent = 100.f; static const SkScalar kMinScale = 0.1f; static const SkScalar kMaxScale = 100.f; static const SkScalar kMinRotate = -SK_ScalarPI; static const SkScalar kMaxRotate = SK_ScalarPI; SkRSXform xform = SkRSXform::MakeFromRadians(random->nextRangeScalar(kMinScale, kMaxScale), random->nextRangeScalar(kMinRotate, kMaxRotate), random->nextRangeScalar(kMinExtent, kMaxExtent), random->nextRangeScalar(kMinExtent, kMaxExtent), random->nextRangeScalar(kMinExtent, kMaxExtent), random->nextRangeScalar(kMinExtent, kMaxExtent)); return xform; } static SkRect random_texRect(SkRandom* random) { static const SkScalar kMinCoord = 0.0f; static const SkScalar kMaxCoord = 1024.f; SkRect texRect = SkRect::MakeLTRB(random->nextRangeScalar(kMinCoord, kMaxCoord), random->nextRangeScalar(kMinCoord, kMaxCoord), random->nextRangeScalar(kMinCoord, kMaxCoord), random->nextRangeScalar(kMinCoord, kMaxCoord)); texRect.sort(); return texRect; } static void randomize_params(uint32_t count, SkRandom* random, SkTArray* xforms, SkTArray* texRects, SkTArray* colors, bool hasColors) { for (uint32_t v = 0; v < count; v++) { xforms->push_back(random_xform(random)); texRects->push_back(random_texRect(random)); if (hasColors) { colors->push_back(GrRandomColor(random)); } } } DRAW_OP_TEST_DEFINE(GrDrawAtlasOp) { uint32_t spriteCount = random->nextRangeU(1, 100); SkTArray xforms(spriteCount); SkTArray texRects(spriteCount); SkTArray colors; bool hasColors = random->nextBool(); randomize_params(spriteCount, random, &xforms, &texRects, &colors, hasColors); SkMatrix viewMatrix = GrTest::TestMatrix(random); GrColor color = GrRandomColor(random); return GrDrawAtlasOp::Make(color, viewMatrix, spriteCount, xforms.begin(), texRects.begin(), hasColors ? colors.begin() : nullptr); } #endif