diff options
| author | Ray <[email protected]> | 2023-11-02 18:12:22 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2023-11-02 18:12:22 +0100 |
| commit | b40f93b9e35ca8b2aa2e897eadb90187c2f93d4a (patch) | |
| tree | 5a3f9b48e1ba35dcf7da0acb0238c431b186dfc3 | |
| parent | 01bbd425196631ea16e3c8fd4666f801fe8e4692 (diff) | |
| download | raylib-b40f93b9e35ca8b2aa2e897eadb90187c2f93d4a.tar.gz raylib-b40f93b9e35ca8b2aa2e897eadb90187c2f93d4a.zip | |
Comments tweaks
| -rw-r--r-- | examples/Makefile | 32 | ||||
| -rw-r--r-- | src/Makefile | 32 | ||||
| -rw-r--r-- | src/platforms/rcore_desktop.c | 2 | ||||
| -rw-r--r-- | src/platforms/rcore_desktop_sdl.c | 3 | ||||
| -rw-r--r-- | src/platforms/rcore_drm.c | 4 | ||||
| -rw-r--r-- | src/rcore.c | 32 |
6 files changed, 52 insertions, 53 deletions
diff --git a/examples/Makefile b/examples/Makefile index fe0ee9fb..e126ab60 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -4,22 +4,22 @@ # # This file supports building raylib examples for the following platforms: # -# - PLATFORM_DESKTOP (GLFW backend): -# > Windows (Win32, Win64) -# > Linux (X11/Wayland desktop mode) -# > macOS/OSX (x64, arm64) -# > FreeBSD, OpenBSD, NetBSD, DragonFly (X11 desktop) -# - PLATFORM_DESKTOP_SDL (SDL backend): -# > Windows (Win32, Win64) -# > Linux (X11/Wayland desktop mode) -# > Others (not tested) -# - PLATFORM_WEB: -# > HTML5 (WebAssembly) -# - PLATFORM_DRM: -# > Raspberry Pi 0-5 (no X11/Wayland) -# > Linux native mode (KMS driver) -# - PLATFORM_ANDROID: -# > Android (ARM, ARM64) +# > PLATFORM_DESKTOP (GLFW backend): +# - Windows (Win32, Win64) +# - Linux (X11/Wayland desktop mode) +# - macOS/OSX (x64, arm64) +# - FreeBSD, OpenBSD, NetBSD, DragonFly (X11 desktop) +# > PLATFORM_DESKTOP_SDL (SDL backend): +# - Windows (Win32, Win64) +# - Linux (X11/Wayland desktop mode) +# - Others (not tested) +# > PLATFORM_WEB: +# - HTML5 (WebAssembly) +# > PLATFORM_DRM: +# - Raspberry Pi 0-5 (DRM/KMS) +# - Linux DRM subsystem (KMS mode) +# > PLATFORM_ANDROID: +# - Android (ARM, ARM64) # # Copyright (c) 2013-2023 Ramon Santamaria (@raysan5) # diff --git a/src/Makefile b/src/Makefile index 2406588b..7bcece7c 100644 --- a/src/Makefile +++ b/src/Makefile @@ -4,22 +4,22 @@ # # This file supports building raylib library for the following platforms: # -# - PLATFORM_DESKTOP (GLFW backend): -# > Windows (Win32, Win64) -# > Linux (X11/Wayland desktop mode) -# > macOS/OSX (x64, arm64) -# > FreeBSD, OpenBSD, NetBSD, DragonFly (X11 desktop) -# - PLATFORM_DESKTOP_SDL (SDL backend): -# > Windows (Win32, Win64) -# > Linux (X11/Wayland desktop mode) -# > Others (not tested) -# - PLATFORM_WEB: -# > HTML5 (WebAssembly) -# - PLATFORM_DRM: -# > Raspberry Pi 0-5 (no X11/Wayland) -# > Linux native mode (KMS driver) -# - PLATFORM_ANDROID: -# > Android (ARM, ARM64) +# > PLATFORM_DESKTOP (GLFW backend): +# - Windows (Win32, Win64) +# - Linux (X11/Wayland desktop mode) +# - macOS/OSX (x64, arm64) +# - FreeBSD, OpenBSD, NetBSD, DragonFly (X11 desktop) +# > PLATFORM_DESKTOP_SDL (SDL backend): +# - Windows (Win32, Win64) +# - Linux (X11/Wayland desktop mode) +# - Others (not tested) +# > PLATFORM_WEB: +# - HTML5 (WebAssembly) +# > PLATFORM_DRM: +# - Raspberry Pi 0-5 (DRM/KMS) +# - Linux DRM subsystem (KMS mode) +# > PLATFORM_ANDROID: +# - Android (ARM, ARM64) # # Many thanks to Milan Nikolic (@gen2brain) for implementing Android platform pipeline. # Many thanks to Emanuele Petriglia for his contribution on GNU/Linux pipeline. diff --git a/src/platforms/rcore_desktop.c b/src/platforms/rcore_desktop.c index 3d38dc89..426d9fc0 100644 --- a/src/platforms/rcore_desktop.c +++ b/src/platforms/rcore_desktop.c @@ -6,7 +6,7 @@ * - Windows (Win32, Win64) * - Linux (X11/Wayland desktop mode) * - FreeBSD, OpenBSD, NetBSD, DragonFly (X11 desktop) -* - OSX/macOS +* - OSX/macOS (x64, arm64) * * LIMITATIONS: * - Limitation 01 diff --git a/src/platforms/rcore_desktop_sdl.c b/src/platforms/rcore_desktop_sdl.c index 91442d8e..87ceacb8 100644 --- a/src/platforms/rcore_desktop_sdl.c +++ b/src/platforms/rcore_desktop_sdl.c @@ -5,8 +5,7 @@ * PLATFORM: DESKTOP: SDL * - Windows (Win32, Win64) * - Linux (X11/Wayland desktop mode) -* - FreeBSD, OpenBSD, NetBSD, DragonFly (X11 desktop) -* - OSX/macOS (x64, arm64) +* - Others (not tested) * * LIMITATIONS: * - Limitation 01 diff --git a/src/platforms/rcore_drm.c b/src/platforms/rcore_drm.c index ac5a1b6c..7bdc2d00 100644 --- a/src/platforms/rcore_drm.c +++ b/src/platforms/rcore_drm.c @@ -3,8 +3,8 @@ * rcore_drm - Functions to manage window, graphics device and inputs * * PLATFORM: DRM -* - Raspberry Pi 0-5 (native mode) -* - Linux native mode (KMS driver) +* - Raspberry Pi 0-5 (DRM/KMS) +* - Linux DRM subsystem (KMS mode) * * LIMITATIONS: * - Most of the window/monitor functions are not implemented (not required) diff --git a/src/rcore.c b/src/rcore.c index d4e2573b..e4d8eae5 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -3,22 +3,22 @@ * rcore - Window/display management, Graphic device/context management and input management * * PLATFORMS SUPPORTED: -* - PLATFORM_DESKTOP (GLFW backend): -* > Windows (Win32, Win64) -* > Linux (X11/Wayland desktop mode) -* > macOS/OSX (x64, arm64) -* > FreeBSD, OpenBSD, NetBSD, DragonFly (X11 desktop) -* - PLATFORM_DESKTOP_SDL (SDL backend): -* > Windows (Win32, Win64) -* > Linux (X11/Wayland desktop mode) -* > Others (not tested) -* - PLATFORM_WEB: -* > HTML5 (WebAssembly) -* - PLATFORM_DRM: -* > Raspberry Pi 0-5 -* > Linux native mode (KMS driver) -* - PLATFORM_ANDROID: -* > Android (ARM, ARM64) +* > PLATFORM_DESKTOP (GLFW backend): +* - Windows (Win32, Win64) +* - Linux (X11/Wayland desktop mode) +* - macOS/OSX (x64, arm64) +* - FreeBSD, OpenBSD, NetBSD, DragonFly (X11 desktop) +* > PLATFORM_DESKTOP_SDL (SDL backend): +* - Windows (Win32, Win64) +* - Linux (X11/Wayland desktop mode) +* - Others (not tested) +* > PLATFORM_WEB: +* - HTML5 (WebAssembly) +* > PLATFORM_DRM: +* - Raspberry Pi 0-5 (DRM/KMS) +* - Linux DRM subsystem (KMS mode) +* > PLATFORM_ANDROID: +* - Android (ARM, ARM64) * * CONFIGURATION: * #define SUPPORT_DEFAULT_FONT (default) |
