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"
9 #include "include/core/SkCanvas.h"
10 #include "include/core/SkPaint.h"
11 #include "include/core/SkRRect.h"
12 #include "include/core/SkRect.h"
13 
14 // Exposed a bug in ellipse rendering where the radii were wrong under 90 degree rotation.
15 DEF_SIMPLE_GM(crbug_946965, canvas, 75, 150) {
16     SkPaint paint;
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);
25     paint.setStyle(SkPaint::kStroke_Style);
26     canvas->drawRRect(rrect, paint);
27 }
28