mirror of
https://github.com/love2d/love.git
synced 2026-08-15 15:51:12 +02:00
Allow disabling stencil capabilities for the main screen in love.window.setMode.
--HG-- branch : minor
This commit is contained in:
@@ -56,6 +56,8 @@ public:
|
||||
SETTING_FULLSCREEN_TYPE,
|
||||
SETTING_VSYNC,
|
||||
SETTING_MSAA,
|
||||
SETTING_STENCIL,
|
||||
SETTING_DEPTH,
|
||||
SETTING_RESIZABLE,
|
||||
SETTING_MIN_WIDTH,
|
||||
SETTING_MIN_HEIGHT,
|
||||
@@ -219,6 +221,8 @@ struct WindowSettings
|
||||
Window::FullscreenType fstype = Window::FULLSCREEN_DESKTOP;
|
||||
int vsync = 1;
|
||||
int msaa = 0;
|
||||
bool stencil = true;
|
||||
int depth = 0;
|
||||
bool resizable = false;
|
||||
int minwidth = 1;
|
||||
int minheight = 1;
|
||||
|
||||
Reference in New Issue
Block a user