├── .gitignore ├── BUILD ├── LICENSE ├── README.md ├── WORKSPACE ├── angrygl ├── BUILD ├── aabb.h ├── assets │ ├── Player │ │ └── muzzle_spritesheet.png │ └── bullet │ │ └── impact_spritesheet_with_00.png ├── basic_texture_shader.frag ├── basic_texture_shader.vert ├── basicer_shader.frag ├── basicer_shader.vert ├── blur_shader.frag ├── bullet_store.cc ├── bullet_store.h ├── capsule.h ├── depth_shader.frag ├── depth_shader.vert ├── enemy.h ├── enemy_spawner.cc ├── enemy_spawner.h ├── floor_shader.frag ├── geom.h ├── geom_shader.vert ├── geom_shader2.vert ├── instanced_texture_shader.vert ├── main.cc ├── model.cc ├── model.h ├── player_mesh.cc ├── player_mesh.h ├── player_model.cc ├── player_model.h ├── player_shader.frag ├── player_shader.vert ├── redshader.frag ├── redshader.vert ├── sprite_shader.frag ├── spritesheet.h ├── texture_merge_shader.frag ├── texture_shader.frag └── wiggly_shader.vert ├── assimp ├── bin │ └── assimp-vc140-mt.dll ├── include │ └── assimp │ │ ├── .editorconfig │ │ ├── Compiler │ │ ├── poppack1.h │ │ ├── pstdint.h │ │ └── pushpack1.h │ │ ├── DefaultIOStream.h │ │ ├── DefaultIOSystem.h │ │ ├── DefaultLogger.hpp │ │ ├── Defines.h │ │ ├── Exporter.hpp │ │ ├── IOStream.hpp │ │ ├── IOSystem.hpp │ │ ├── Importer.hpp │ │ ├── LogStream.hpp │ │ ├── Logger.hpp │ │ ├── NullLogger.hpp │ │ ├── ProgressHandler.hpp │ │ ├── SceneCombiner.h │ │ ├── ai_assert.h │ │ ├── anim.h │ │ ├── camera.h │ │ ├── cexport.h │ │ ├── cfileio.h │ │ ├── cimport.h │ │ ├── color4.h │ │ ├── color4.inl │ │ ├── config.h │ │ ├── config.h.in │ │ ├── defs.h │ │ ├── importerdesc.h │ │ ├── light.h │ │ ├── material.h │ │ ├── material.inl │ │ ├── matrix3x3.h │ │ ├── matrix3x3.inl │ │ ├── matrix4x4.h │ │ ├── matrix4x4.inl │ │ ├── mesh.h │ │ ├── metadata.h │ │ ├── port │ │ └── AndroidJNI │ │ │ └── AndroidJNIIOSystem.h │ │ ├── postprocess.h │ │ ├── quaternion.h │ │ ├── quaternion.inl │ │ ├── scene.h │ │ ├── texture.h │ │ ├── types.h │ │ ├── vector2.h │ │ ├── vector2.inl │ │ ├── vector3.h │ │ ├── vector3.inl │ │ └── version.h └── lib │ └── assimp-vc140-mt.lib ├── glad ├── BUILD ├── include │ ├── KHR │ │ └── khrplatform.h │ └── glad │ │ └── glad.h └── src │ └── glad.c ├── glfw.BUILD ├── glm.BUILD ├── lib ├── BUILD └── ThreadPool.h ├── opengl ├── BUILD ├── shader.cc ├── shader.h ├── texture.h └── vertex.h └── stb ├── BUILD ├── image.cc ├── image.h └── stb_image.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/BUILD -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/WORKSPACE -------------------------------------------------------------------------------- /angrygl/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/BUILD -------------------------------------------------------------------------------- /angrygl/aabb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/aabb.h -------------------------------------------------------------------------------- /angrygl/assets/Player/muzzle_spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/assets/Player/muzzle_spritesheet.png -------------------------------------------------------------------------------- /angrygl/assets/bullet/impact_spritesheet_with_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/assets/bullet/impact_spritesheet_with_00.png -------------------------------------------------------------------------------- /angrygl/basic_texture_shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/basic_texture_shader.frag -------------------------------------------------------------------------------- /angrygl/basic_texture_shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/basic_texture_shader.vert -------------------------------------------------------------------------------- /angrygl/basicer_shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/basicer_shader.frag -------------------------------------------------------------------------------- /angrygl/basicer_shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/basicer_shader.vert -------------------------------------------------------------------------------- /angrygl/blur_shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/blur_shader.frag -------------------------------------------------------------------------------- /angrygl/bullet_store.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/bullet_store.cc -------------------------------------------------------------------------------- /angrygl/bullet_store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/bullet_store.h -------------------------------------------------------------------------------- /angrygl/capsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/capsule.h -------------------------------------------------------------------------------- /angrygl/depth_shader.frag: -------------------------------------------------------------------------------- 1 | #version 330 core 2 | 3 | void main() { 4 | } 5 | -------------------------------------------------------------------------------- /angrygl/depth_shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/depth_shader.vert -------------------------------------------------------------------------------- /angrygl/enemy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/enemy.h -------------------------------------------------------------------------------- /angrygl/enemy_spawner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/enemy_spawner.cc -------------------------------------------------------------------------------- /angrygl/enemy_spawner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/enemy_spawner.h -------------------------------------------------------------------------------- /angrygl/floor_shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/floor_shader.frag -------------------------------------------------------------------------------- /angrygl/geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/geom.h -------------------------------------------------------------------------------- /angrygl/geom_shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/geom_shader.vert -------------------------------------------------------------------------------- /angrygl/geom_shader2.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/geom_shader2.vert -------------------------------------------------------------------------------- /angrygl/instanced_texture_shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/instanced_texture_shader.vert -------------------------------------------------------------------------------- /angrygl/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/main.cc -------------------------------------------------------------------------------- /angrygl/model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/model.cc -------------------------------------------------------------------------------- /angrygl/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/model.h -------------------------------------------------------------------------------- /angrygl/player_mesh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/player_mesh.cc -------------------------------------------------------------------------------- /angrygl/player_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/player_mesh.h -------------------------------------------------------------------------------- /angrygl/player_model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/player_model.cc -------------------------------------------------------------------------------- /angrygl/player_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/player_model.h -------------------------------------------------------------------------------- /angrygl/player_shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/player_shader.frag -------------------------------------------------------------------------------- /angrygl/player_shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/player_shader.vert -------------------------------------------------------------------------------- /angrygl/redshader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/redshader.frag -------------------------------------------------------------------------------- /angrygl/redshader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/redshader.vert -------------------------------------------------------------------------------- /angrygl/sprite_shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/sprite_shader.frag -------------------------------------------------------------------------------- /angrygl/spritesheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/spritesheet.h -------------------------------------------------------------------------------- /angrygl/texture_merge_shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/texture_merge_shader.frag -------------------------------------------------------------------------------- /angrygl/texture_shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/texture_shader.frag -------------------------------------------------------------------------------- /angrygl/wiggly_shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/angrygl/wiggly_shader.vert -------------------------------------------------------------------------------- /assimp/bin/assimp-vc140-mt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/bin/assimp-vc140-mt.dll -------------------------------------------------------------------------------- /assimp/include/assimp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/.editorconfig -------------------------------------------------------------------------------- /assimp/include/assimp/Compiler/poppack1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/Compiler/poppack1.h -------------------------------------------------------------------------------- /assimp/include/assimp/Compiler/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/Compiler/pstdint.h -------------------------------------------------------------------------------- /assimp/include/assimp/Compiler/pushpack1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/Compiler/pushpack1.h -------------------------------------------------------------------------------- /assimp/include/assimp/DefaultIOStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/DefaultIOStream.h -------------------------------------------------------------------------------- /assimp/include/assimp/DefaultIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/DefaultIOSystem.h -------------------------------------------------------------------------------- /assimp/include/assimp/DefaultLogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/DefaultLogger.hpp -------------------------------------------------------------------------------- /assimp/include/assimp/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/Defines.h -------------------------------------------------------------------------------- /assimp/include/assimp/Exporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/Exporter.hpp -------------------------------------------------------------------------------- /assimp/include/assimp/IOStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/IOStream.hpp -------------------------------------------------------------------------------- /assimp/include/assimp/IOSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/IOSystem.hpp -------------------------------------------------------------------------------- /assimp/include/assimp/Importer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/Importer.hpp -------------------------------------------------------------------------------- /assimp/include/assimp/LogStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/LogStream.hpp -------------------------------------------------------------------------------- /assimp/include/assimp/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/Logger.hpp -------------------------------------------------------------------------------- /assimp/include/assimp/NullLogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/NullLogger.hpp -------------------------------------------------------------------------------- /assimp/include/assimp/ProgressHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/ProgressHandler.hpp -------------------------------------------------------------------------------- /assimp/include/assimp/SceneCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/SceneCombiner.h -------------------------------------------------------------------------------- /assimp/include/assimp/ai_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/ai_assert.h -------------------------------------------------------------------------------- /assimp/include/assimp/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/anim.h -------------------------------------------------------------------------------- /assimp/include/assimp/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/camera.h -------------------------------------------------------------------------------- /assimp/include/assimp/cexport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/cexport.h -------------------------------------------------------------------------------- /assimp/include/assimp/cfileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/cfileio.h -------------------------------------------------------------------------------- /assimp/include/assimp/cimport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/cimport.h -------------------------------------------------------------------------------- /assimp/include/assimp/color4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/color4.h -------------------------------------------------------------------------------- /assimp/include/assimp/color4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/color4.inl -------------------------------------------------------------------------------- /assimp/include/assimp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/config.h -------------------------------------------------------------------------------- /assimp/include/assimp/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/config.h.in -------------------------------------------------------------------------------- /assimp/include/assimp/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/defs.h -------------------------------------------------------------------------------- /assimp/include/assimp/importerdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/importerdesc.h -------------------------------------------------------------------------------- /assimp/include/assimp/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/light.h -------------------------------------------------------------------------------- /assimp/include/assimp/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/material.h -------------------------------------------------------------------------------- /assimp/include/assimp/material.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/material.inl -------------------------------------------------------------------------------- /assimp/include/assimp/matrix3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/matrix3x3.h -------------------------------------------------------------------------------- /assimp/include/assimp/matrix3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/matrix3x3.inl -------------------------------------------------------------------------------- /assimp/include/assimp/matrix4x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/matrix4x4.h -------------------------------------------------------------------------------- /assimp/include/assimp/matrix4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/matrix4x4.inl -------------------------------------------------------------------------------- /assimp/include/assimp/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/mesh.h -------------------------------------------------------------------------------- /assimp/include/assimp/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/metadata.h -------------------------------------------------------------------------------- /assimp/include/assimp/port/AndroidJNI/AndroidJNIIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/port/AndroidJNI/AndroidJNIIOSystem.h -------------------------------------------------------------------------------- /assimp/include/assimp/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/postprocess.h -------------------------------------------------------------------------------- /assimp/include/assimp/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/quaternion.h -------------------------------------------------------------------------------- /assimp/include/assimp/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/quaternion.inl -------------------------------------------------------------------------------- /assimp/include/assimp/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/scene.h -------------------------------------------------------------------------------- /assimp/include/assimp/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/texture.h -------------------------------------------------------------------------------- /assimp/include/assimp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/types.h -------------------------------------------------------------------------------- /assimp/include/assimp/vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/vector2.h -------------------------------------------------------------------------------- /assimp/include/assimp/vector2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/vector2.inl -------------------------------------------------------------------------------- /assimp/include/assimp/vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/vector3.h -------------------------------------------------------------------------------- /assimp/include/assimp/vector3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/vector3.inl -------------------------------------------------------------------------------- /assimp/include/assimp/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/include/assimp/version.h -------------------------------------------------------------------------------- /assimp/lib/assimp-vc140-mt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/assimp/lib/assimp-vc140-mt.lib -------------------------------------------------------------------------------- /glad/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/glad/BUILD -------------------------------------------------------------------------------- /glad/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/glad/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /glad/include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/glad/include/glad/glad.h -------------------------------------------------------------------------------- /glad/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/glad/src/glad.c -------------------------------------------------------------------------------- /glfw.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/glfw.BUILD -------------------------------------------------------------------------------- /glm.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/glm.BUILD -------------------------------------------------------------------------------- /lib/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/lib/BUILD -------------------------------------------------------------------------------- /lib/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/lib/ThreadPool.h -------------------------------------------------------------------------------- /opengl/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/opengl/BUILD -------------------------------------------------------------------------------- /opengl/shader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/opengl/shader.cc -------------------------------------------------------------------------------- /opengl/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/opengl/shader.h -------------------------------------------------------------------------------- /opengl/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/opengl/texture.h -------------------------------------------------------------------------------- /opengl/vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/opengl/vertex.h -------------------------------------------------------------------------------- /stb/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/stb/BUILD -------------------------------------------------------------------------------- /stb/image.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/stb/image.cc -------------------------------------------------------------------------------- /stb/image.h: -------------------------------------------------------------------------------- 1 | #include "stb/stb_image.h" 2 | -------------------------------------------------------------------------------- /stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntcaston/AngryGL/HEAD/stb/stb_image.h --------------------------------------------------------------------------------