示例#1
0
 def put_surface(self, surface, x=0, y=0, use_mask=True):
     dc = wx.ClientDC(self)
     dc.DrawBitmap(copy_surface_to_bitmap(surface), x, y, use_mask)
示例#2
0
 def gc_draw_surface(self, surface, x=0, y=0, use_mask=True):
     self.dc.DrawBitmap(copy_surface_to_bitmap(surface), x, y, use_mask)
示例#3
0
文件: basic.py 项目: Scrik/sk1-wx
	def gc_draw_surface(self, surface, x=0, y=0, use_mask=True):
		self.dc.DrawBitmap(copy_surface_to_bitmap(surface), x, y, use_mask)