From 3dca86ea55d0af781f8d8dce14de04edb4b4ec35 Mon Sep 17 00:00:00 2001 From: Arnaud Valensi Date: Wed, 24 Nov 2021 10:00:01 +0100 Subject: [PATCH] Expose GetRenderWidth and GetRenderHeight functions --- src/raylib.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/raylib.h b/src/raylib.h index 7f05445bd..8f01e4834 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -928,6 +928,8 @@ RLAPI void SetWindowSize(int width, int height); // Set window RLAPI void *GetWindowHandle(void); // Get native window handle RLAPI int GetScreenWidth(void); // Get current screen width RLAPI int GetScreenHeight(void); // Get current screen height +RLAPI int GetRenderWidth(void); // Get current render width +RLAPI int GetRenderHeight(void); // Get current render height RLAPI int GetMonitorCount(void); // Get number of connected monitors RLAPI int GetCurrentMonitor(void); // Get current connected monitor RLAPI Vector2 GetMonitorPosition(int monitor); // Get specified monitor position