REXM: Update examples collection

This commit is contained in:
Ray
2026-02-19 17:13:20 +01:00
parent 0a7c7569aa
commit b9f16a28d3
8 changed files with 608 additions and 12 deletions

View File

@ -1,6 +1,6 @@
/*******************************************************************************************
*
* raylib [others] example - compute shader
* raylib [shaders] example - rlgl compute
*
* WARNING: This example requires raylib compiled with OpenGL 4.3 version for
* compute shaders support, shaders used in this example are #version 430
@ -58,7 +58,7 @@ int main(void)
const int screenWidth = GOL_WIDTH;
const int screenHeight = GOL_WIDTH;
InitWindow(screenWidth, screenHeight, "raylib [others] example - compute shader");
InitWindow(screenWidth, screenHeight, "raylib [shaders] example - rlgl compute");
const Vector2 resolution = { (float)screenWidth, (float)screenHeight };
unsigned int brushSize = 8;