From 2f75657350f4377e41064c7ca2941e00e586be63 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Sat, 26 Jun 2021 21:07:00 +0200 Subject: WARNING: REMOVED: Some deprecated function names mapping Some functions/values have been deprecated for long time but some mapping was kept for convenience. Some of those mappings have been removed... --- examples/textures/textures_image_drawing.c | 2 +- examples/textures/textures_image_text.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'examples/textures') diff --git a/examples/textures/textures_image_drawing.c b/examples/textures/textures_image_drawing.c index ea3cb319..2707746c 100644 --- a/examples/textures/textures_image_drawing.c +++ b/examples/textures/textures_image_drawing.c @@ -48,7 +48,7 @@ int main(void) // Draw over image using custom font ImageDrawTextEx(&parrots, font, "PARROTS & CAT", (Vector2){ 300, 230 }, (float)font.baseSize, -2, WHITE); - UnloadFont(font); // Unload custom spritefont (already drawn used on image) + UnloadFont(font); // Unload custom font (already drawn used on image) Texture2D texture = LoadTextureFromImage(parrots); // Image converted to texture, uploaded to GPU memory (VRAM) UnloadImage(parrots); // Once image has been converted to texture and uploaded to VRAM, it can be unloaded from RAM diff --git a/examples/textures/textures_image_text.c b/examples/textures/textures_image_text.c index cb4f0df3..7b19cd3e 100644 --- a/examples/textures/textures_image_text.c +++ b/examples/textures/textures_image_text.c @@ -1,6 +1,6 @@ /******************************************************************************************* * -* raylib [texture] example - Image text drawing using TTF generated spritefont +* raylib [texture] example - Image text drawing using TTF generated font * * This example has been created using raylib 1.8 (www.raylib.com) * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) @@ -64,7 +64,7 @@ int main(void) } else DrawTexture(font.texture, screenWidth/2 - font.texture.width/2, 50, BLACK); - DrawText("PRESS SPACE to SEE USED SPRITEFONT ", 290, 420, 10, DARKGRAY); + DrawText("PRESS SPACE to SHOW FONT ATLAS USED", 290, 420, 10, DARKGRAY); EndDrawing(); //---------------------------------------------------------------------------------- @@ -74,7 +74,7 @@ int main(void) //-------------------------------------------------------------------------------------- UnloadTexture(texture); // Texture unloading - UnloadFont(font); // Unload custom spritefont + UnloadFont(font); // Unload custom font CloseWindow(); // Close window and OpenGL context //-------------------------------------------------------------------------------------- -- cgit v1.2.3