Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/WolfireGames/overgrowth.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-04-29Remove unused SDL includesStephan Vedder
2022-04-29Use already existing forward declarationsStephan Vedder
2022-04-29Decrease engine.h costStephan Vedder
2022-04-29Remove unused debug visualizationStephan Vedder
2022-04-29Remove unused geometry helpersStephan Vedder
2022-04-29Remove unused texturepackStephan Vedder
2022-04-29Expand buffer size to avoid buffer overflowTaylor Asplund
2022-04-29Use the SDL2 perf counter (#50)Stephan Vedder
Using SDL2 functions will allow us to be compatible to more platforms and not having to maintain our own implementations for each platform.
2022-04-28Remove static libraries from distStephan Vedder
2022-04-28Add CentOS Stream 8 to test reasonably old GCC version for LinuxNeal Gompa
We want to establish a decent floor for compiler compatibility, and CentOS Stream 8 is a good place for supportability reasons, as it is essentially the Red Hat Enterprise Linux 8 platform. We use the CentOS Hyperscale SIG official container since it pre-configures all the necessary base repositories for us.
2022-04-28Merge pull request #42 from feliwir/platform-headerNeal Gompa (ニール・ゴンパ)
Detect target environment at compile time
2022-04-28Merge pull request #43 from feliwir/remove-nv-tex-toolsNeal Gompa (ニール・ゴンパ)
Remove unused nvidia texture tools
2022-04-28Merge pull request #44 from feliwir/remove-unused-crunchNeal Gompa (ニール・ゴンパ)
Remove duplicate crunch sourcetree
2022-04-28Merge pull request #46 from feliwir/remove-duplciate-glewNeal Gompa (ニール・ゴンパ)
Remove glew duplicate
2022-04-28Merge pull request #45 from feliwir/remove-fltkNeal Gompa (ニール・ゴンパ)
Remove unused FLTK
2022-04-28Add BlenderScript files from the Auxiliary repoMax Danielsson
2022-04-28Remove glew duplicateStephan Vedder
2022-04-28Remove unused FLTKStephan Vedder
2022-04-28Fix windows compilationStephan Vedder
2022-04-28Remove duplicate crunch sourcetreeStephan Vedder
2022-04-28Remove unused nvidia texture toolsStephan Vedder
2022-04-28Merge pull request #40 from feliwir/imgui-libMax Danielsson
Statically link imgui
2022-04-28Merge pull request #41 from feliwir/fix-windowsMax Danielsson
Don't copy system library
2022-04-28Detect target environment at compile timeStephan Vedder
2022-04-28Don't copy system libraryStephan Vedder
2022-04-28Statically link imguiStephan Vedder
2022-04-27Merge pull request #39 from feliwir/imgui-freetypeMax Danielsson
Use ImGui freetype rasterizer
2022-04-27Merge pull request #31 from feliwir/windows-ciMax Danielsson
Add windows CI
2022-04-27Merge pull request #30 from feliwir/fix-linux-compilationMax Danielsson
Include freetype headers properly
2022-04-27Merge pull request #32 from feliwir/remove-xinputMax Danielsson
Remove unused xinput library
2022-04-27Merge pull request #38 from dressupgeekout/portable_toplevel_makefileMax Danielsson
More portable top-level Makefile
2022-04-27Use ImGui freetype rasterizerStephan Vedder
2022-04-27More portable top-level MakefileCharlotte Koch
* Don't assume GNU make is called "make" * Don't assume nproc(1) is available
2022-04-26Remove unused xinput libraryStephan Vedder
2022-04-26Add windows CIStephan Vedder
2022-04-26Include freetype headers properlyStephan Vedder
2022-04-22Merge pull request #13 from EmpSurak/sc/s4997Max Danielsson
Replace deprecated auto_ptr (S4997)
2022-04-22Merge pull request #16 from EmpSurak/fix/dont-analyze-prMax Danielsson
Disable analysis for pull requests
2022-04-22Disable analysis for pull requestsSurak
2022-04-22Remove deprecated auto_ptr (S4997)Surak
2022-04-22Merge pull request #11 from EmpSurak/sc/s1763Max Danielsson
Remove unreachable code (S1763)
2022-04-22Remove unreachable code (S1763)Surak
2022-04-22Make SonarCloud workflow similar to new main workflowNeal Gompa
This reuses the same containerized environment and makes it easier to identify how to locally reproduce it.
2022-04-22Test builds via GitHub ActionsNeal Gompa
This introduces Linux CI via GitHub Actions to ensure the code compiles when contributions are submitted.
2022-04-22COMPILING: Add command for installing build dependencies on Fedora LinuxNeal Gompa
Fedora Linux is a common Linux distribution people build and develop games on, so let's document that.
2022-04-22COMPILING: Use the actual project names for the generic Linux dependenciesNeal Gompa
This makes it easier to identify them across Linux distributions.
2022-04-22Merge pull request #7 from EmpSurak/mainMax Danielsson
Add SonarCloud integration
2022-04-22Merge pull request #8 from m-ildefons/cmake-linux-dependenciesMax Danielsson
cmake: configure freetype and openal on linux
2022-04-22cmake: configure freetype and openal on linuxMoritz Röhrich
- Utilize the `FindFreetype` and `FindOpenAL` cmake modules to locate FreeType2 and OpenAL libraries and configure compiler- and linker- flags on Linux. - Generate `compile_commands.json` for use with a language server when not compiling in release mode.
2022-04-14Add SonarCloud integrationEmpSurak