raylib/examples/textures/textures_logo_raylib.c

64 lines
2.6 KiB
C
Raw Normal View History

/*******************************************************************************************
*
2014-09-30 01:41:05 +04:00
* raylib [textures] example - Texture loading and drawing
*
2022-07-20 02:28:37 +03:00
* Example originally created with raylib 1.0, last time updated with raylib 1.0
*
2022-07-20 02:28:37 +03:00
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
2024-01-02 22:58:12 +03:00
* Copyright (c) 2014-2024 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
#include "raylib.h"
2022-06-21 20:53:18 +03:00
//------------------------------------------------------------------------------------
// Program main entry point
//------------------------------------------------------------------------------------
2019-05-20 17:36:42 +03:00
int main(void)
2014-09-30 01:41:05 +04:00
{
// Initialization
//--------------------------------------------------------------------------------------
2019-05-20 17:36:42 +03:00
const int screenWidth = 800;
const int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [textures] example - texture loading and drawing");
2014-09-30 01:41:05 +04:00
// NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required)
Texture2D texture = LoadTexture("resources/raylib_logo.png"); // Texture loading
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//---------------------------------------------------------------------------------------
2014-09-30 01:41:05 +04:00
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// TODO: Update your variables here
//----------------------------------------------------------------------------------
2014-09-30 01:41:05 +04:00
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
2014-09-30 01:41:05 +04:00
ClearBackground(RAYWHITE);
2014-09-30 01:41:05 +04:00
2016-01-16 14:52:55 +03:00
DrawTexture(texture, screenWidth/2 - texture.width/2, screenHeight/2 - texture.height/2, WHITE);
2014-09-30 01:41:05 +04:00
DrawText("this IS a texture!", 360, 370, 10, GRAY);
2014-09-30 01:41:05 +04:00
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadTexture(texture); // Texture unloading
2014-09-30 01:41:05 +04:00
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
2014-09-30 01:41:05 +04:00
return 0;
}