Martin Gerhardy
Martin Gerhardy
https://github.com/ganochenkodg/svelte-terrain
https://www.redblobgames.com/x/1938-square-tiling-of-sphere/ https://www.redblobgames.com/x/1932-sphere-healpix/ https://www.redblobgames.com/x/1939-planetary-dungeon/ https://old.reddit.com/r/proceduralgeneration/comments/kaen7h/new_video_on_procedural_island_noise_generation/gfjmgen/
https://developer.apple.com/forums/thread/697492
``` set(PLATFORM_LINKFLAGS "${PLATFORM_LINKFLAGS} -Xlinker -stack_size -Xlinker 0x100000") set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${PLATFORM_LINKFLAGS}") ```
You are right - there is a potential problem - pop and push should be delayed and only executed in the update() method.
these might help to find some of the relevant locations. ag "glm::?mat. [a-zA-Z]+;" src/ ag "glm::?vec. [a-zA-Z]+;" src/ ag "glm::?quat [a-zA-Z]+;" src/ ag "glm::?vec.\(\)" src/ ag "glm::?mat.\(\)" src/ ag "glm::?quat\(\)"...
Thanks a lot. I remember some problems with libcurl when compiling my test project under linux x86_64, Will check it out again and report the exact error asap.
after removing the debug window I get e.g. this: ``` Linking CXX executable /home/mgerhardy/dev/fips-deploy/testimport/linux-make-debug/testimport ../fips-turbobadger_turbobadger/libturbobadger.a(tb_system_linux.cpp.o): In Funktion `tb::TBSystem::GetTimeMS()': /home/mgerhardy/dev/fips-turbobadger/turbobadger/src/tb/tb_system_linux.cpp:27: Mehrfachdefinition von `tb::TBSystem::GetTimeMS()' ../oryol_TBUI/libTBUI.a(tbOryolSystem.cc.o):/home/mgerhardy/dev/oryol/code/Modules/TBUI/tb/tbOryolSystem.cc:12: first defined here ../fips-turbobadger_turbobadger/libturbobadger.a(tb_system_linux.cpp.o): In Funktion `tb::TBSystem::GetLongClickDelayMS()':...
ah the include paths are wrong the turbobadger tb_config.h is used instead of the one that comes with oryol. In this particular case TB_SYSTEM_LINUX is defined. But I'm not sure...
any idea how to change the include path order to put the fips-turbobadger include paths after the code/Modules/TBUI/tb include path?