blob: 24defc8063d28c44be49f0c83ee63bde92b2f349 [file] [log] [blame]
halcanary8e9f5e32016-02-24 15:46:46 -08001/*
2 * Copyright 2016 Google Inc.
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
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "gm/gm.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -04009#include "include/core/SkCanvas.h"
10#include "include/core/SkPaint.h"
11#include "include/core/SkRect.h"
halcanary8e9f5e32016-02-24 15:46:46 -080012
13// clipRect and drawLine should line up exactly when they use the same point.
14// When SkPDF rounds large floats, this doesn't always happen.
15DEF_SIMPLE_GM(skbug_4868, canvas, 32, 32) {
16 canvas->translate(-68.0f, -3378.0f);
17 SkPaint paint;
18 paint.setAntiAlias(true);
19 paint.setStyle(SkPaint::kStroke_Style);
20 canvas->scale(0.56692914f, 0.56692914f);
21 SkRect rc = SkRect::MakeLTRB(158.0f, 5994.80273f, 165.0f, 5998.80225f);
22 canvas->clipRect(rc);
23 canvas->clear(0xFFCECFCE);
24 canvas->drawLine(rc.left(), rc.top(), rc.right(), rc.bottom(), paint);
25 canvas->drawLine(rc.right(), rc.top(), rc.left(), rc.bottom(), paint);
26}