diff options
| author | raysan5 <[email protected]> | 2020-04-24 23:17:32 +0200 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2020-04-24 23:17:32 +0200 |
| commit | 8e59ecb50c0bbf2e46c7c6cf8deb09a3c31c42e7 (patch) | |
| tree | 3a01856965b676563596f4c21c584573ce8f4d30 /src/raylib.h | |
| parent | b73e7372d85af13f2f7cfba9cd1fe8bc72778082 (diff) | |
| download | raylib-8e59ecb50c0bbf2e46c7c6cf8deb09a3c31c42e7.tar.gz raylib-8e59ecb50c0bbf2e46c7c6cf8deb09a3c31c42e7.zip | |
ADDED: GetWindowScaleDPI()
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/raylib.h b/src/raylib.h index 627fa1d6..81e1a3d1 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -895,6 +895,7 @@ RLAPI int GetMonitorHeight(int monitor); // Get primary RLAPI int GetMonitorPhysicalWidth(int monitor); // Get primary monitor physical width in millimetres RLAPI int GetMonitorPhysicalHeight(int monitor); // Get primary monitor physical height in millimetres RLAPI Vector2 GetWindowPosition(void); // Get window position XY on monitor +RLAPI Vector2 GetWindowScaleDPI(void); // Get window scale DPI factor RLAPI const char *GetMonitorName(int monitor); // Get the human-readable, UTF-8 encoded name of the primary monitor RLAPI const char *GetClipboardText(void); // Get clipboard text content RLAPI void SetClipboardText(const char *text); // Set clipboard text content |
