We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bad8a5 commit 824784cCopy full SHA for 824784c
qml.go
@@ -28,7 +28,7 @@ type Engine struct {
28
values map[interface{}]*valueFold
29
destroyed bool
30
31
- imageProviders map[string]*func(providerId string, width, height int) image.Image
+ imageProviders map[string]*func(imageId string, width, height int) image.Image
32
}
33
34
var engines = make(map[unsafe.Pointer]*Engine)
@@ -42,7 +42,7 @@ func NewEngine() *Engine {
42
RunMain(func() {
43
engine.addr = C.newEngine(nil)
44
engine.engine = engine
45
- engine.imageProviders = make(map[string]*func(providerId string, width, height int) image.Image)
+ engine.imageProviders = make(map[string]*func(imageId string, width, height int) image.Image)
46
engines[engine.addr] = engine
47
stats.enginesAlive(+1)
48
})
0 commit comments