From 449182bb517b7d62e9b726f650cb281df0e4a7c5 Mon Sep 17 00:00:00 2001 From: Ray Date: Wed, 1 Apr 2026 10:17:34 +0200 Subject: [PATCH] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0bc503cd6..00929215c 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,7 @@ features - Written in plain C code (C99) using PascalCase/camelCase notation - Hardware accelerated with OpenGL: **1.1, 2.1, 3.3, 4.3, ES 2.0, ES 3.0** - **Unique OpenGL abstraction layer** (usable as standalone module): [rlgl](https://github.com/raysan5/raylib/blob/master/src/rlgl.h) + - **Software Renderer** backend (no OpenGL required!): [rlsw](https://github.com/raysan5/raylib/blob/master/src/external/rlsw.h) - Multiple **Fonts** formats supported (TTF, OTF, FNT, BDF, sprite fonts) - Multiple texture formats supported, including **compressed formats** (DXT, ETC, ASTC) - **Full 3D support**, including 3D Shapes, Models, Billboards, Heightmaps and more! @@ -61,7 +62,7 @@ This is a basic raylib example, it creates a window and draws the text `"Congrat int main(void) { - InitWindow(800, 450, "raylib [core] example - basic window"); + InitWindow(800, 450, "raylib example - basic window"); while (!WindowShouldClose()) {