예제 #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)