Added renderer flags

This commit is contained in:
Robert 2020-06-18 17:22:24 +02:00
parent eae295a525
commit ed488eda85
2 changed files with 6 additions and 4 deletions

View file

@ -6,7 +6,8 @@
namespace sf
{
void IWindow::Create(Vector2u size, Vector2i position, std::string title, Uint32 flags /*= SDL_WINDOW_RESIZABLE*/)
void IWindow::Create(Vector2u size, Vector2i position, std::string title,
Uint32 windowFlags /*= SDL_WINDOW_RESIZABLE*/, Uint32 renderFlags /*= SDL_RENDERER_SOFTWARE*/)
{
// Check if SDL was initialized
Uint32 mask = SDL_WasInit(0);
@ -22,14 +23,14 @@ namespace sf
// Create SDL_Window
if (m_pWindow == nullptr)
{
m_pWindow = SDL_CreateWindow(title.c_str(), position.x, position.y, size.x, size.y, flags);
m_pWindow = SDL_CreateWindow(title.c_str(), position.x, position.y, size.x, size.y, windowFlags);
THROW_IF_NULLPTR(m_pWindow);
}
// Create SDL_Renderer
if (m_pRenderer == nullptr)
{
m_pRenderer = SDL_CreateRenderer(m_pWindow, -1, SDL_RENDERER_SOFTWARE);
m_pRenderer = SDL_CreateRenderer(m_pWindow, -1, renderFlags);
THROW_IF_NULLPTR(m_pRenderer);
}

View file

@ -18,7 +18,8 @@ namespace sf
class IWindow : public ICallback
{
public:
void Create(Vector2u size, Vector2i position, std::string title, Uint32 flags = SDL_WINDOW_RESIZABLE);
void Create(Vector2u size, Vector2i position, std::string title,
Uint32 windowFlags = SDL_WINDOW_RESIZABLE, Uint32 rendererFlags = SDL_RENDERER_SOFTWARE);
void Launch(bool threaded = false);
void Stop();