The tracy directory now has an experiment in getting Tracy to work. It's _not_ as easy as it is touted to be.

This commit is contained in:
Zed A. Shaw 2025-01-19 12:58:05 -05:00
parent 308fe4bed2
commit c98aa936ad
9 changed files with 400 additions and 7 deletions

View file

@ -6,8 +6,8 @@ constexpr const int RAY_VIEW_X=(1280 - RAY_VIEW_WIDTH);
constexpr const int RAY_VIEW_Y=0;
constexpr const int SCREEN_HEIGHT=720;
constexpr const int SCREEN_WIDTH=1280;
constexpr const bool VSYNC=false;
constexpr const int FRAME_LIMIT=30;
constexpr const bool VSYNC=true;
constexpr const int FRAME_LIMIT=60;
#ifdef NDEBUG
constexpr const bool DEBUG_BUILD=false;
#else