Skip to content

Commit

Permalink
[EXAMPLES] Default Skybox example to not use HDR (#4115)
Browse files Browse the repository at this point in the history
* Update raylib_api.* by CI

* Default to not use HDR, and note that HDR support requires that raylib be built with HDR enabled.

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
JeffM2501 and github-actions[bot] committed Jun 28, 2024
1 parent a3ef381 commit c1ea326
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions examples/models/models_skybox.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ int main(void)
Mesh cube = GenMeshCube(1.0f, 1.0f, 1.0f);
Model skybox = LoadModelFromMesh(cube);

bool useHDR = true;
// Set this to true to use an HDR Texture, Note that raylib must be built with HDR Support for this to work SUPPORT_FILEFORMAT_HDR
bool useHDR = false;

// Load skybox shader and set required locations
// NOTE: Some locations are automatically set at shader loading
Expand Down Expand Up @@ -157,8 +158,6 @@ int main(void)
DrawGrid(10, 1.0f);

EndMode3D();

//DrawTextureEx(panorama, (Vector2){ 0, 0 }, 0.0f, 0.5f, WHITE);

if (useHDR) DrawText(TextFormat("Panorama image from hdrihaven.com: %s", GetFileName(skyboxFileName)), 10, GetScreenHeight() - 20, 10, BLACK);
else DrawText(TextFormat(": %s", GetFileName(skyboxFileName)), 10, GetScreenHeight() - 20, 10, BLACK);
Expand Down

0 comments on commit c1ea326

Please sign in to comment.