├── .gitignore ├── CMakeLists.txt ├── CavaService.cpp ├── CavaService.hpp ├── CavaWindow.cpp ├── CavaWindow.hpp ├── CavalandApp.cpp ├── CavalandApp.hpp ├── ConfigManager.cpp ├── ConfigManager.hpp ├── LICENSE ├── Makefile ├── Readme.md ├── Renderer.cpp ├── Renderer.hpp ├── Shader.hpp ├── compile_commands.json ├── constants.hpp ├── example.cfg ├── main.cpp ├── shaders ├── bars │ ├── x_gradient.glsl │ └── y_gradient.glsl ├── lines │ └── wave.glsl └── vertex.glsl └── ss.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simrat39/cavaland/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simrat39/cavaland/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CavaService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simrat39/cavaland/HEAD/CavaService.cpp -------------------------------------------------------------------------------- /CavaService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simrat39/cavaland/HEAD/CavaService.hpp -------------------------------------------------------------------------------- /CavaWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simrat39/cavaland/HEAD/CavaWindow.cpp -------------------------------------------------------------------------------- /CavaWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simrat39/cavaland/HEAD/CavaWindow.hpp -------------------------------------------------------------------------------- /CavalandApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simrat39/cavaland/HEAD/CavalandApp.cpp -------------------------------------------------------------------------------- /CavalandApp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simrat39/cavaland/HEAD/CavalandApp.hpp -------------------------------------------------------------------------------- /ConfigManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simrat39/cavaland/HEAD/ConfigManager.cpp -------------------------------------------------------------------------------- /ConfigManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simrat39/cavaland/HEAD/ConfigManager.hpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simrat39/cavaland/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simrat39/cavaland/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | # Cavaland 2 | 3 | ![ss](./ss.png) -------------------------------------------------------------------------------- /Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simrat39/cavaland/HEAD/Renderer.cpp -------------------------------------------------------------------------------- /Renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simrat39/cavaland/HEAD/Renderer.hpp -------------------------------------------------------------------------------- /Shader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simrat39/cavaland/HEAD/Shader.hpp -------------------------------------------------------------------------------- /compile_commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simrat39/cavaland/HEAD/compile_commands.json -------------------------------------------------------------------------------- /constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simrat39/cavaland/HEAD/constants.hpp -------------------------------------------------------------------------------- /example.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simrat39/cavaland/HEAD/example.cfg -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simrat39/cavaland/HEAD/main.cpp -------------------------------------------------------------------------------- /shaders/bars/x_gradient.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simrat39/cavaland/HEAD/shaders/bars/x_gradient.glsl -------------------------------------------------------------------------------- /shaders/bars/y_gradient.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simrat39/cavaland/HEAD/shaders/bars/y_gradient.glsl -------------------------------------------------------------------------------- /shaders/lines/wave.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simrat39/cavaland/HEAD/shaders/lines/wave.glsl -------------------------------------------------------------------------------- /shaders/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simrat39/cavaland/HEAD/shaders/vertex.glsl -------------------------------------------------------------------------------- /ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simrat39/cavaland/HEAD/ss.png --------------------------------------------------------------------------------