internal/ops: hide Ops methods by converting them to package functions

Ops is in the internal package ops, but external clients can reach its
method through op.Ops.Internal. Hide them by converting them to internal
package functions.

Signed-off-by: Elias Naur <mail@eliasnaur.com>
This commit is contained in:
Elias Naur
2021-10-12 14:38:13 +02:00
parent 87d050bcc7
commit 0048f7be1d
9 changed files with 66 additions and 66 deletions
+10 -10
View File
@@ -40,7 +40,7 @@ func init() {
// Push saves the current clip state on the stack and updates the current
// state to the intersection of the current p.
func (p Op) Push(o *op.Ops) Stack {
id, macroID := o.Internal.PushOp(ops.ClipStack)
id, macroID := ops.PushOp(&o.Internal, ops.ClipStack)
p.add(o, true)
return Stack{ops: &o.Internal, id: id, macroID: macroID}
}
@@ -58,7 +58,7 @@ func (p Op) add(o *op.Ops, push bool) {
bo := binary.LittleEndian
if path.hasSegments {
data := o.Internal.Write(ops.TypePathLen)
data := ops.Write(&o.Internal, ops.TypePathLen)
data[0] = byte(ops.TypePath)
bo.PutUint64(data[1:], path.hash)
path.spec.Add(o)
@@ -72,13 +72,13 @@ func (p Op) add(o *op.Ops, push bool) {
bounds.Min.Y -= half
bounds.Max.X += half
bounds.Max.Y += half
data := o.Internal.Write(ops.TypeStrokeLen)
data := ops.Write(&o.Internal, ops.TypeStrokeLen)
data[0] = byte(ops.TypeStroke)
bo := binary.LittleEndian
bo.PutUint32(data[1:], math.Float32bits(p.width))
}
data := o.Internal.Write(ops.TypeClipLen)
data := ops.Write(&o.Internal, ops.TypeClipLen)
data[0] = byte(ops.TypeClip)
bo.PutUint32(data[1:], uint32(bounds.Min.X))
bo.PutUint32(data[5:], uint32(bounds.Min.Y))
@@ -93,8 +93,8 @@ func (p Op) add(o *op.Ops, push bool) {
}
func (s Stack) Pop() {
s.ops.PopOp(ops.ClipStack, s.id, s.macroID)
data := s.ops.Write(ops.TypePopClipLen)
ops.PopOp(s.ops, ops.ClipStack, s.id, s.macroID)
data := ops.Write(s.ops, ops.TypePopClipLen)
data[0] = byte(ops.TypePopClip)
}
@@ -137,7 +137,7 @@ func (p *Path) Begin(o *op.Ops) {
p.ops = &o.Internal
p.macro = op.Record(o)
// Write the TypeAux opcode
data := p.ops.Write(ops.TypeAuxLen)
data := ops.Write(p.ops, ops.TypeAuxLen)
data[0] = byte(ops.TypeAux)
}
@@ -180,7 +180,7 @@ func (p *Path) Line(delta f32.Point) {
// LineTo moves the pen to the absolute point specified, recording a line.
func (p *Path) LineTo(to f32.Point) {
data := p.ops.Write(scene.CommandSize + 4)
data := ops.Write(p.ops, scene.CommandSize+4)
bo := binary.LittleEndian
bo.PutUint32(data[0:], uint32(p.contour))
p.cmd(data[4:], scene.Line(p.pen, to))
@@ -248,7 +248,7 @@ func (p *Path) Quad(ctrl, to f32.Point) {
// QuadTo records a quadratic Bézier from the pen to end
// with the control point ctrl, with absolute coordinates.
func (p *Path) QuadTo(ctrl, to f32.Point) {
data := p.ops.Write(scene.CommandSize + 4)
data := ops.Write(p.ops, scene.CommandSize+4)
bo := binary.LittleEndian
bo.PutUint32(data[0:], uint32(p.contour))
p.cmd(data[4:], scene.Quad(p.pen, ctrl, to))
@@ -294,7 +294,7 @@ func (p *Path) CubeTo(ctrl0, ctrl1, to f32.Point) {
if ctrl0 == p.pen && ctrl1 == p.pen && to == p.pen {
return
}
data := p.ops.Write(scene.CommandSize + 4)
data := ops.Write(p.ops, scene.CommandSize+4)
bo := binary.LittleEndian
bo.PutUint32(data[0:], uint32(p.contour))
p.cmd(data[4:], scene.Cubic(p.pen, ctrl0, ctrl1, to))
+18 -18
View File
@@ -127,7 +127,7 @@ func Defer(o *Ops, c CallOp) {
if c.ops == nil {
return
}
state := o.Internal.Save()
state := ops.Save(&o.Internal)
// Wrap c in a macro that loads the saved state before execution.
m := Record(o)
state.Load()
@@ -135,7 +135,7 @@ func Defer(o *Ops, c CallOp) {
c = m.Stop()
// A Defer is recorded as a TypeDefer followed by the
// wrapped macro.
data := o.Internal.Write(ops.TypeDeferLen)
data := ops.Write(&o.Internal, ops.TypeDeferLen)
data[0] = byte(ops.TypeDefer)
c.Add(o)
}
@@ -159,10 +159,10 @@ func Save(o *Ops) SaveStack {
const inf = 1e6
bounds := image.Rectangle{Min: image.Pt(-inf, -inf), Max: image.Pt(inf, inf)}
{
st.clip.id, st.clip.macroID = o.Internal.PushOp(ops.ClipStack)
st.clip.id, st.clip.macroID = ops.PushOp(&o.Internal, ops.ClipStack)
// Push clip stack with no-op (infinite) clipping rect. Copied from clip.Op.Push.
bo := binary.LittleEndian
data := o.Internal.Write(ops.TypeClipLen)
data := ops.Write(&o.Internal, ops.TypeClipLen)
data[0] = byte(ops.TypeClip)
bo.PutUint32(data[1:], uint32(bounds.Min.X))
bo.PutUint32(data[5:], uint32(bounds.Min.Y))
@@ -176,8 +176,8 @@ func Save(o *Ops) SaveStack {
func (s SaveStack) Load() {
// Pop clip.
s.ops.PopOp(ops.ClipStack, s.clip.id, s.clip.macroID)
data := s.ops.Write(ops.TypePopClipLen)
ops.PopOp(s.ops, ops.ClipStack, s.clip.id, s.clip.macroID)
data := ops.Write(s.ops, ops.TypePopClipLen)
data[0] = byte(ops.TypePopClip)
s.trans.Pop()
@@ -186,18 +186,18 @@ func (s SaveStack) Load() {
// Reset the Ops, preparing it for re-use. Reset invalidates
// any recorded macros.
func (o *Ops) Reset() {
o.Internal.Reset()
ops.Reset(&o.Internal)
}
// Record a macro of operations.
func Record(o *Ops) MacroOp {
m := MacroOp{
ops: &o.Internal,
id: o.Internal.PushMacro(),
pc: o.Internal.PC(),
id: ops.PushMacro(&o.Internal),
pc: ops.PCFor(&o.Internal),
}
// Reserve room for a macro definition. Updated in Stop.
m.ops.Write(ops.TypeMacroLen)
ops.Write(m.ops, ops.TypeMacroLen)
m.fill()
return m
}
@@ -205,7 +205,7 @@ func Record(o *Ops) MacroOp {
// Stop ends a previously started recording and returns an
// operation for replaying it.
func (m MacroOp) Stop() CallOp {
m.ops.PopMacro(m.id)
ops.PopMacro(m.ops, m.id)
m.fill()
return CallOp{
ops: m.ops,
@@ -214,7 +214,7 @@ func (m MacroOp) Stop() CallOp {
}
func (m MacroOp) fill() {
m.ops.FillMacro(m.pc)
ops.FillMacro(m.ops, m.pc)
}
// Add the recorded list of operations. Add
@@ -224,11 +224,11 @@ func (c CallOp) Add(o *Ops) {
if c.ops == nil {
return
}
o.Internal.AddCall(c.ops, c.pc)
ops.AddCall(&o.Internal, c.ops, c.pc)
}
func (r InvalidateOp) Add(o *Ops) {
data := o.Internal.Write(ops.TypeRedrawLen)
data := ops.Write(&o.Internal, ops.TypeRedrawLen)
data[0] = byte(ops.TypeInvalidate)
bo := binary.LittleEndian
// UnixNano cannot represent the zero time.
@@ -253,7 +253,7 @@ func Affine(a f32.Affine2D) TransformOp {
// Push the current transformation to the stack and then multiply the
// current transformation with t.
func (t TransformOp) Push(o *Ops) TransformStack {
id, macroID := o.Internal.PushOp(ops.TransStack)
id, macroID := ops.PushOp(&o.Internal, ops.TransStack)
t.add(o, true)
return TransformStack{ops: &o.Internal, id: id, macroID: macroID}
}
@@ -265,7 +265,7 @@ func (t TransformOp) Add(o *Ops) {
}
func (t TransformOp) add(o *Ops, push bool) {
data := o.Internal.Write(ops.TypeTransformLen)
data := ops.Write(&o.Internal, ops.TypeTransformLen)
data[0] = byte(ops.TypeTransform)
if push {
data[1] = 1
@@ -281,7 +281,7 @@ func (t TransformOp) add(o *Ops, push bool) {
}
func (t TransformStack) Pop() {
t.ops.PopOp(ops.TransStack, t.id, t.macroID)
data := t.ops.Write(ops.TypePopTransformLen)
ops.PopOp(t.ops, ops.TransStack, t.id, t.macroID)
data := ops.Write(t.ops, ops.TypePopTransformLen)
data[0] = byte(ops.TypePopTransform)
}
+4 -4
View File
@@ -96,12 +96,12 @@ func (i ImageOp) Add(o *op.Ops) {
} else if i.src == nil || i.src.Bounds().Empty() {
return
}
data := o.Internal.Write2(ops.TypeImageLen, i.src, i.handle)
data := ops.Write2(&o.Internal, ops.TypeImageLen, i.src, i.handle)
data[0] = byte(ops.TypeImage)
}
func (c ColorOp) Add(o *op.Ops) {
data := o.Internal.Write(ops.TypeColorLen)
data := ops.Write(&o.Internal, ops.TypeColorLen)
data[0] = byte(ops.TypeColor)
data[1] = c.Color.R
data[2] = c.Color.G
@@ -110,7 +110,7 @@ func (c ColorOp) Add(o *op.Ops) {
}
func (c LinearGradientOp) Add(o *op.Ops) {
data := o.Internal.Write(ops.TypeLinearGradientLen)
data := ops.Write(&o.Internal, ops.TypeLinearGradientLen)
data[0] = byte(ops.TypeLinearGradient)
bo := binary.LittleEndian
@@ -130,7 +130,7 @@ func (c LinearGradientOp) Add(o *op.Ops) {
}
func (d PaintOp) Add(o *op.Ops) {
data := o.Internal.Write(ops.TypePaintLen)
data := ops.Write(&o.Internal, ops.TypePaintLen)
data[0] = byte(ops.TypePaint)
}