ba70138477
Bug: skia:11837 Change-Id: I150d9b3debd3ebc7885720a5a287a89bf0e3f0de Reviewed-on: https://skia-review.googlesource.com/c/skia/+/425019 Reviewed-by: Greg Daniel <egdaniel@google.com> Commit-Queue: Robert Phillips <robertphillips@google.com>
33 lines
1.0 KiB
C++
33 lines
1.0 KiB
C++
/*
|
|
* 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 "src/gpu/GrFragmentProcessor.h"
|
|
#include "src/gpu/GrSurfaceDrawContext.h"
|
|
#include "src/gpu/SkGr.h"
|
|
#include "src/gpu/effects/GrTextureEffect.h"
|
|
#include "tools/Resources.h"
|
|
|
|
DEF_SIMPLE_GPU_GM(swizzle, rContext, sdc, canvas, 512, 512) {
|
|
SkBitmap bmp;
|
|
GetResourceAsBitmap("images/mandrill_512_q075.jpg", &bmp);
|
|
auto view = std::get<0>(GrMakeCachedBitmapProxyView(rContext, bmp, 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"));
|
|
|
|
sdc->fillWithFP(std::move(fp));
|
|
}
|