Pārlūkot izejas kodu

Resizeable graphics.

woollybah 6 gadi atpakaļ
vecāks
revīzija
92ea150dfa

+ 3 - 0
d3d9sdlgraphics.mod/d3d9sdlgraphics.bmx

@@ -282,6 +282,9 @@ Type TD3D9SDLGraphics Extends TGraphics
 		Next
 	End Method
 
+	Method Resize(width:Int, height:Int)
+		_g.Resize(width, height)
+	End Method
 	
 	Field _hwnd:Byte Ptr
 	

+ 3 - 0
sdlgraphics.mod/sdlgraphics.bmx

@@ -98,6 +98,9 @@ Type TSDLGraphics Extends TGraphics
 		End If
 	End Method
 
+	Method Resize(width:Int, height:Int) Override
+	End Method
+
 	Field _context:TGraphicsContext
 
 End Type