Skip to content

Commit 01750d2

Browse files
committed
Merge branch 'main' of github.com:X-R-G-B/B-luga
2 parents 136edcd + 8ea20cc commit 01750d2

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

libs/B-luga-graphics/include/B-luga-graphics/Raylib/Graphics/Graphics.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ namespace Raylib {
301301
InitWindow(width, height, title.c_str());
302302
}
303303

304-
static void setWindowSize(int width, int height)
304+
void Window::setWindowSize(int width, int height)
305305
{
306306
SetWindowSize(width, height);
307307
}

libs/B-luga-graphics/include/B-luga-graphics/Raylib/Graphics/Graphics.hpp

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,21 @@
1717
namespace Raylib {
1818

1919
enum class ConfigFlags : int {
20-
VSYNC_HINT ,
21-
FULLSCREEN_MODE ,
22-
WINDOW_RESIZABLE ,
23-
WINDOW_UNDECORATED ,
24-
WINDOW_HIDDEN ,
25-
WINDOW_MINIMIZED ,
26-
WINDOW_MAXIMIZED ,
27-
WINDOW_UNFOCUSED ,
28-
WINDOW_TOPMOST ,
29-
WINDOW_ALWAYS_RUN ,
30-
WINDOW_TRANSPARENT ,
31-
WINDOW_HIGHDPI ,
32-
WINDOW_MOUSE_PASSTHROUGH ,
33-
MSAA_4X_HINT ,
34-
INTERLACED_HINT ,
20+
VSYNC_HINT = 0x00000040 ,
21+
FULLSCREEN_MODE = 0x00000002,
22+
WINDOW_RESIZABLE = 0x00000004,
23+
WINDOW_UNDECORATED = 0x00000008 ,
24+
WINDOW_HIDDEN = 0x00000080 ,
25+
WINDOW_MINIMIZED = 0x00000200 ,
26+
WINDOW_MAXIMIZED = 0x00000400 ,
27+
WINDOW_UNFOCUSED = 0x00000800 ,
28+
WINDOW_TOPMOST = 0x00001000 ,
29+
WINDOW_ALWAYS_RUN = 0x00000100 ,
30+
WINDOW_TRANSPARENT = 0x00000010 ,
31+
WINDOW_HIGHDPI = 0x00002000 ,
32+
WINDOW_MOUSE_PASSTHROUGH = 0x00004000 ,
33+
MSAA_4X_HINT = 0x00000020 ,
34+
INTERLACED_HINT = 0x00010000 ,
3535
};
3636

3737
class Graphics {

0 commit comments

Comments
 (0)