소스 검색

Resizeable graphics.

woollybah 6 년 전
부모
커밋
92ea150dfa
2개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      d3d9sdlgraphics.mod/d3d9sdlgraphics.bmx
  2. 3 0
      sdlgraphics.mod/sdlgraphics.bmx

+ 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