[example] Add shaders_rounded_rectangle example (#4719)

* Add shaders_rounded_rectangle example

* Minor tweaks to example template (add star, more)

* Combine shaders

* Fix changes after review

---------

Co-authored-by: Anstro Pleuton <anstropleuton@github.com>
This commit is contained in:
Anstro Pleuton 2025-01-23 01:51:36 -08:00 committed by GitHub
parent 87f17538d0
commit 7bfc8e8ca7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 891 additions and 15 deletions

View file

@ -56,7 +56,9 @@
/*******************************************************************************************
*
* raylib [core] example - Basic window
* raylib [<module>] example - <name>
*
* Example complexity rating: [??] ?/4
*
* Example originally created with raylib 5.5, last time updated with raylib 5.5
*
@ -81,7 +83,7 @@ int main(void)
const int screenWidth = 800;
const int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [core] example - basic window");
InitWindow(screenWidth, screenHeight, "raylib [<module>] example - <name>");
// TODO: Load resources / Initialize variables at this point