mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-25 11:18:54 +01:00
parent
150b780ebe
commit
1ca0ecc10f
@ -37,5 +37,11 @@ func GetAt(x, y int) float64 {
|
|||||||
}
|
}
|
||||||
s := impl(x, y)
|
s := impl(x, y)
|
||||||
cache[pos{x, y}] = s
|
cache[pos{x, y}] = s
|
||||||
|
|
||||||
|
// TODO: Provide a way to invalidate the cache, or move the cache.
|
||||||
|
// The device scale can vary even for the same monitor.
|
||||||
|
// The only known case is when the application works on macOS, with OpenGL, with a wider screen mode,
|
||||||
|
// and in the fullscreen mode (#1573).
|
||||||
|
|
||||||
return s
|
return s
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user