mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2025-01-11 19:48:54 +01:00
internal/ui: bug fix: compiie errors on mobiles and browsers
This commit is contained in:
parent
4a82a109be
commit
fa108ca717
@ -702,3 +702,9 @@ func (u *userInterfaceImpl) Input() *Input {
|
|||||||
func (u *userInterfaceImpl) Window() Window {
|
func (u *userInterfaceImpl) Window() Window {
|
||||||
return &nullWindow{}
|
return &nullWindow{}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (u *userInterfaceImpl) beginFrame() {
|
||||||
|
}
|
||||||
|
|
||||||
|
func (u *userInterfaceImpl) endFrame() {
|
||||||
|
}
|
||||||
|
@ -472,3 +472,9 @@ func (u *userInterfaceImpl) ScheduleFrame() {
|
|||||||
u.renderRequester.RequestRenderIfNeeded()
|
u.renderRequester.RequestRenderIfNeeded()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (u *userInterfaceImpl) beginFrame() {
|
||||||
|
}
|
||||||
|
|
||||||
|
func (u *userInterfaceImpl) endFrame() {
|
||||||
|
}
|
||||||
|
@ -144,3 +144,9 @@ func (*userInterfaceImpl) Input() *Input {
|
|||||||
func (*userInterfaceImpl) Window() Window {
|
func (*userInterfaceImpl) Window() Window {
|
||||||
return &nullWindow{}
|
return &nullWindow{}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (u *userInterfaceImpl) beginFrame() {
|
||||||
|
}
|
||||||
|
|
||||||
|
func (u *userInterfaceImpl) endFrame() {
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user