skia2/docs/examples/upscale_checkerboard.cpp
Mike Reed 5ec22387ff Simplify common case of linear filtering with no mips
Change-Id: I08b4a7bc088705b93a0aa680f6733d09c7ad23dd
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/354221
Reviewed-by: Brian Salomon <bsalomon@google.com>
Commit-Queue: Mike Reed <reed@google.com>
2021-01-15 16:47:16 +00:00

19 lines
732 B
C++

// Copyright 2020 Google LLC.
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
#include "tools/fiddle/examples.h"
REG_FIDDLE(upscale_checkerboard, 512, 512, false, 0) {
void draw(SkCanvas* canvas) {
SkPMColor p[] = {0xFFFFFFFF, 0xFF000000, 0xFF000000, 0xFFFFFFFF};
const auto info = SkImageInfo::MakeN32Premul(2, 2);
auto img = SkImage::MakeRasterCopy({info, p, 8});
SkPaint paint;
paint.setShader(img->makeShader(SkTileMode::kRepeat, SkTileMode::kRepeat,
SkSamplingOptions(SkFilterMode::kLinear)));
canvas->translate(20, 20);
canvas->scale(20, 20);
canvas->drawRect({0, 0, 20, 20}, paint);
}
} // END FIDDLE