08a971126e
This is a reland of 9613060bdf
Original change's description:
> Implement batching for convex tessellated paths
>
> Moves the view matrix transformation onto the CPU (when local coords
> are not used), and plumbs a color attrib through the tessellation
> patches.
>
> Bug: skia:12524
> Change-Id: Ic4740048b4fc85cb18e7235a7754d57762db3daf
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/468997
> Reviewed-by: Michael Ludwig <michaelludwig@google.com>
> Commit-Queue: Chris Dalton <csmartdalton@google.com>
Bug: skia:12524
Change-Id: I77cd079d8921b224925bd2f7364c564822886d61
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/470436
Commit-Queue: Robert Phillips <robertphillips@google.com>
Auto-Submit: Chris Dalton <csmartdalton@google.com>
Reviewed-by: Robert Phillips <robertphillips@google.com>
60 lines
2.0 KiB
C++
60 lines
2.0 KiB
C++
/*
|
|
* Copyright 2021 Google LLC.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "gm/gm.h"
|
|
|
|
#include "include/core/SkCanvas.h"
|
|
#include "include/core/SkPaint.h"
|
|
#include "include/core/SkPath.h"
|
|
#include "include/gpu/GrContextOptions.h"
|
|
|
|
namespace skiagm {
|
|
|
|
class BatchedConvexPathsGM : public GM {
|
|
private:
|
|
SkString onShortName() override { return SkString("batchedconvexpaths"); }
|
|
SkISize onISize() override { return SkISize::Make(512, 512); }
|
|
|
|
void modifyGrContextOptions(GrContextOptions* ctxOptions) override {
|
|
// Ensure our paths don't go through the atlas path renderer.
|
|
ctxOptions->fGpuPathRenderers &= ~GpuPathRenderers::kAtlas;
|
|
}
|
|
|
|
DrawResult onDraw(SkCanvas* canvas, SkString* errorMsg) override {
|
|
canvas->clear(SK_ColorBLACK);
|
|
for (uint32_t i = 0; i < 10; ++i) {
|
|
SkAutoCanvasRestore acr(canvas, true);
|
|
|
|
int numPoints = (i + 3) * 3;
|
|
SkPath path;
|
|
path.moveTo(1, 0);
|
|
for (float j = 1; j < numPoints; j += 3) {
|
|
constexpr float k2PI = SK_ScalarPI * 2;
|
|
path.cubicTo(cosf(j/numPoints * k2PI), sinf(j/numPoints * k2PI),
|
|
cosf((j+1)/numPoints * k2PI), sinf((j+1)/numPoints * k2PI),
|
|
j+2 == numPoints ? 1 : cosf((j+2)/numPoints * k2PI),
|
|
j+2 == numPoints ? 0 : sinf((j+2)/numPoints * k2PI));
|
|
}
|
|
float scale = 256 - i*24;
|
|
canvas->translate(scale + (256 - scale) * .33f, scale + (256 - scale) * .33f);
|
|
canvas->scale(scale, scale);
|
|
|
|
SkPaint paint;
|
|
paint.setColor(((i + 123458383u) * 285018463u) | 0xff808080);
|
|
paint.setAlphaf(0.3f);
|
|
paint.setAntiAlias(true);
|
|
|
|
canvas->drawPath(path, paint);
|
|
}
|
|
return DrawResult::kOk;
|
|
}
|
|
};
|
|
|
|
DEF_GM( return new BatchedConvexPathsGM; )
|
|
|
|
} // namespace skiagm
|