mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-26 03:38:55 +01:00
Revert "internal/atlas: clarify the logic when to update usedAsDestination"
This reverts commit 2c9f5d9dad
.
Reason: test failures
This commit is contained in:
parent
2c9f5d9dad
commit
dcc8794883
@ -230,7 +230,6 @@ func (i *Image) paddingSize() int {
|
||||
|
||||
func (i *Image) ensureIsolatedFromSource(backends []*backend) {
|
||||
i.resetUsedAsSourceCount()
|
||||
imagesUsedAsDestination[i] = struct{}{}
|
||||
|
||||
if i.backend == nil {
|
||||
// `theSourceBackendsForOneFrame` already includes `backends`.
|
||||
@ -246,6 +245,8 @@ func (i *Image) ensureIsolatedFromSource(backends []*backend) {
|
||||
return
|
||||
}
|
||||
|
||||
imagesUsedAsDestination[i] = struct{}{}
|
||||
|
||||
// Check if i has the same backend as the given backends.
|
||||
var needsIsolation bool
|
||||
for _, b := range backends {
|
||||
|
Loading…
Reference in New Issue
Block a user