mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-11 02:04:11 +00:00
proxy: Specify coordinates in fb_fill method
Signed-off-by: Akihiko Odaki <akihiko.odaki@gmail.com>
This commit is contained in:
parent
45ac8633bd
commit
3440aadc3c
1 changed files with 1 additions and 1 deletions
|
@ -1004,7 +1004,7 @@ class M1N1Proxy(Reloadable):
|
|||
return self.request(self.P_FB_BLIT, x, y, w, h, ptr, stride)
|
||||
def fb_unblit(self, x, y, w, h, ptr, stride):
|
||||
return self.request(self.P_FB_UNBLIT, x, y, w, h, ptr, stride)
|
||||
def fb_fill(self, color):
|
||||
def fb_fill(self, x, y, w, h, color):
|
||||
return self.request(self.P_FB_FILL, x, y, w, h, color)
|
||||
def fb_clear(self, color):
|
||||
return self.request(self.P_FB_CLEAR, color)
|
||||
|
|
Loading…
Reference in a new issue