2020-10-12 17:39:45 +02:00
|
|
|
// Copyright 2020 The Ebiten Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package graphicscommand
|
|
|
|
|
2020-10-17 13:43:17 +02:00
|
|
|
var theThread Thread
|
2020-10-12 17:39:45 +02:00
|
|
|
|
2020-10-17 13:43:17 +02:00
|
|
|
type Thread interface {
|
2022-01-02 19:30:29 +01:00
|
|
|
Call(f func())
|
2020-10-17 13:43:17 +02:00
|
|
|
}
|
2020-10-12 17:39:45 +02:00
|
|
|
|
2021-01-19 18:21:51 +01:00
|
|
|
// SetMainThread must be called from the main thread (i.e, the goroutine where the thread is created).
|
2020-10-17 13:43:17 +02:00
|
|
|
func SetMainThread(thread Thread) {
|
2020-10-12 17:39:45 +02:00
|
|
|
theThread = thread
|
|
|
|
}
|
|
|
|
|
2022-01-02 19:30:29 +01:00
|
|
|
// RunOnMainThread calls f on the main thread, and returns an error if any.
|
|
|
|
func RunOnMainThread(f func()) {
|
2020-10-12 17:39:45 +02:00
|
|
|
// The thread is nil when 1) GOOS=js or 2) using golang.org/x/mobile/gl.
|
|
|
|
// When golang.org/x/mobile/gl is used, all the GL functions are called via Context, which already runs on an
|
|
|
|
// appropriate thread.
|
|
|
|
if theThread == nil {
|
2022-01-02 19:30:29 +01:00
|
|
|
f()
|
|
|
|
return
|
2020-10-12 17:39:45 +02:00
|
|
|
}
|
2022-01-02 19:30:29 +01:00
|
|
|
theThread.Call(f)
|
2020-10-12 17:39:45 +02:00
|
|
|
}
|