Skip to content

Commit

Permalink
precompiled headers for pmp
Browse files Browse the repository at this point in the history
  • Loading branch information
malytomas committed Aug 21, 2024
1 parent f691cdf commit 8e57716
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion externals/cage
Submodule cage updated 33 files
+24 −0 externals/pmp/CMakeLists.txt
+1 −2 sources/include/cage-core/assetManager.h
+7 −0 sources/include/cage-core/networkSteam.h
+1 −1 sources/include/cage-engine/guiComponents.h
+2 −4 sources/include/cage-engine/shaderProgram.h
+1 −1 sources/include/cage-engine/window.h
+8 −9 sources/libcore/assets/assetManager.cpp
+4 −4 sources/libcore/concurrent/concurrent.cpp
+4 −4 sources/libcore/concurrent/process.cpp
+2 −2 sources/libcore/config.cpp
+2 −0 sources/libcore/crashHandler.cpp
+3 −3 sources/libcore/filesystem/abstractFiles.cpp
+4 −4 sources/libcore/filesystem/api.cpp
+6 −6 sources/libcore/filesystem/paths.cpp
+7 −7 sources/libcore/filesystem/realFiles.cpp
+1 −1 sources/libcore/filesystem/realWatcher.cpp
+23 −23 sources/libcore/filesystem/zipArchives.cpp
+36 −4 sources/libcore/logger.cpp
+107 −76 sources/libcore/network/steam.cpp
+2 −4 sources/libcore/scheduler.cpp
+227 −131 sources/libcore/systemInformation.cpp
+1 −1 sources/libengine/graphics/font.cpp
+4 −10 sources/libengine/graphics/graphicsError.cpp
+12 −30 sources/libengine/graphics/shaderProgram.cpp
+1 −1 sources/libengine/graphics/uniformBuffer.cpp
+4 −4 sources/libengine/gui/guiBuilder.cpp
+5 −5 sources/libengine/sound/speaker.cpp
+20 −0 sources/libengine/window/glfw.cpp
+46 −3 sources/libengine/window/window.cpp
+2 −1 sources/libsimple/gameloop.cpp
+4 −4 sources/test-core/assetManager.cpp
+1 −1 sources/test-core/networkSteam.cpp
+1 −1 sources/test-core/systemInformation.cpp
2 changes: 1 addition & 1 deletion sources/scenes/game.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ void keyPress(input::KeyPress in)

void update()
{
#if 0
#if 1
{ // automatic reloading -> used for engine testing
static uint64 last = 0;
uint64 now = applicationTime();
Expand Down

0 comments on commit 8e57716

Please sign in to comment.