AnKi 3D Engine - Vulkan and D3D12, modern renderer, scripting, physics and more

#game-engine #gamedev #engine #3d #rendering #opengl #vulkan #glsl #hlsl #cpp

Panagiotis Christopoulos Charitos 8914ae09fd Clusterer 10 лет назад
build 05093924df EPA 11 лет назад
docs adde4d98bc Refactoring and documetation 10 лет назад
engine_data 83f3759fc7 Tweaking lens flare. Adding bits on .zip file support. Start adding support for compute based optimizations on IS 12 лет назад
include 8914ae09fd Clusterer 10 лет назад
shaders 8914ae09fd Clusterer 10 лет назад
src 8914ae09fd Clusterer 10 лет назад
testapp 8914ae09fd Clusterer 10 лет назад
tests e12c1be692 Improving HashMap interface 10 лет назад
thirdparty @ 3fb1f5ec55 634239d6c3 Minor renaming and exporter changes 10 лет назад
tools 634239d6c3 Minor renaming and exporter changes 10 лет назад
.gitignore 53d1b175ab Reworked LUA binding. Forgot to commit the XMLs 11 лет назад
.gitmodules 8d2aaee2ae Fixing submodules 10 лет назад
AndroidManifest.xml bc81b1130b Android 12 лет назад
CMakeLists.txt 6aef69e3ae Parallelizing the drawer 10 лет назад
LICENSE 655aef5742 Updating license date 11 лет назад
README.md e8d1f922d8 Some refactoring 10 лет назад
countlines.sh 83f3759fc7 Tweaking lens flare. Adding bits on .zip file support. Start adding support for compute based optimizations on IS 12 лет назад
findbiglines.sh 0b5127b62f Android support 12 лет назад
pack_data.sh 05093924df EPA 11 лет назад
run_callgrind.sh 23dbb2c8cb Collision and tiler work 11 лет назад

README.md

AnKi 3D engine is a Linux opensource game engine build using OpenGL 4.4.

License

AnKi's license is BSD. This practicaly means that you can use the source or parts of the source on proprietary and non proprietary products as long as you follow the conditions of the license.

See LICENSE file for more info.

Building AnKi

AnKi's build system is using CMake. A great effort was made to keep the number of external dependencies to minimum so the only prerequisites are the following:

  • X11 development files (Package name under Ubuntu: libx11-dev)
  • Mesa GL development files (Package name under Ubuntu: mesa-common-dev)

AnKi is using the C++11 standard so the supported compilers are:

  • GCC 4.8 or greater
  • clang 3.3 or greater

To build the release version:

$cd <path_to_anki>/build
$cmake -DANKI_BUILD_TYPE=Release ..
$make

To view and configure the build options you can use ccmake tool or similar app:

$cd <path_to_anki>/build
$ccmake .

This will open an interface with all the available options.