-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2580 from toaster/feature/geometry_add
geometry addition helpers
- Loading branch information
Showing
3 changed files
with
220 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
// +build !ci | ||
|
||
package fyne_test | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
|
||
"fyne.io/fyne/v2" | ||
) | ||
|
||
func BenchmarkPosition_Add(b *testing.B) { | ||
b.Run("Add()", benchmarkPositionAdd) | ||
b.Run("AddXY()", benchmarkPositionAddXY) | ||
} | ||
|
||
func BenchmarkPosition_Subtract(b *testing.B) { | ||
b.Run("Subtract()", benchmarkPositionSubtract) | ||
b.Run("SubtractXY()", benchmarkPositionSubtractXY) | ||
} | ||
|
||
func BenchmarkSize_Add(b *testing.B) { | ||
b.Run("Add()", benchmarkSizeAdd) | ||
b.Run("AddWidthHeight()", benchmarkSizeAddWidthHeight) | ||
} | ||
|
||
func BenchmarkSize_Subtract(b *testing.B) { | ||
b.Run("Subtract()", benchmarkSizeSubtract) | ||
b.Run("SubtractWidthHeight()", benchmarkSizeSubtractWidthHeight) | ||
} | ||
|
||
// This test prevents Position.Add to be simplified to `return p.AddXY(v.Components())` | ||
// because this slows down the speed by factor 10. | ||
func TestPosition_Add_Speed(t *testing.T) { | ||
add := testing.Benchmark(benchmarkPositionAdd) | ||
addXY := testing.Benchmark(benchmarkPositionAddXY) | ||
assert.Less(t, add.NsPerOp()/addXY.NsPerOp(), int64(5)) | ||
} | ||
|
||
// This test prevents Position.Subtract to be simplified to `return p.SubtractXY(v.Components())` | ||
// because this slows down the speed by factor 10. | ||
func TestPosition_Subtract_Speed(t *testing.T) { | ||
subtract := testing.Benchmark(benchmarkPositionSubtract) | ||
subtractXY := testing.Benchmark(benchmarkPositionSubtractXY) | ||
assert.Less(t, subtract.NsPerOp()/subtractXY.NsPerOp(), int64(5)) | ||
} | ||
|
||
// This test prevents Size.Add to be simplified to `return s.AddWidthHeight(v.Components())` | ||
// because this slows down the speed by factor 10. | ||
func TestSize_Add_Speed(t *testing.T) { | ||
add := testing.Benchmark(benchmarkSizeAdd) | ||
addWidthHeight := testing.Benchmark(benchmarkSizeAddWidthHeight) | ||
assert.Less(t, add.NsPerOp()/addWidthHeight.NsPerOp(), int64(5)) | ||
} | ||
|
||
// This test prevents Size.Subtract to be simplified to `return s.SubtractWidthHeight(v.Components())` | ||
// because this slows down the speed by factor 10. | ||
func TestSize_Subtract_Speed(t *testing.T) { | ||
subtract := testing.Benchmark(benchmarkSizeSubtract) | ||
subtractWidthHeight := testing.Benchmark(benchmarkSizeSubtractWidthHeight) | ||
assert.Less(t, subtract.NsPerOp()/subtractWidthHeight.NsPerOp(), int64(5)) | ||
} | ||
|
||
var benchmarkResult interface{} | ||
|
||
func benchmarkPositionAdd(b *testing.B) { | ||
pos := fyne.NewPos(10, 10) | ||
for n := 0; n < b.N; n++ { | ||
pos = pos.Add(fyne.NewPos(float32(n), float32(n))) | ||
} | ||
benchmarkResult = pos | ||
} | ||
|
||
func benchmarkPositionAddXY(b *testing.B) { | ||
pos := fyne.NewPos(10, 10) | ||
for n := 0; n < b.N; n++ { | ||
pos = pos.AddXY(float32(n), float32(n)) | ||
} | ||
benchmarkResult = pos | ||
} | ||
|
||
func benchmarkPositionSubtract(b *testing.B) { | ||
pos := fyne.NewPos(10, 10) | ||
for n := 0; n < b.N; n++ { | ||
pos = pos.Subtract(fyne.NewPos(float32(n), float32(n))) | ||
} | ||
benchmarkResult = pos | ||
} | ||
|
||
func benchmarkPositionSubtractXY(b *testing.B) { | ||
pos := fyne.NewPos(10, 10) | ||
for n := 0; n < b.N; n++ { | ||
pos = pos.SubtractXY(float32(n), float32(n)) | ||
} | ||
benchmarkResult = pos | ||
} | ||
|
||
func benchmarkSizeAdd(b *testing.B) { | ||
size := fyne.NewSize(10, 10) | ||
for n := 0; n < b.N; n++ { | ||
size = size.Add(fyne.NewPos(float32(n), float32(n))) | ||
} | ||
benchmarkResult = size | ||
} | ||
|
||
func benchmarkSizeAddWidthHeight(b *testing.B) { | ||
size := fyne.NewSize(10, 10) | ||
for n := 0; n < b.N; n++ { | ||
size = size.AddWidthHeight(float32(n), float32(n)) | ||
} | ||
benchmarkResult = size | ||
} | ||
|
||
func benchmarkSizeSubtract(b *testing.B) { | ||
size := fyne.NewSize(10, 10) | ||
for n := 0; n < b.N; n++ { | ||
size = size.Subtract(fyne.NewSize(float32(n), float32(n))) | ||
} | ||
benchmarkResult = size | ||
} | ||
|
||
func benchmarkSizeSubtractWidthHeight(b *testing.B) { | ||
size := fyne.NewSize(10, 10) | ||
for n := 0; n < b.N; n++ { | ||
size = size.SubtractWidthHeight(float32(n), float32(n)) | ||
} | ||
benchmarkResult = size | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters