Update raylib.h : add experimental FLAG_RESCALE_CONTENT

This commit is contained in:
SuperUserNameMan 2024-07-17 18:09:22 +02:00 committed by GitHub
parent dc4c60bf62
commit 3c48b5c6a8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -546,7 +546,10 @@ typedef enum {
FLAG_WINDOW_MOUSE_PASSTHROUGH = 0x00004000, // Set to support mouse passthrough, only supported when FLAG_WINDOW_UNDECORATED 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_BORDERLESS_WINDOWED_MODE = 0x00008000, // Set to run program in borderless windowed mode
FLAG_MSAA_4X_HINT = 0x00000020, // Set to try enabling MSAA 4X 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)
// Experimental WIP flags :
FLAG_RESCALE_CONTENT = 0x10000000 // (GLFW desktop platform) Set to rescale the content of the window when the window is resized or fullscreened
} ConfigFlags; } ConfigFlags;
// Trace log level // Trace log level