summaryrefslogtreecommitdiffhomepage
path: root/src/rcore_drm.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/rcore_drm.c')
-rw-r--r--src/rcore_drm.c60
1 files changed, 29 insertions, 31 deletions
diff --git a/src/rcore_drm.c b/src/rcore_drm.c
index aadf0f47..50e45c4a 100644
--- a/src/rcore_drm.c
+++ b/src/rcore_drm.c
@@ -442,55 +442,55 @@ bool IsWindowResized(void)
// Toggle fullscreen mode
void ToggleFullscreen(void)
{
- TRACELOG(LOG_WARNING, "ToggleFullscreen() not available on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "ToggleFullscreen() not available on target platform");
}
// Set window state: maximized, if resizable
void MaximizeWindow(void)
{
- TRACELOG(LOG_WARNING, "MaximizeWindow() not available on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "MaximizeWindow() not available on target platform");
}
// Set window state: minimized
void MinimizeWindow(void)
{
- TRACELOG(LOG_WARNING, "MinimizeWindow() not available on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "MinimizeWindow() not available on target platform");
}
// Set window state: not minimized/maximized
void RestoreWindow(void)
{
- TRACELOG(LOG_WARNING, "RestoreWindow() not available on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "RestoreWindow() not available on target platform");
}
// Toggle borderless windowed mode
void ToggleBorderlessWindowed(void)
{
- TRACELOG(LOG_WARNING, "ToggleBorderlessWindowed() not available on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "ToggleBorderlessWindowed() not available on target platform");
}
// Set window configuration state using flags
void SetWindowState(unsigned int flags)
{
- TRACELOG(LOG_WARNING, "SetWindowState() not available on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "SetWindowState() not available on target platform");
}
// Clear window configuration state flags
void ClearWindowState(unsigned int flags)
{
- TRACELOG(LOG_WARNING, "ClearWindowState() not available on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "ClearWindowState() not available on target platform");
}
// Set icon for window
void SetWindowIcon(Image image)
{
- TRACELOG(LOG_WARNING, "SetWindowIcon() not available on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "SetWindowIcon() not available on target platform");
}
// Set icon for window
void SetWindowIcons(Image *images, int count)
{
- TRACELOG(LOG_WARNING, "SetWindowIcons() not available on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "SetWindowIcons() not available on target platform");
}
// Set title for window
@@ -502,13 +502,13 @@ void SetWindowTitle(const char *title)
// Set window position on screen (windowed mode)
void SetWindowPosition(int x, int y)
{
- TRACELOG(LOG_WARNING, "SetWindowPosition() not available on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "SetWindowPosition() not available on target platform");
}
// Set monitor for the current window
void SetWindowMonitor(int monitor)
{
- TRACELOG(LOG_WARNING, "SetWindowMonitor() not available on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "SetWindowMonitor() not available on target platform");
}
// Set window minimum dimensions (FLAG_WINDOW_RESIZABLE)
@@ -528,74 +528,74 @@ void SetWindowMaxSize(int width, int height)
// Set window dimensions
void SetWindowSize(int width, int height)
{
- TRACELOG(LOG_WARNING, "SetWindowSize() not available on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "SetWindowSize() not available on target platform");
}
// Set window opacity, value opacity is between 0.0 and 1.0
void SetWindowOpacity(float opacity)
{
- TRACELOG(LOG_WARNING, "SetWindowOpacity() not available on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "SetWindowOpacity() not available on target platform");
}
// Set window focused
void SetWindowFocused(void)
{
- TRACELOG(LOG_WARNING, "SetWindowFocused() not available on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "SetWindowFocused() not available on target platform");
}
// Get native window handle
void *GetWindowHandle(void)
{
- TRACELOG(LOG_WARNING, "GetWindowHandle() not implemented on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "GetWindowHandle() not implemented on target platform");
return NULL;
}
// Get number of monitors
int GetMonitorCount(void)
{
- TRACELOG(LOG_WARNING, "GetMonitorCount() not implemented on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "GetMonitorCount() not implemented on target platform");
return 1;
}
// Get number of monitors
int GetCurrentMonitor(void)
{
- TRACELOG(LOG_WARNING, "GetCurrentMonitor() not implemented on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "GetCurrentMonitor() not implemented on target platform");
return 0;
}
// Get selected monitor position
Vector2 GetMonitorPosition(int monitor)
{
- TRACELOG(LOG_WARNING, "GetMonitorPosition() not implemented on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "GetMonitorPosition() not implemented on target platform");
return (Vector2){ 0, 0 };
}
// Get selected monitor width (currently used by monitor)
int GetMonitorWidth(int monitor)
{
- TRACELOG(LOG_WARNING, "GetMonitorWidth() not implemented on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "GetMonitorWidth() not implemented on target platform");
return 0;
}
// Get selected monitor height (currently used by monitor)
int GetMonitorHeight(int monitor)
{
- TRACELOG(LOG_WARNING, "GetMonitorHeight() not implemented on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "GetMonitorHeight() not implemented on target platform");
return 0;
}
// Get selected monitor physical width in millimetres
int GetMonitorPhysicalWidth(int monitor)
{
- TRACELOG(LOG_WARNING, "GetMonitorPhysicalWidth() not implemented on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "GetMonitorPhysicalWidth() not implemented on target platform");
return 0;
}
// Get selected monitor physical height in millimetres
int GetMonitorPhysicalHeight(int monitor)
{
- TRACELOG(LOG_WARNING, "GetMonitorPhysicalHeight() not implemented on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "GetMonitorPhysicalHeight() not implemented on target platform");
return 0;
}
@@ -615,7 +615,7 @@ int GetMonitorRefreshRate(int monitor)
// Get the human-readable, UTF-8 encoded name of the selected monitor
const char *GetMonitorName(int monitor)
{
- TRACELOG(LOG_WARNING, "GetMonitorName() not implemented on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "GetMonitorName() not implemented on target platform");
return "";
}
@@ -634,14 +634,14 @@ Vector2 GetWindowScaleDPI(void)
// Set clipboard text content
void SetClipboardText(const char *text)
{
- TRACELOG(LOG_WARNING, "SetClipboardText() not implemented on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "SetClipboardText() not implemented on target platform");
}
// Get clipboard text content
// NOTE: returned string is allocated and freed by GLFW
const char *GetClipboardText(void)
{
- TRACELOG(LOG_WARNING, "GetClipboardText() not implemented on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "GetClipboardText() not implemented on target platform");
return NULL;
}
@@ -729,7 +729,7 @@ double GetTime(void)
// Ref: https://github.com/raysan5/raylib/issues/686
void OpenURL(const char *url)
{
- TRACELOG(LOG_WARNING, "OpenURL() not implemented on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "OpenURL() not implemented on target platform");
}
//----------------------------------------------------------------------------------
@@ -770,7 +770,7 @@ int GetGamepadAxisCount(int gamepad)
// Set internal gamepad mappings
int SetGamepadMappings(const char *mappings)
{
- TRACELOG(LOG_WARNING, "SetGamepadMappings() not implemented on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "SetGamepadMappings() not implemented on target platform");
return 0;
}
@@ -818,7 +818,7 @@ float GetMouseWheelMove(void)
// Set mouse cursor
void SetMouseCursor(int cursor)
{
- TRACELOG(LOG_WARNING, "SetMouseCursor() not implemented on PLATFORM_DRM");
+ TRACELOG(LOG_WARNING, "SetMouseCursor() not implemented on target platform");
}
// Get touch position X for touch point 0 (relative to screen size)
@@ -897,8 +897,6 @@ void PollInputEvents(void)
for (int i = 0; i < MAX_TOUCH_POINTS; i++) CORE.Input.Touch.previousTouchState[i] = CORE.Input.Touch.currentTouchState[i];
// Reset touch positions
- // TODO: It resets on PLATFORM_WEB the mouse position and not filled again until a move-event,
- // so, if mouse is not moved it returns a (0, 0) position... this behaviour should be reviewed!
//for (int i = 0; i < MAX_TOUCH_POINTS; i++) CORE.Input.Touch.position[i] = (Vector2){ 0, 0 };
#if defined(SUPPORT_SSH_KEYBOARD_RPI)
@@ -1911,7 +1909,7 @@ static void *EventThread(void *arg)
if (CORE.Input.Touch.position[i].x >= 0) CORE.Input.Touch.pointCount++;
}
-#if defined(SUPPORT_GESTURES_SYSTEM) // PLATFORM_DRM
+#if defined(SUPPORT_GESTURES_SYSTEM)
if (gestureUpdate)
{
GestureEvent gestureEvent = { 0 };