REXM: UPDATE: Reviewed all examples requirements

This commit is contained in:
Ray
2025-11-19 11:53:55 +01:00
parent d56371ce85
commit e3738c1b17
19 changed files with 3054 additions and 31 deletions

View File

@@ -1,10 +1,10 @@
/*******************************************************************************************
*
* raylib [textures] example - screen buffer / update Image as screen buffer and display with texture
* raylib [textures] example - screen buffer
*
* Example complexity rating: [★★☆☆] 2/4
*
* Example originally created with raylib 5.5, last time updated with raylib 5.6
* Example originally created with raylib 5.5, last time updated with raylib 5.5
*
* Example contributed by Agnis Aldiņš (@nezvers) and reviewed by Ramon Santamaria (@raysan5)
*
@@ -40,7 +40,7 @@ int main(void)
const int pixelScale = SCALE_FACTOR;
const int imageWidth = screenWidth / pixelScale;
const int imageHeight = screenHeight / pixelScale;
InitWindow(screenWidth, screenHeight, "raylib [<module>] example - <name>");
InitWindow(screenWidth, screenHeight, "raylib [textures] example - screen buffer");
Color palette[MAX_COLORS] = {0};
unsigned char indexBuffer[INDEX_BUFFER_SIZE] = {0};