Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
skbug_4868.cpp
Go to the documentation of this file.
1/*
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
8#include "gm/gm.h"
11#include "include/core/SkRect.h"
12
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);
18 paint.setAntiAlias(true);
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}
@ kStroke_Style
set to stroke geometry
Definition SkPaint.h:194
const Paint & paint
#define DEF_SIMPLE_GM(NAME, CANVAS, W, H)
Definition gm.h:50
static constexpr SkRect MakeLTRB(float l, float t, float r, float b)
Definition SkRect.h:646