proxy: Specify coordinates in fb_fill method

Signed-off-by: Akihiko Odaki <akihiko.odaki@gmail.com>
This commit is contained in:
Akihiko Odaki 2022-04-15 07:07:58 +09:00 committed by Hector Martin
parent 45ac8633bd
commit 3440aadc3c

View file

@ -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)