Flutter Engine
The Flutter Engine
crbug_946965.cpp
Go to the documentation of this file.
1/*
2 * Copyright 2019 Google LLC
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "gm/gm.h"
12#include "include/core/SkRect.h"
13
14// Exposed a bug in ellipse rendering where the radii were wrong under 90 degree rotation.
15DEF_SIMPLE_GM(crbug_946965, canvas, 75, 150) {
17 paint.setAntiAlias(true);
18 canvas->translate(25, 80);
19 canvas->rotate(90.f);
20 canvas->scale(1.5, 1);
21 SkRRect rrect = SkRRect::MakeRectXY(SkRect::MakeLTRB(-20, -5, 20, 5), 10, 10);
22 canvas->drawRRect(rrect, paint);
23 canvas->translate(0, -20);
24 paint.setStrokeWidth(3.f);
26 canvas->drawRRect(rrect, paint);
27}
@ kStroke_Style
set to stroke geometry
Definition: SkPaint.h:194
static SkRRect MakeRectXY(const SkRect &rect, SkScalar xRad, SkScalar yRad)
Definition: SkRRect.h:180
const Paint & paint
Definition: color_source.cc:38
DEF_SIMPLE_GM(crbug_946965, canvas, 75, 150)
SkRRect rrect
Definition: SkRecords.h:232
static constexpr SkRect MakeLTRB(float l, float t, float r, float b)
Definition: SkRect.h:646