mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 15:45:38 +00:00
391725b9d0
Merge package opconsts into ops as well; it only existed to break import cycles. Signed-off-by: Elias Naur <mail@eliasnaur.com>
32 lines
581 B
Go
32 lines
581 B
Go
// SPDX-License-Identifier: Unlicense OR MIT
|
|
|
|
// Package profiles provides access to rendering
|
|
// profiles.
|
|
package profile
|
|
|
|
import (
|
|
"gioui.org/internal/ops"
|
|
"gioui.org/io/event"
|
|
"gioui.org/op"
|
|
)
|
|
|
|
// Op registers a handler for receiving
|
|
// Events.
|
|
type Op struct {
|
|
Tag event.Tag
|
|
}
|
|
|
|
// Event contains profile data from a single
|
|
// rendered frame.
|
|
type Event struct {
|
|
// Timings. Very likely to change.
|
|
Timings string
|
|
}
|
|
|
|
func (p Op) Add(o *op.Ops) {
|
|
data := o.Internal.Write1(ops.TypeProfileLen, p.Tag)
|
|
data[0] = byte(ops.TypeProfile)
|
|
}
|
|
|
|
func (p Event) ImplementsEvent() {}
|