File tree Expand file tree Collapse file tree 2 files changed +16
-16
lines changed
libs/B-luga-graphics/include/B-luga-graphics/Raylib/Graphics Expand file tree Collapse file tree 2 files changed +16
-16
lines changed Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff line change 1717namespace 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 {
You can’t perform that action at this time.
0 commit comments