summaryrefslogtreecommitdiff
path: root/Source/Asura.Engine/Window/Window.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Asura.Engine/Window/Window.h')
-rw-r--r--Source/Asura.Engine/Window/Window.h16
1 files changed, 12 insertions, 4 deletions
diff --git a/Source/Asura.Engine/Window/Window.h b/Source/Asura.Engine/Window/Window.h
index 3456d75..71aaf0e 100644
--- a/Source/Asura.Engine/Window/Window.h
+++ b/Source/Asura.Engine/Window/Window.h
@@ -12,21 +12,21 @@ namespace AsuraEngine
enum WindowStyle
{
-
+ WINDOW_STYLE_FULLSCREEN = 1 << 1,
};
///
/// ڣֶ֧രڡڱ༭Ҫ֧֣runnerֻҪһڡ
///
- class Window final : public RenderTarget
+ class Window : public RenderTarget
{
public:
- Window();
+ Window(WindowStyle style);
~Window();
- SDL_Window* GetSDLHandle();
+ SDL_Window* GetSDLWindowHandle();
void SetSize(uint width, uint height);
@@ -45,6 +45,14 @@ namespace AsuraEngine
///
void SwapRenderBuffer();
+ void Clear(const Color& col = Color::Black);
+
+ void Clear(const Math::Recti& quad, const Color& col = Color::Black);
+
+ void Draw(const Drawable* texture, const RenderState& state);
+
+ void Draw(const Drawable* texture, const Math::Recti& quad, const RenderState& state);
+
private:
///