Skip to content

Commit

Permalink
(Draft) Add FLAG_FULLSCREEN_DESKTOP
Browse files Browse the repository at this point in the history
  • Loading branch information
M374LX committed Oct 8, 2023
1 parent fecf56e commit 12cc0d8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/raylib.h
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,8 @@ typedef enum {
FLAG_WINDOW_MOUSE_PASSTHROUGH = 0x00004000, // Set to support mouse passthrough, only supported when FLAG_WINDOW_UNDECORATED
FLAG_BORDERLESS_WINDOWED_MODE = 0x00008000, // Set to run program in borderless windowed mode
FLAG_MSAA_4X_HINT = 0x00000020, // Set to try enabling MSAA 4X
FLAG_INTERLACED_HINT = 0x00010000 // Set to try enabling interlaced video format (for V3D)
FLAG_INTERLACED_HINT = 0x00010000, // Set to try enabling interlaced video format (for V3D)
FLAG_FULLSCREEN_DESKTOP = 0x00020000 // Set to prevent a video mode change when toggling fullscreen mode
} ConfigFlags;

// Trace log level
Expand Down

0 comments on commit 12cc0d8

Please sign in to comment.