skia2/gm/blurpositioning.cpp
Ben Wagner 6a34f3a0c7 IWYU for gms starting with 'b'.
Change-Id: I34ded4a4b9c4600eaf801eec121ca851e04a6c23
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/211586
Commit-Queue: Mike Klein <mtklein@google.com>
Reviewed-by: Herb Derby <herb@google.com>
Reviewed-by: Mike Klein <mtklein@google.com>
2019-05-01 18:02:14 +00:00

45 lines
1.3 KiB
C++

/*
* Copyright 2017 Google Inc.
*
* 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/SkColor.h"
#include "include/core/SkImageFilter.h"
#include "include/core/SkPaint.h"
#include "include/core/SkRect.h"
#include "include/core/SkScalar.h"
#include "include/effects/SkBlurImageFilter.h"
#include <initializer_list>
// For all sigma, the black box should be centered in the red outline. For small sigma,
// the rectangle is not blurred, but still must be centered properly.
DEF_SIMPLE_GM(check_small_sigma_offset, canvas, 200, 1200) {
for (auto sigma : {0.0, 0.1, 0.2, 0.3, 0.4, 0.6, 0.8, 1.0, 1.2}) {
// border calculation from SkBlurImageFilter
int border = SkScalarCeilToInt(sigma * 3);
SkRect r = SkRect::MakeXYWH(50, 50, 100, 50);
SkRect b = r.makeOutset(border + 1, border + 1);
b.inset(0.5f, 0.5f);
SkPaint p;
p.setColor(SK_ColorRED);
p.setStyle(SkPaint::Style::kStroke_Style);
canvas->drawRect(b, p);
p.reset();
p.setColor(SK_ColorBLACK);
p.setImageFilter(SkBlurImageFilter::Make(sigma, sigma, nullptr));
canvas->drawRect(r, p);
canvas->translate(0, 100);
}
}