summaryrefslogtreecommitdiff
path: root/chromium/third_party/skia/gm/swizzle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/skia/gm/swizzle.cpp')
-rw-r--r--chromium/third_party/skia/gm/swizzle.cpp43
1 files changed, 43 insertions, 0 deletions
diff --git a/chromium/third_party/skia/gm/swizzle.cpp b/chromium/third_party/skia/gm/swizzle.cpp
new file mode 100644
index 00000000000..2d298b2d726
--- /dev/null
+++ b/chromium/third_party/skia/gm/swizzle.cpp
@@ -0,0 +1,43 @@
+/*
+ * Copyright 2019 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/SkImageInfo.h"
+#include "include/core/SkMatrix.h"
+#include "include/core/SkRect.h"
+#include "include/core/SkTypes.h"
+#include "include/gpu/GrContext.h"
+#include "src/gpu/GrBitmapTextureMaker.h"
+#include "src/gpu/GrContextPriv.h"
+#include "src/gpu/GrFragmentProcessor.h"
+#include "src/gpu/GrRenderTargetContext.h"
+#include "src/gpu/GrRenderTargetContextPriv.h"
+#include "src/gpu/ops/GrFillRectOp.h"
+#include "tools/Resources.h"
+#include "tools/ToolUtils.h"
+
+DEF_SIMPLE_GPU_GM(swizzle, ctx, rtCtx, canvas, 512, 512) {
+ SkRect bounds = SkRect::MakeIWH(512, 512);
+
+ SkBitmap bmp;
+ GetResourceAsBitmap("images/mandrill_512_q075.jpg", &bmp);
+ GrBitmapTextureMaker maker(ctx, bmp, GrImageTexGenPolicy::kDraw);
+ auto view = maker.view(GrMipMapped::kNo);
+ if (!view) {
+ return;
+ }
+ std::unique_ptr<GrFragmentProcessor> imgFP =
+ GrTextureEffect::Make(std::move(view), bmp.alphaType(), SkMatrix());
+ auto fp = GrFragmentProcessor::SwizzleOutput(std::move(imgFP), GrSwizzle("grb1"));
+
+ GrPaint grPaint;
+ grPaint.addColorFragmentProcessor(std::move(fp));
+
+ rtCtx->priv().testingOnly_addDrawOp(
+ GrFillRectOp::MakeNonAARect(ctx, std::move(grPaint), SkMatrix(), bounds));
+}