2019-09-19 05:02:35 +02:00
|
|
|
// Copyright 2019 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 buffered
|
|
|
|
|
|
|
|
import (
|
|
|
|
"sync"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2019-09-26 20:12:21 +02:00
|
|
|
needsToDelayCommands = true
|
2019-09-19 05:02:35 +02:00
|
|
|
|
|
|
|
// delayedCommands represents a queue for image operations that are ordered before the game starts
|
|
|
|
// (BeginFrame). Before the game starts, the package shareable doesn't determine the minimum/maximum texture
|
|
|
|
// sizes (#879).
|
2019-09-26 17:37:31 +02:00
|
|
|
delayedCommands []func()
|
2019-09-19 05:02:35 +02:00
|
|
|
delayedCommandsM sync.Mutex
|
|
|
|
)
|
|
|
|
|
2019-09-26 20:12:21 +02:00
|
|
|
func flushDelayedCommands() {
|
2019-09-19 05:02:35 +02:00
|
|
|
delayedCommandsM.Lock()
|
|
|
|
defer delayedCommandsM.Unlock()
|
|
|
|
|
2019-09-26 20:12:21 +02:00
|
|
|
if !needsToDelayCommands {
|
|
|
|
return
|
2019-09-19 05:02:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, c := range delayedCommands {
|
2019-09-26 17:37:31 +02:00
|
|
|
c()
|
2019-09-19 05:02:35 +02:00
|
|
|
}
|
2019-09-26 17:34:55 +02:00
|
|
|
delayedCommands = delayedCommands[:0]
|
2019-09-26 20:12:21 +02:00
|
|
|
needsToDelayCommands = false
|
2019-09-19 05:02:35 +02:00
|
|
|
}
|