Skip to content

Commit

Permalink
Comments tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
raysan5 committed Nov 2, 2023
1 parent 01bbd42 commit b40f93b
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 53 deletions.
32 changes: 16 additions & 16 deletions examples/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
#
Expand Down
32 changes: 16 additions & 16 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/platforms/rcore_desktop.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions src/platforms/rcore_desktop_sdl.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/platforms/rcore_drm.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
32 changes: 16 additions & 16 deletions src/rcore.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit b40f93b

Please sign in to comment.