Comments tweaks

This commit is contained in:
Ray 2023-11-02 18:12:22 +01:00
parent 01bbd42519
commit b40f93b9e3
6 changed files with 52 additions and 53 deletions

View file

@ -4,22 +4,22 @@
# #
# This file supports building raylib examples for the following platforms: # This file supports building raylib examples for the following platforms:
# #
# - PLATFORM_DESKTOP (GLFW backend): # > PLATFORM_DESKTOP (GLFW backend):
# > Windows (Win32, Win64) # - Windows (Win32, Win64)
# > Linux (X11/Wayland desktop mode) # - Linux (X11/Wayland desktop mode)
# > macOS/OSX (x64, arm64) # - macOS/OSX (x64, arm64)
# > FreeBSD, OpenBSD, NetBSD, DragonFly (X11 desktop) # - FreeBSD, OpenBSD, NetBSD, DragonFly (X11 desktop)
# - PLATFORM_DESKTOP_SDL (SDL backend): # > PLATFORM_DESKTOP_SDL (SDL backend):
# > Windows (Win32, Win64) # - Windows (Win32, Win64)
# > Linux (X11/Wayland desktop mode) # - Linux (X11/Wayland desktop mode)
# > Others (not tested) # - Others (not tested)
# - PLATFORM_WEB: # > PLATFORM_WEB:
# > HTML5 (WebAssembly) # - HTML5 (WebAssembly)
# - PLATFORM_DRM: # > PLATFORM_DRM:
# > Raspberry Pi 0-5 (no X11/Wayland) # - Raspberry Pi 0-5 (DRM/KMS)
# > Linux native mode (KMS driver) # - Linux DRM subsystem (KMS mode)
# - PLATFORM_ANDROID: # > PLATFORM_ANDROID:
# > Android (ARM, ARM64) # - Android (ARM, ARM64)
# #
# Copyright (c) 2013-2023 Ramon Santamaria (@raysan5) # Copyright (c) 2013-2023 Ramon Santamaria (@raysan5)
# #

View file

@ -4,22 +4,22 @@
# #
# This file supports building raylib library for the following platforms: # This file supports building raylib library for the following platforms:
# #
# - PLATFORM_DESKTOP (GLFW backend): # > PLATFORM_DESKTOP (GLFW backend):
# > Windows (Win32, Win64) # - Windows (Win32, Win64)
# > Linux (X11/Wayland desktop mode) # - Linux (X11/Wayland desktop mode)
# > macOS/OSX (x64, arm64) # - macOS/OSX (x64, arm64)
# > FreeBSD, OpenBSD, NetBSD, DragonFly (X11 desktop) # - FreeBSD, OpenBSD, NetBSD, DragonFly (X11 desktop)
# - PLATFORM_DESKTOP_SDL (SDL backend): # > PLATFORM_DESKTOP_SDL (SDL backend):
# > Windows (Win32, Win64) # - Windows (Win32, Win64)
# > Linux (X11/Wayland desktop mode) # - Linux (X11/Wayland desktop mode)
# > Others (not tested) # - Others (not tested)
# - PLATFORM_WEB: # > PLATFORM_WEB:
# > HTML5 (WebAssembly) # - HTML5 (WebAssembly)
# - PLATFORM_DRM: # > PLATFORM_DRM:
# > Raspberry Pi 0-5 (no X11/Wayland) # - Raspberry Pi 0-5 (DRM/KMS)
# > Linux native mode (KMS driver) # - Linux DRM subsystem (KMS mode)
# - PLATFORM_ANDROID: # > PLATFORM_ANDROID:
# > Android (ARM, ARM64) # - Android (ARM, ARM64)
# #
# Many thanks to Milan Nikolic (@gen2brain) for implementing Android platform pipeline. # Many thanks to Milan Nikolic (@gen2brain) for implementing Android platform pipeline.
# Many thanks to Emanuele Petriglia for his contribution on GNU/Linux pipeline. # Many thanks to Emanuele Petriglia for his contribution on GNU/Linux pipeline.

View file

@ -6,7 +6,7 @@
* - Windows (Win32, Win64) * - Windows (Win32, Win64)
* - Linux (X11/Wayland desktop mode) * - Linux (X11/Wayland desktop mode)
* - FreeBSD, OpenBSD, NetBSD, DragonFly (X11 desktop) * - FreeBSD, OpenBSD, NetBSD, DragonFly (X11 desktop)
* - OSX/macOS * - OSX/macOS (x64, arm64)
* *
* LIMITATIONS: * LIMITATIONS:
* - Limitation 01 * - Limitation 01

View file

@ -5,8 +5,7 @@
* PLATFORM: DESKTOP: SDL * PLATFORM: DESKTOP: SDL
* - Windows (Win32, Win64) * - Windows (Win32, Win64)
* - Linux (X11/Wayland desktop mode) * - Linux (X11/Wayland desktop mode)
* - FreeBSD, OpenBSD, NetBSD, DragonFly (X11 desktop) * - Others (not tested)
* - OSX/macOS (x64, arm64)
* *
* LIMITATIONS: * LIMITATIONS:
* - Limitation 01 * - Limitation 01

View file

@ -3,8 +3,8 @@
* rcore_drm - Functions to manage window, graphics device and inputs * rcore_drm - Functions to manage window, graphics device and inputs
* *
* PLATFORM: DRM * PLATFORM: DRM
* - Raspberry Pi 0-5 (native mode) * - Raspberry Pi 0-5 (DRM/KMS)
* - Linux native mode (KMS driver) * - Linux DRM subsystem (KMS mode)
* *
* LIMITATIONS: * LIMITATIONS:
* - Most of the window/monitor functions are not implemented (not required) * - Most of the window/monitor functions are not implemented (not required)

View file

@ -3,22 +3,22 @@
* rcore - Window/display management, Graphic device/context management and input management * rcore - Window/display management, Graphic device/context management and input management
* *
* PLATFORMS SUPPORTED: * PLATFORMS SUPPORTED:
* - PLATFORM_DESKTOP (GLFW backend): * > PLATFORM_DESKTOP (GLFW backend):
* > Windows (Win32, Win64) * - Windows (Win32, Win64)
* > Linux (X11/Wayland desktop mode) * - Linux (X11/Wayland desktop mode)
* > macOS/OSX (x64, arm64) * - macOS/OSX (x64, arm64)
* > FreeBSD, OpenBSD, NetBSD, DragonFly (X11 desktop) * - FreeBSD, OpenBSD, NetBSD, DragonFly (X11 desktop)
* - PLATFORM_DESKTOP_SDL (SDL backend): * > PLATFORM_DESKTOP_SDL (SDL backend):
* > Windows (Win32, Win64) * - Windows (Win32, Win64)
* > Linux (X11/Wayland desktop mode) * - Linux (X11/Wayland desktop mode)
* > Others (not tested) * - Others (not tested)
* - PLATFORM_WEB: * > PLATFORM_WEB:
* > HTML5 (WebAssembly) * - HTML5 (WebAssembly)
* - PLATFORM_DRM: * > PLATFORM_DRM:
* > Raspberry Pi 0-5 * - Raspberry Pi 0-5 (DRM/KMS)
* > Linux native mode (KMS driver) * - Linux DRM subsystem (KMS mode)
* - PLATFORM_ANDROID: * > PLATFORM_ANDROID:
* > Android (ARM, ARM64) * - Android (ARM, ARM64)
* *
* CONFIGURATION: * CONFIGURATION:
* #define SUPPORT_DEFAULT_FONT (default) * #define SUPPORT_DEFAULT_FONT (default)