Skip to content

Commit a654beb

Browse files
committed
REVIEWED: Comments
1 parent eba1fca commit a654beb

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

src/raylib.h

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@
44
*
55
* FEATURES:
66
* - NO external dependencies, all required libraries included with raylib
7-
* - Multiplatform: Windows, Linux, FreeBSD, OpenBSD, NetBSD, DragonFly,
8-
* MacOS, Haiku, Android, Raspberry Pi, DRM native, HTML5
7+
* - Multiplatform: Windows, Linux, macOS, FreeBSD, Web, Android, Raspberry Pi, DRM native...
98
* - Written in plain C code (C99) in PascalCase/camelCase notation
109
* - Hardware accelerated with OpenGL (1.1, 2.1, 3.3, 4.3, ES2, ES3 - choose at compile)
11-
* - Unique OpenGL abstraction layer (usable as standalone module): [rlgl]
10+
* - Custom OpenGL abstraction layer (usable as standalone module): [rlgl]
1211
* - Multiple Fonts formats supported (TTF, OTF, FNT, BDF, Sprite fonts)
13-
* - Outstanding texture formats support, including compressed formats (DXT, ETC, ASTC)
12+
* - Many texture formats supportted, including compressed formats (DXT, ETC, ASTC)
1413
* - Full 3d support for 3d Shapes, Models, Billboards, Heightmaps and more!
1514
* - Flexible Materials system, supporting classic maps and PBR maps
1615
* - Animated 3D models supported (skeletal bones animation) (IQM, M3D, GLTF)
@@ -26,10 +25,9 @@
2625
* - One default Shader is loaded on rlglInit()->rlLoadShaderDefault() [rlgl] (OpenGL 3.3 or ES2)
2726
* - One default RenderBatch is loaded on rlglInit()->rlLoadRenderBatch() [rlgl] (OpenGL 3.3 or ES2)
2827
*
29-
* DEPENDENCIES (included):
30-
* [rcore][GLFW] rglfw (Camilla Löwy - github.com/glfw/glfw) for window/context management and input
31-
* [rcore][RGFW] rgfw (ColleagueRiley - github.com/ColleagueRiley/RGFW) for window/context management and input
32-
* [rlgl] glad/glad_gles2 (David Herberth - github.com/Dav1dde/glad) for OpenGL 3.3 extensions loading
28+
* DEPENDENCIES:
29+
* [rcore] Depends on the selected platform backend, check rcore.c header for details
30+
* [rlgl] glad/glad_gles2 (David Herberth - github.com/Dav1dde/glad) for OpenGL extensions loading
3331
* [raudio] miniaudio (David Reid - github.com/mackron/miniaudio) for audio device/context management
3432
*
3533
* OPTIONAL DEPENDENCIES (included):
@@ -41,6 +39,7 @@
4139
* [rtextures] stb_image_write (Sean Barret) for image writing (BMP, TGA, PNG, JPG)
4240
* [rtextures] stb_image_resize2 (Sean Barret) for image resizing algorithms
4341
* [rtextures] stb_perlin (Sean Barret) for Perlin Noise image generation
42+
* [rtextures] rl_gputex (Ramon Santamaria) for GPU-compressed texture formats
4443
* [rtext] stb_truetype (Sean Barret) for ttf fonts loading
4544
* [rtext] stb_rect_pack (Sean Barret) for rectangles packing
4645
* [rmodels] par_shapes (Philip Rideout) for parametric 3d shapes generation
@@ -1102,7 +1101,7 @@ RLAPI void SetTraceLogLevel(int logLevel); // Set the curre
11021101
RLAPI void TraceLog(int logLevel, const char *text, ...); // Show trace log messages (LOG_DEBUG, LOG_INFO, LOG_WARNING, LOG_ERROR...)
11031102
RLAPI void SetTraceLogCallback(TraceLogCallback callback); // Set custom trace log
11041103

1105-
// Memory management, using internal allocators
1104+
// Memory management, using internal allocators
11061105
RLAPI void *MemAlloc(unsigned int size); // Internal memory allocator
11071106
RLAPI void *MemRealloc(void *ptr, unsigned int size); // Internal memory reallocator
11081107
RLAPI void MemFree(void *ptr); // Internal memory free

0 commit comments

Comments
 (0)