mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-22 14:43:08 +00:00
m1n1.proxy: Fix typos in fb_blit/unblit
Signed-off-by: Hector Martin <marcan@marcan.st>
This commit is contained in:
parent
c835b1d2fe
commit
32515c936f
1 changed files with 2 additions and 2 deletions
|
@ -985,9 +985,9 @@ class M1N1Proxy(Reloadable):
|
|||
def fb_shutdown(self, restore_logo=True):
|
||||
return self.request(self.P_FB_SHUTDOWN, restore_logo)
|
||||
def fb_blit(self, x, y, w, h, ptr, stride):
|
||||
return self.request(self.P_FB_BLIP, x, y, w, h, ptr, stride)
|
||||
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_UNBLIP, x, y, w, h, ptr, stride)
|
||||
return self.request(self.P_FB_UNBLIT, x, y, w, h, ptr, stride)
|
||||
def fb_fill(self, color):
|
||||
return self.request(self.P_FB_FILL, x, y, w, h, color)
|
||||
def fb_clear(self, color):
|
||||
|
|
Loading…
Reference in a new issue