mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 07:35:40 +00:00
227c5a132b
A Path initialized with Begin should be ready to use with its pen at (0, 0). Make it so. Updates gio#311 Signed-off-by: Pierre Curto <pierre.curto@gmail.com>
64 lines
1.2 KiB
Go
64 lines
1.2 KiB
Go
// SPDX-License-Identifier: Unlicense OR MIT
|
|
|
|
package clip_test
|
|
|
|
import (
|
|
"image/color"
|
|
"testing"
|
|
|
|
"gioui.org/f32"
|
|
"gioui.org/gpu/headless"
|
|
"gioui.org/op"
|
|
"gioui.org/op/clip"
|
|
"gioui.org/op/paint"
|
|
)
|
|
|
|
func TestOpenPathOutlinePanic(t *testing.T) {
|
|
defer func() {
|
|
if err := recover(); err == nil {
|
|
t.Error("Outline of an open path didn't panic")
|
|
}
|
|
}()
|
|
var p clip.Path
|
|
p.Begin(new(op.Ops))
|
|
p.Line(f32.Pt(10, 10))
|
|
clip.Outline{Path: p.End()}.Op()
|
|
}
|
|
|
|
func TestPathBegin(t *testing.T) {
|
|
ops := new(op.Ops)
|
|
var p clip.Path
|
|
p.Begin(ops)
|
|
p.LineTo(f32.Point{10, 10})
|
|
p.Close()
|
|
stack := clip.Outline{Path: p.End()}.Op().Push(ops)
|
|
paint.Fill(ops, color.NRGBA{A: 255})
|
|
stack.Pop()
|
|
w := newWindow(t, 100, 100)
|
|
if w == nil {
|
|
return
|
|
}
|
|
// The following should not panic.
|
|
_ = w.Frame(ops)
|
|
}
|
|
|
|
func TestTransformChecks(t *testing.T) {
|
|
defer func() {
|
|
if err := recover(); err == nil {
|
|
t.Error("cross-macro Pop didn't panic")
|
|
}
|
|
}()
|
|
var ops op.Ops
|
|
st := clip.Op{}.Push(&ops)
|
|
op.Record(&ops)
|
|
st.Pop()
|
|
}
|
|
|
|
func newWindow(t testing.TB, width, height int) *headless.Window {
|
|
w, err := headless.NewWindow(width, height)
|
|
if err != nil {
|
|
t.Skipf("failed to create headless window, skipping: %v", err)
|
|
}
|
|
return w
|
|
}
|