├── .gitattributes ├── .gitignore ├── .gitmodules ├── git-remove-history.sh └── project-griffin ├── project-griffin.sln └── project-griffin ├── .gitignore ├── Doxyfile ├── SDL2.dll ├── assimp-vc141-mt.dll ├── data ├── .gitignore ├── config │ ├── inputcontexts.json │ └── inputs.json ├── scene.dat ├── scene │ └── scene.json └── shaders │ ├── Font.glsl │ ├── SimpleShader.glsl │ ├── SkyFromSpace.glsl │ ├── ads.glsl │ ├── atmosphere │ ├── atmosphere.glsl │ ├── copyInscatter1.glsl │ ├── copyInscatterN.glsl │ ├── copyIrradiance.glsl │ ├── earth.glsl │ ├── inscatter1.glsl │ ├── inscatterN.glsl │ ├── inscatterS.glsl │ ├── irradiance1.glsl │ ├── irradianceN.glsl │ └── transmittance.glsl │ ├── blinnPhong.glsl │ ├── fxaa.glsl │ ├── hbao.glsl │ ├── linearDepth.glsl │ ├── shadows.glsl │ ├── skybox.glsl │ ├── ssao.glsl │ ├── ssao2.glsl │ ├── ssao3.glsl │ └── terrain.glsl ├── icon.ico ├── icon.png ├── lua51.dll ├── project-griffin.rc ├── project-griffin.vcxproj ├── project-griffin.vcxproj.filters ├── resource.h ├── scripts ├── InputSystem.lua ├── Scene.lua ├── extension │ ├── JSON.lua │ ├── cgilua.lua │ ├── cgilua │ │ ├── authentication.lua │ │ ├── cookies.lua │ │ ├── dispatcher.lua │ │ ├── loader.lua │ │ ├── lp.lua │ │ ├── mime.lua │ │ ├── post.lua │ │ ├── readuntil.lua │ │ ├── serialize.lua │ │ ├── session.lua │ │ └── urlcode.lua │ ├── copas.lua │ ├── copas │ │ ├── ftp.lua │ │ ├── http.lua │ │ ├── limit.lua │ │ └── smtp.lua │ ├── coxpcall.lua │ ├── lfs.dll │ ├── ltn12.lua │ ├── mime.lua │ ├── mime │ │ └── core.dll │ ├── orbit.lua │ ├── orbit │ │ ├── cache.lua │ │ ├── model.lua │ │ ├── ophandler.lua │ │ ├── pages.lua │ │ └── routes.lua │ ├── rings.dll │ ├── socket.lua │ ├── socket │ │ ├── core.dll │ │ ├── ftp.lua │ │ ├── headers.lua │ │ ├── http.lua │ │ ├── smtp.lua │ │ ├── tp.lua │ │ └── url.lua │ ├── stable.lua │ ├── wsapi.lua │ ├── wsapi │ │ ├── cgi.lua │ │ ├── common.lua │ │ ├── fastcgi.lua │ │ ├── mock.lua │ │ ├── request.lua │ │ ├── response.lua │ │ ├── ringer.lua │ │ ├── sapi.lua │ │ ├── util.lua │ │ └── xavante.lua │ ├── xavante.lua │ └── xavante │ │ ├── cgiluahandler.lua │ │ ├── encoding.lua │ │ ├── filehandler.lua │ │ ├── httpd.lua │ │ ├── indexhandler.lua │ │ ├── mime.lua │ │ ├── patternhandler.lua │ │ ├── redirecthandler.lua │ │ ├── ruleshandler.lua │ │ ├── urlhandler.lua │ │ ├── vhostshandler.lua │ │ └── xavante.lua ├── game │ ├── gameFSM.lua │ └── initGame.lua ├── initState.lua ├── luaBuild.lua └── tools │ ├── GriffinToolsApi.lua │ ├── ToolsServer.lua │ └── web │ ├── api.lua │ ├── favicon.png │ ├── hello.lua │ ├── hello.ws │ ├── index.html │ ├── test.lp │ └── test.op ├── source ├── api │ ├── GriffinToolsApi.h │ ├── InputSystemApi.h │ └── SceneApi.h ├── application │ ├── Engine.h │ ├── FixedTimestep.h │ ├── Timer.h │ ├── UpdateInfo.h │ ├── applicationTypedefs.h │ ├── impl │ │ ├── Engine.cpp │ │ ├── Timer_win32.cpp │ │ └── platform.cpp │ ├── main.cpp │ ├── main.h │ └── platform.h ├── entity │ ├── Component.h │ ├── ComponentFactory.h │ ├── ComponentStore.h │ ├── ComponentStoreSerialization.h │ ├── Entity.h │ ├── EntityManager.h │ ├── EntityTypedefs.h │ ├── components.h │ └── impl │ │ ├── ComponentStore-inl.h │ │ ├── Entity.cpp │ │ └── EntityManager.cpp ├── game │ ├── Game.h │ ├── devCamera │ │ ├── DevCameraSystem.cpp │ │ └── DevCameraSystem.h │ ├── devConsole │ │ ├── DevConsoleSystem.cpp │ │ └── DevConsoleSystem.h │ ├── impl │ │ ├── Game.cpp │ │ └── GameImpl.h │ ├── player │ │ ├── PlayerControlSystem.cpp │ │ └── PlayerControlSystem.h │ ├── positionalEffects │ │ └── screenShake │ │ │ ├── ScreenShakeComponents.h │ │ │ ├── ScreenShakeSystem.cpp │ │ │ └── ScreenShakeSystem.h │ ├── ship │ │ ├── CoolingSystem.h │ │ ├── ElectricalSystem.h │ │ └── PropulsionSystem.h │ ├── sky │ │ ├── SkySystem.cpp │ │ ├── SkySystem.h │ │ └── atmosphere.h │ └── terrain │ │ ├── TerrainSystem.cpp │ │ └── TerrainSystem.h ├── input │ ├── InputSystem.h │ └── impl │ │ ├── InputSystem.cpp │ │ └── InputSystemApi.cpp ├── lua │ ├── InputSystem.lua │ ├── Scene.lua │ ├── extension │ │ ├── JSON.lua │ │ ├── cgilua.lua │ │ ├── cgilua │ │ │ ├── authentication.lua │ │ │ ├── cookies.lua │ │ │ ├── dispatcher.lua │ │ │ ├── loader.lua │ │ │ ├── lp.lua │ │ │ ├── mime.lua │ │ │ ├── post.lua │ │ │ ├── readuntil.lua │ │ │ ├── serialize.lua │ │ │ ├── session.lua │ │ │ └── urlcode.lua │ │ ├── copas.lua │ │ ├── copas │ │ │ ├── ftp.lua │ │ │ ├── http.lua │ │ │ ├── limit.lua │ │ │ └── smtp.lua │ │ ├── coxpcall.lua │ │ ├── lfs.dll │ │ ├── ltn12.lua │ │ ├── mime.lua │ │ ├── mime │ │ │ └── core.dll │ │ ├── rings.dll │ │ ├── socket.lua │ │ ├── socket │ │ │ ├── core.dll │ │ │ ├── ftp.lua │ │ │ ├── headers.lua │ │ │ ├── http.lua │ │ │ ├── smtp.lua │ │ │ ├── tp.lua │ │ │ └── url.lua │ │ ├── stable.lua │ │ ├── wsapi.lua │ │ ├── wsapi │ │ │ ├── cgi.lua │ │ │ ├── common.lua │ │ │ ├── fastcgi.lua │ │ │ ├── mock.lua │ │ │ ├── request.lua │ │ │ ├── response.lua │ │ │ ├── ringer.lua │ │ │ ├── sapi.lua │ │ │ ├── util.lua │ │ │ └── xavante.lua │ │ ├── xavante.lua │ │ └── xavante │ │ │ ├── cgiluahandler.lua │ │ │ ├── encoding.lua │ │ │ ├── filehandler.lua │ │ │ ├── httpd.lua │ │ │ ├── indexhandler.lua │ │ │ ├── mime.lua │ │ │ ├── patternhandler.lua │ │ │ ├── redirecthandler.lua │ │ │ ├── ruleshandler.lua │ │ │ ├── urlhandler.lua │ │ │ └── vhostshandler.lua │ ├── game │ │ ├── gameFSM.lua │ │ └── initGame.lua │ ├── initState.lua │ ├── luaBuild.lua │ └── tools │ │ ├── GriffinToolsApi.lua │ │ └── toolsServer.lua ├── render │ ├── IndexBuffer_GL.h │ ├── Material_GL.h │ ├── ModelManager_GL.h │ ├── Render.h │ ├── RenderComponents.h │ ├── RenderHelpers.h │ ├── RenderResources.h │ ├── RenderTarget3D_GL.h │ ├── RenderTarget_GL.h │ ├── ShaderManager_GL.h │ ├── ShaderProgramLayouts_GL.h │ ├── ShaderProgram_GL.h │ ├── VertexBuffer_GL.h │ ├── cinder │ │ ├── Area.cpp │ │ ├── Area.h │ │ ├── AxisAlignedBox.cpp │ │ ├── AxisAlignedBox.h │ │ ├── Camera.cpp │ │ ├── Camera.h │ │ ├── ChanTraits.h │ │ ├── Color.cpp │ │ ├── Color.h │ │ ├── Fbo.cpp │ │ ├── Fbo.h │ │ ├── Font.cpp │ │ ├── Font.h │ │ ├── Frustum.cpp │ │ ├── Frustum.h │ │ ├── Plane.cpp │ │ ├── Plane.h │ │ ├── Ray.cpp │ │ ├── Ray.h │ │ ├── Rect.cpp │ │ ├── Rect.h │ │ ├── Sphere.cpp │ │ ├── Sphere.h │ │ ├── Text.cpp │ │ ├── Text.h │ │ ├── Texture.cpp │ │ ├── Texture.h │ │ ├── TriMesh.cpp │ │ ├── TriMesh.h │ │ ├── Vbo.cpp │ │ ├── Vbo.h │ │ ├── gl.cpp │ │ └── gl.h │ ├── font │ │ ├── FreeType.cpp │ │ └── FreeType.h │ ├── geometry │ │ ├── Cube.h │ │ ├── Geometry.h │ │ ├── Intersection.h │ │ └── impl │ │ │ ├── Cube.cpp │ │ │ ├── Geometry.cpp │ │ │ └── Intersection.cpp │ ├── impl │ │ ├── IndexBuffer_GL.cpp │ │ ├── ModelManager_GL.cpp │ │ ├── Render.cpp │ │ ├── RenderHelpers.cpp │ │ ├── RenderTarget3D_GL.cpp │ │ ├── RenderTarget_GL.cpp │ │ ├── ShaderManager_GL.cpp │ │ ├── ShaderProgram_GL.cpp │ │ ├── VectorRenderer_GL.cpp │ │ └── VertexBuffer_GL.cpp │ ├── model │ │ ├── Mesh_GL.h │ │ ├── ModelImport_Assimp.h │ │ ├── Model_GL.h │ │ └── impl │ │ │ ├── Animation.cpp │ │ │ ├── Mesh_GL.cpp │ │ │ ├── ModelImport_Assimp.cpp │ │ │ └── Model_GL.cpp │ ├── noise │ │ ├── noise.cpp │ │ ├── noise.h │ │ ├── noiseTexture.cpp │ │ └── noiseTexture.h │ ├── shaders │ │ ├── Font.glsl │ │ ├── SimpleShader.glsl │ │ ├── SkyFromSpace.glsl │ │ ├── ads.glsl │ │ ├── atmosphere │ │ │ ├── atmosphere.glsl │ │ │ ├── atmosphere.hlsl │ │ │ ├── common.glsli │ │ │ ├── copyInscatter1.glsl │ │ │ ├── copyInscatterN.glsl │ │ │ ├── copyIrradiance.glsl │ │ │ ├── earth.glsl │ │ │ ├── inscatter1.glsl │ │ │ ├── inscatterN.glsl │ │ │ ├── inscatterS.glsl │ │ │ ├── irradiance1.glsl │ │ │ ├── irradianceN.glsl │ │ │ └── transmittance.glsl │ │ ├── blinnPhong.glsl │ │ ├── fxaa.glsl │ │ ├── hbao.glsl │ │ ├── layout.glsli │ │ ├── linearDepth.glsl │ │ ├── skybox.glsl │ │ ├── ssao.glsl │ │ ├── ssao2.glsl │ │ ├── ssao3.glsl │ │ ├── terrain.glsl │ │ └── ubo.glsli │ └── texture │ │ ├── Texture2D_GL.h │ │ ├── TextureCubeMap_GL.h │ │ ├── dds.cpp │ │ ├── dds.h │ │ └── impl │ │ ├── Texture2D_GL.cpp │ │ └── TextureCubeMap_GL.cpp ├── resource │ ├── Resource.h │ ├── ResourceCache.h │ ├── ResourceLoader.h │ ├── ResourceSource.h │ ├── ResourceTypedefs.h │ └── impl │ │ ├── ResourceCache.cpp │ │ ├── ResourceLoader-inl.h │ │ ├── ResourceLoader.cpp │ │ └── ResourceSource.cpp ├── scene │ ├── Camera.h │ ├── Scene.h │ ├── SceneGraph.h │ └── impl │ │ ├── Camera.cpp │ │ ├── Scene.cpp │ │ ├── SceneApi.cpp │ │ └── SceneGraph.cpp ├── script │ ├── ScriptManager_LuaJIT.h │ └── impl │ │ └── ScriptManager_LuaJIT.cpp ├── tests │ ├── Test.cpp │ ├── Test.h │ ├── concurrency_tests.cpp │ ├── container_tests.cpp │ ├── entity_tests.cpp │ └── scene_tests.cpp ├── tools │ ├── GriffinTools.h │ └── impl │ │ ├── GriffinTools.cpp │ │ └── GriffinToolsApi.cpp └── utility │ ├── JsonSerializer.h │ ├── Logger.h │ ├── algorithms.h │ ├── auto_lister.h │ ├── blend.h │ ├── concurrency.h │ ├── container │ ├── bitwise_quadtree.h │ ├── concurrent_queue.h │ ├── handle_map.h │ ├── hash_map.h │ ├── impl │ │ ├── bitwise_quadtree-inl.h │ │ ├── concurrent_queue-inl.h │ │ ├── handle_map-inl.h │ │ ├── hash_map-inl.h │ │ └── vector_queue-inl.h │ ├── intrusive_tree_helper.h │ ├── serial_task_queue.h │ ├── vector_list.h │ └── vector_queue.h │ ├── debug.h │ ├── enum.h │ ├── export.h │ ├── impl │ └── Logger.cpp │ ├── json │ ├── json-forwards.h │ ├── json.h │ └── jsoncpp.cpp │ ├── memory_reserve.h │ ├── prettyprint.h │ ├── profile │ ├── Profile.h │ ├── ProfileAggregate.h │ └── impl │ │ └── Profile.cpp │ ├── reflection.h │ └── serialization │ ├── BinarySerializer.h │ └── JsonSerializer.h ├── vendor ├── .gitignore ├── SDL2-2.0.7 │ ├── docs │ │ ├── README-android.md │ │ ├── README-cmake.md │ │ ├── README-directfb.md │ │ ├── README-dynapi.md │ │ ├── README-emscripten.md │ │ ├── README-gesture.md │ │ ├── README-hg.md │ │ ├── README-ios.md │ │ ├── README-linux.md │ │ ├── README-macosx.md │ │ ├── README-nacl.md │ │ ├── README-pandora.md │ │ ├── README-platforms.md │ │ ├── README-porting.md │ │ ├── README-psp.md │ │ ├── README-raspberrypi.md │ │ ├── README-touch.md │ │ ├── README-wince.md │ │ ├── README-windows.md │ │ ├── README-winrt.md │ │ ├── README.md │ │ └── doxyfile │ ├── include │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_config.h.cmake │ │ ├── SDL_config.h.in │ │ ├── SDL_config_android.h │ │ ├── SDL_config_iphoneos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_macosx.h.orig │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_pandora.h │ │ ├── SDL_config_psp.h │ │ ├── SDL_config_windows.h │ │ ├── SDL_config_winrt.h │ │ ├── SDL_config_wiz.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_egl.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_filesystem.h │ │ ├── SDL_gamecontroller.h │ │ ├── SDL_gesture.h │ │ ├── SDL_haptic.h │ │ ├── SDL_hints.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_opengl_glext.h │ │ ├── SDL_opengles.h │ │ ├── SDL_opengles2.h │ │ ├── SDL_opengles2_gl2.h │ │ ├── SDL_opengles2_gl2ext.h │ │ ├── SDL_opengles2_gl2platform.h │ │ ├── SDL_opengles2_khrplatform.h │ │ ├── SDL_pixels.h │ │ ├── SDL_platform.h │ │ ├── SDL_power.h │ │ ├── SDL_quit.h │ │ ├── SDL_rect.h │ │ ├── SDL_render.h │ │ ├── SDL_revision.h │ │ ├── SDL_rwops.h │ │ ├── SDL_scancode.h │ │ ├── SDL_shape.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_surface.h │ │ ├── SDL_system.h │ │ ├── SDL_syswm.h │ │ ├── SDL_test.h │ │ ├── SDL_test_assert.h │ │ ├── SDL_test_common.h │ │ ├── SDL_test_compare.h │ │ ├── SDL_test_crc32.h │ │ ├── SDL_test_font.h │ │ ├── SDL_test_fuzzer.h │ │ ├── SDL_test_harness.h │ │ ├── SDL_test_images.h │ │ ├── SDL_test_log.h │ │ ├── SDL_test_md5.h │ │ ├── SDL_test_memory.h │ │ ├── SDL_test_random.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_touch.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── SDL_vulkan.h │ │ ├── begin_code.h │ │ └── close_code.h │ └── lib │ │ ├── x64 │ │ ├── SDL2.dll │ │ ├── SDL2.lib │ │ ├── SDL2main.lib │ │ └── SDL2test.lib │ │ └── x86 │ │ ├── SDL2.dll │ │ ├── SDL2.lib │ │ ├── SDL2main.lib │ │ └── SDL2test.lib ├── assimp │ ├── assimp.dll │ ├── include │ │ └── assimp │ │ │ ├── BaseImporter.h │ │ │ ├── Bitmap.h │ │ │ ├── BlobIOSystem.h │ │ │ ├── ByteSwapper.h │ │ │ ├── Compiler │ │ │ ├── poppack1.h │ │ │ ├── pstdint.h │ │ │ └── pushpack1.h │ │ │ ├── CreateAnimMesh.h │ │ │ ├── DefaultIOStream.h │ │ │ ├── DefaultIOSystem.h │ │ │ ├── DefaultLogger.hpp │ │ │ ├── Defines.h │ │ │ ├── Exceptional.h │ │ │ ├── Exporter.hpp │ │ │ ├── GenericProperty.h │ │ │ ├── Hash.h │ │ │ ├── IOStream.hpp │ │ │ ├── IOStreamBuffer.h │ │ │ ├── IOSystem.hpp │ │ │ ├── Importer.hpp │ │ │ ├── LineSplitter.h │ │ │ ├── LogAux.h │ │ │ ├── LogStream.hpp │ │ │ ├── Logger.hpp │ │ │ ├── Macros.h │ │ │ ├── MathFunctions.h │ │ │ ├── MemoryIOWrapper.h │ │ │ ├── NullLogger.hpp │ │ │ ├── ParsingUtils.h │ │ │ ├── Profiler.h │ │ │ ├── ProgressHandler.hpp │ │ │ ├── RemoveComments.h │ │ │ ├── SGSpatialSort.h │ │ │ ├── SceneCombiner.h │ │ │ ├── SkeletonMeshBuilder.h │ │ │ ├── SmoothingGroups.h │ │ │ ├── SmoothingGroups.inl │ │ │ ├── SpatialSort.h │ │ │ ├── StandardShapes.h │ │ │ ├── StreamReader.h │ │ │ ├── StreamWriter.h │ │ │ ├── StringComparison.h │ │ │ ├── StringUtils.h │ │ │ ├── Subdivision.h │ │ │ ├── TinyFormatter.h │ │ │ ├── Vertex.h │ │ │ ├── XMLTools.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 │ │ │ ├── fast_atof.h │ │ │ ├── importerdesc.h │ │ │ ├── irrXMLWrapper.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 │ │ │ ├── qnan.h │ │ │ ├── quaternion.h │ │ │ ├── quaternion.inl │ │ │ ├── scene.h │ │ │ ├── texture.h │ │ │ ├── types.h │ │ │ ├── vector2.h │ │ │ ├── vector2.inl │ │ │ ├── vector3.h │ │ │ ├── vector3.inl │ │ │ └── version.h │ ├── lib64 │ │ ├── IrrXML.lib │ │ ├── assimp.exp │ │ ├── assimp.lib │ │ ├── zlib.exp │ │ ├── zlib.lib │ │ └── zlibstatic.lib │ └── zlib.dll ├── assimp_3_1_1 │ ├── assimp.dll │ ├── include │ │ └── assimp │ │ │ ├── Compiler │ │ │ ├── poppack1.h │ │ │ ├── pstdint.h │ │ │ └── pushpack1.h │ │ │ ├── DefaultLogger.hpp │ │ │ ├── Exporter.hpp │ │ │ ├── IOStream.hpp │ │ │ ├── IOSystem.hpp │ │ │ ├── Importer.hpp │ │ │ ├── LogStream.hpp │ │ │ ├── Logger.hpp │ │ │ ├── NullLogger.hpp │ │ │ ├── ProgressHandler.hpp │ │ │ ├── ai_assert.h │ │ │ ├── anim.h │ │ │ ├── camera.h │ │ │ ├── cexport.h │ │ │ ├── cfileio.h │ │ │ ├── cimport.h │ │ │ ├── color4.h │ │ │ ├── color4.inl │ │ │ ├── config.h │ │ │ ├── defs.h │ │ │ ├── importerdesc.h │ │ │ ├── light.h │ │ │ ├── material.h │ │ │ ├── material.inl │ │ │ ├── matrix3x3.h │ │ │ ├── matrix3x3.inl │ │ │ ├── matrix4x4.h │ │ │ ├── matrix4x4.inl │ │ │ ├── mesh.h │ │ │ ├── metadata.h │ │ │ ├── postprocess.h │ │ │ ├── quaternion.h │ │ │ ├── quaternion.inl │ │ │ ├── scene.h │ │ │ ├── texture.h │ │ │ ├── types.h │ │ │ ├── vector2.h │ │ │ ├── vector2.inl │ │ │ ├── vector3.h │ │ │ ├── vector3.inl │ │ │ └── version.h │ ├── lib64 │ │ └── assimp.lib │ └── zlib1.dll ├── boost_1_57_0 │ ├── .gitignore │ └── boost │ │ ├── aligned_storage.hpp │ │ ├── assert.hpp │ │ ├── blank.hpp │ │ ├── blank_fwd.hpp │ │ ├── config.hpp │ │ ├── config │ │ ├── abi │ │ │ ├── borland_prefix.hpp │ │ │ ├── borland_suffix.hpp │ │ │ ├── msvc_prefix.hpp │ │ │ └── msvc_suffix.hpp │ │ ├── abi_prefix.hpp │ │ ├── abi_suffix.hpp │ │ ├── auto_link.hpp │ │ ├── compiler │ │ │ ├── borland.hpp │ │ │ ├── clang.hpp │ │ │ ├── codegear.hpp │ │ │ ├── comeau.hpp │ │ │ ├── common_edg.hpp │ │ │ ├── compaq_cxx.hpp │ │ │ ├── cray.hpp │ │ │ ├── digitalmars.hpp │ │ │ ├── gcc.hpp │ │ │ ├── gcc_xml.hpp │ │ │ ├── greenhills.hpp │ │ │ ├── hp_acc.hpp │ │ │ ├── intel.hpp │ │ │ ├── kai.hpp │ │ │ ├── metrowerks.hpp │ │ │ ├── mpw.hpp │ │ │ ├── nvcc.hpp │ │ │ ├── pathscale.hpp │ │ │ ├── pgi.hpp │ │ │ ├── sgi_mipspro.hpp │ │ │ ├── sunpro_cc.hpp │ │ │ ├── vacpp.hpp │ │ │ └── visualc.hpp │ │ ├── no_tr1 │ │ │ ├── cmath.hpp │ │ │ ├── complex.hpp │ │ │ ├── functional.hpp │ │ │ ├── memory.hpp │ │ │ └── utility.hpp │ │ ├── platform │ │ │ ├── aix.hpp │ │ │ ├── amigaos.hpp │ │ │ ├── beos.hpp │ │ │ ├── bsd.hpp │ │ │ ├── cray.hpp │ │ │ ├── cygwin.hpp │ │ │ ├── hpux.hpp │ │ │ ├── irix.hpp │ │ │ ├── linux.hpp │ │ │ ├── macos.hpp │ │ │ ├── qnxnto.hpp │ │ │ ├── solaris.hpp │ │ │ ├── symbian.hpp │ │ │ ├── vms.hpp │ │ │ ├── vxworks.hpp │ │ │ └── win32.hpp │ │ ├── posix_features.hpp │ │ ├── requires_threads.hpp │ │ ├── select_compiler_config.hpp │ │ ├── select_platform_config.hpp │ │ ├── select_stdlib_config.hpp │ │ ├── stdlib │ │ │ ├── dinkumware.hpp │ │ │ ├── libcomo.hpp │ │ │ ├── libcpp.hpp │ │ │ ├── libstdcpp3.hpp │ │ │ ├── modena.hpp │ │ │ ├── msl.hpp │ │ │ ├── roguewave.hpp │ │ │ ├── sgi.hpp │ │ │ ├── stlport.hpp │ │ │ └── vacpp.hpp │ │ ├── suffix.hpp │ │ ├── user.hpp │ │ └── warning_disable.hpp │ │ ├── container │ │ ├── adaptive_pool.hpp │ │ ├── allocator.hpp │ │ ├── allocator_traits.hpp │ │ ├── container_fwd.hpp │ │ ├── deque.hpp │ │ ├── detail │ │ │ ├── adaptive_node_pool.hpp │ │ │ ├── adaptive_node_pool_impl.hpp │ │ │ ├── advanced_insert_int.hpp │ │ │ ├── algorithms.hpp │ │ │ ├── alloc_lib.h │ │ │ ├── alloc_lib_auto_link.hpp │ │ │ ├── allocation_type.hpp │ │ │ ├── allocator_version_traits.hpp │ │ │ ├── auto_link.hpp │ │ │ ├── config_begin.hpp │ │ │ ├── config_end.hpp │ │ │ ├── destroyers.hpp │ │ │ ├── flat_tree.hpp │ │ │ ├── function_detector.hpp │ │ │ ├── hash_table.hpp │ │ │ ├── iterators.hpp │ │ │ ├── math_functions.hpp │ │ │ ├── memory_util.hpp │ │ │ ├── mpl.hpp │ │ │ ├── multiallocation_chain.hpp │ │ │ ├── mutex.hpp │ │ │ ├── node_alloc_holder.hpp │ │ │ ├── node_pool.hpp │ │ │ ├── node_pool_impl.hpp │ │ │ ├── pair.hpp │ │ │ ├── placement_new.hpp │ │ │ ├── pool_common.hpp │ │ │ ├── pool_common_alloc.hpp │ │ │ ├── preprocessor.hpp │ │ │ ├── singleton.hpp │ │ │ ├── std_fwd.hpp │ │ │ ├── transform_iterator.hpp │ │ │ ├── tree.hpp │ │ │ ├── type_traits.hpp │ │ │ ├── utilities.hpp │ │ │ ├── value_init.hpp │ │ │ ├── variadic_templates_tools.hpp │ │ │ ├── version_type.hpp │ │ │ └── workaround.hpp │ │ ├── flat_map.hpp │ │ ├── flat_set.hpp │ │ ├── list.hpp │ │ ├── map.hpp │ │ ├── node_allocator.hpp │ │ ├── options.hpp │ │ ├── scoped_allocator.hpp │ │ ├── scoped_allocator_fwd.hpp │ │ ├── set.hpp │ │ ├── slist.hpp │ │ ├── stable_vector.hpp │ │ ├── static_vector.hpp │ │ ├── string.hpp │ │ ├── throw_exception.hpp │ │ └── vector.hpp │ │ ├── core │ │ ├── addressof.hpp │ │ ├── checked_delete.hpp │ │ ├── demangle.hpp │ │ ├── enable_if.hpp │ │ ├── explicit_operator_bool.hpp │ │ ├── ignore_unused.hpp │ │ ├── is_same.hpp │ │ ├── lightweight_test.hpp │ │ ├── lightweight_test_trait.hpp │ │ ├── no_exceptions_support.hpp │ │ ├── noncopyable.hpp │ │ ├── null_deleter.hpp │ │ ├── ref.hpp │ │ ├── scoped_enum.hpp │ │ ├── swap.hpp │ │ ├── typeinfo.hpp │ │ └── underlying_type.hpp │ │ ├── detail │ │ ├── algorithm.hpp │ │ ├── allocator_utilities.hpp │ │ ├── atomic_count.hpp │ │ ├── atomic_redef_macros.hpp │ │ ├── atomic_undef_macros.hpp │ │ ├── basic_pointerbuf.hpp │ │ ├── binary_search.hpp │ │ ├── bitmask.hpp │ │ ├── call_traits.hpp │ │ ├── catch_exceptions.hpp │ │ ├── compressed_pair.hpp │ │ ├── container_fwd.hpp │ │ ├── dynamic_bitset.hpp │ │ ├── endian.hpp │ │ ├── fenv.hpp │ │ ├── has_default_constructor.hpp │ │ ├── identifier.hpp │ │ ├── indirect_traits.hpp │ │ ├── interlocked.hpp │ │ ├── is_incrementable.hpp │ │ ├── is_sorted.hpp │ │ ├── is_xxx.hpp │ │ ├── iterator.hpp │ │ ├── lcast_precision.hpp │ │ ├── lightweight_main.hpp │ │ ├── lightweight_mutex.hpp │ │ ├── lightweight_test.hpp │ │ ├── lightweight_thread.hpp │ │ ├── named_template_params.hpp │ │ ├── no_exceptions_support.hpp │ │ ├── numeric_traits.hpp │ │ ├── ob_compressed_pair.hpp │ │ ├── quick_allocator.hpp │ │ ├── reference_content.hpp │ │ ├── scoped_enum_emulation.hpp │ │ ├── select_type.hpp │ │ ├── sp_typeinfo.hpp │ │ ├── templated_streams.hpp │ │ ├── utf8_codecvt_facet.hpp │ │ ├── utf8_codecvt_facet.ipp │ │ ├── winapi │ │ │ ├── GetCurrentProcess.hpp │ │ │ ├── GetCurrentThread.hpp │ │ │ ├── GetLastError.hpp │ │ │ ├── GetProcessTimes.hpp │ │ │ ├── GetThreadTimes.hpp │ │ │ ├── LocalFree.hpp │ │ │ ├── basic_types.hpp │ │ │ ├── config.hpp │ │ │ ├── crypt.hpp │ │ │ ├── directory_management.hpp │ │ │ ├── dll.hpp │ │ │ ├── error_handling.hpp │ │ │ ├── file_management.hpp │ │ │ ├── handles.hpp │ │ │ ├── memory.hpp │ │ │ ├── process.hpp │ │ │ ├── security.hpp │ │ │ ├── synchronization.hpp │ │ │ ├── system.hpp │ │ │ ├── thread.hpp │ │ │ ├── thread_pool.hpp │ │ │ ├── time.hpp │ │ │ ├── timers.hpp │ │ │ ├── tls.hpp │ │ │ └── waitable_timer.hpp │ │ └── workaround.hpp │ │ ├── fusion │ │ ├── adapted.hpp │ │ ├── adapted │ │ │ ├── adt.hpp │ │ │ ├── adt │ │ │ │ ├── adapt_adt.hpp │ │ │ │ ├── adapt_adt_named.hpp │ │ │ │ ├── adapt_assoc_adt.hpp │ │ │ │ ├── adapt_assoc_adt_named.hpp │ │ │ │ └── detail │ │ │ │ │ ├── adapt_base.hpp │ │ │ │ │ └── extension.hpp │ │ │ ├── array.hpp │ │ │ ├── array │ │ │ │ ├── at_impl.hpp │ │ │ │ ├── begin_impl.hpp │ │ │ │ ├── category_of_impl.hpp │ │ │ │ ├── deref_impl.hpp │ │ │ │ ├── end_impl.hpp │ │ │ │ ├── is_sequence_impl.hpp │ │ │ │ ├── is_view_impl.hpp │ │ │ │ ├── size_impl.hpp │ │ │ │ ├── tag_of.hpp │ │ │ │ ├── value_at_impl.hpp │ │ │ │ └── value_of_impl.hpp │ │ │ ├── boost_array.hpp │ │ │ ├── boost_array │ │ │ │ ├── array_iterator.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ ├── category_of_impl.hpp │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ ├── is_sequence_impl.hpp │ │ │ │ │ ├── is_view_impl.hpp │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ └── value_at_impl.hpp │ │ │ │ └── tag_of.hpp │ │ │ ├── boost_tuple.hpp │ │ │ ├── boost_tuple │ │ │ │ ├── boost_tuple_iterator.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ ├── category_of_impl.hpp │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ ├── is_sequence_impl.hpp │ │ │ │ │ ├── is_view_impl.hpp │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ └── value_at_impl.hpp │ │ │ │ └── tag_of.hpp │ │ │ ├── mpl.hpp │ │ │ ├── mpl │ │ │ │ ├── detail │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ ├── category_of_impl.hpp │ │ │ │ │ ├── empty_impl.hpp │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ ├── has_key_impl.hpp │ │ │ │ │ ├── is_sequence_impl.hpp │ │ │ │ │ ├── is_view_impl.hpp │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ └── value_at_impl.hpp │ │ │ │ └── mpl_iterator.hpp │ │ │ ├── std_pair.hpp │ │ │ ├── std_tuple.hpp │ │ │ ├── std_tuple │ │ │ │ ├── detail │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ ├── category_of_impl.hpp │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ ├── is_sequence_impl.hpp │ │ │ │ │ ├── is_view_impl.hpp │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ └── value_at_impl.hpp │ │ │ │ ├── std_tuple_iterator.hpp │ │ │ │ └── tag_of.hpp │ │ │ ├── struct.hpp │ │ │ └── struct │ │ │ │ ├── adapt_assoc_struct.hpp │ │ │ │ ├── adapt_assoc_struct_named.hpp │ │ │ │ ├── adapt_struct.hpp │ │ │ │ ├── adapt_struct_named.hpp │ │ │ │ ├── define_assoc_struct.hpp │ │ │ │ ├── define_struct.hpp │ │ │ │ ├── define_struct_inline.hpp │ │ │ │ └── detail │ │ │ │ ├── adapt_base.hpp │ │ │ │ ├── at_impl.hpp │ │ │ │ ├── begin_impl.hpp │ │ │ │ ├── category_of_impl.hpp │ │ │ │ ├── define_struct.hpp │ │ │ │ ├── define_struct_inline.hpp │ │ │ │ ├── deref_data_impl.hpp │ │ │ │ ├── deref_impl.hpp │ │ │ │ ├── end_impl.hpp │ │ │ │ ├── extension.hpp │ │ │ │ ├── is_sequence_impl.hpp │ │ │ │ ├── is_view_impl.hpp │ │ │ │ ├── key_of_impl.hpp │ │ │ │ ├── namespace.hpp │ │ │ │ ├── proxy_type.hpp │ │ │ │ ├── size_impl.hpp │ │ │ │ ├── value_at_impl.hpp │ │ │ │ ├── value_of_data_impl.hpp │ │ │ │ └── value_of_impl.hpp │ │ ├── algorithm.hpp │ │ ├── algorithm │ │ │ ├── auxiliary.hpp │ │ │ ├── auxiliary │ │ │ │ ├── copy.hpp │ │ │ │ └── move.hpp │ │ │ ├── iteration.hpp │ │ │ ├── iteration │ │ │ │ ├── accumulate.hpp │ │ │ │ ├── accumulate_fwd.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── fold.hpp │ │ │ │ │ ├── for_each.hpp │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ ├── fold.hpp │ │ │ │ │ │ ├── iter_fold.hpp │ │ │ │ │ │ ├── reverse_fold.hpp │ │ │ │ │ │ └── reverse_iter_fold.hpp │ │ │ │ │ ├── segmented_fold.hpp │ │ │ │ │ └── segmented_for_each.hpp │ │ │ │ ├── fold.hpp │ │ │ │ ├── fold_fwd.hpp │ │ │ │ ├── for_each.hpp │ │ │ │ ├── for_each_fwd.hpp │ │ │ │ ├── iter_fold.hpp │ │ │ │ ├── iter_fold_fwd.hpp │ │ │ │ ├── reverse_fold.hpp │ │ │ │ ├── reverse_fold_fwd.hpp │ │ │ │ ├── reverse_iter_fold.hpp │ │ │ │ └── reverse_iter_fold_fwd.hpp │ │ │ ├── query.hpp │ │ │ ├── query │ │ │ │ ├── all.hpp │ │ │ │ ├── any.hpp │ │ │ │ ├── count.hpp │ │ │ │ ├── count_if.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── all.hpp │ │ │ │ │ ├── any.hpp │ │ │ │ │ ├── count.hpp │ │ │ │ │ ├── count_if.hpp │ │ │ │ │ ├── find_if.hpp │ │ │ │ │ ├── segmented_find.hpp │ │ │ │ │ └── segmented_find_if.hpp │ │ │ │ ├── find.hpp │ │ │ │ ├── find_fwd.hpp │ │ │ │ ├── find_if.hpp │ │ │ │ ├── find_if_fwd.hpp │ │ │ │ └── none.hpp │ │ │ ├── transformation.hpp │ │ │ └── transformation │ │ │ │ ├── clear.hpp │ │ │ │ ├── detail │ │ │ │ ├── preprocessed │ │ │ │ │ ├── zip.hpp │ │ │ │ │ ├── zip10.hpp │ │ │ │ │ ├── zip20.hpp │ │ │ │ │ ├── zip30.hpp │ │ │ │ │ ├── zip40.hpp │ │ │ │ │ └── zip50.hpp │ │ │ │ ├── replace.hpp │ │ │ │ └── replace_if.hpp │ │ │ │ ├── erase.hpp │ │ │ │ ├── erase_key.hpp │ │ │ │ ├── filter.hpp │ │ │ │ ├── filter_if.hpp │ │ │ │ ├── flatten.hpp │ │ │ │ ├── insert.hpp │ │ │ │ ├── insert_range.hpp │ │ │ │ ├── join.hpp │ │ │ │ ├── pop_back.hpp │ │ │ │ ├── pop_front.hpp │ │ │ │ ├── push_back.hpp │ │ │ │ ├── push_front.hpp │ │ │ │ ├── remove.hpp │ │ │ │ ├── remove_if.hpp │ │ │ │ ├── replace.hpp │ │ │ │ ├── replace_if.hpp │ │ │ │ ├── reverse.hpp │ │ │ │ ├── transform.hpp │ │ │ │ └── zip.hpp │ │ ├── container.hpp │ │ ├── container │ │ │ ├── deque.hpp │ │ │ ├── deque │ │ │ │ ├── back_extended_deque.hpp │ │ │ │ ├── convert.hpp │ │ │ │ ├── deque.hpp │ │ │ │ ├── deque_fwd.hpp │ │ │ │ ├── deque_iterator.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ ├── build_deque.hpp │ │ │ │ │ ├── convert_impl.hpp │ │ │ │ │ ├── cpp03 │ │ │ │ │ │ ├── as_deque.hpp │ │ │ │ │ │ ├── build_deque.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── deque_forward_ctor.hpp │ │ │ │ │ │ ├── deque_fwd.hpp │ │ │ │ │ │ ├── deque_initial_size.hpp │ │ │ │ │ │ ├── deque_keyed_values.hpp │ │ │ │ │ │ ├── deque_keyed_values_call.hpp │ │ │ │ │ │ ├── limits.hpp │ │ │ │ │ │ └── preprocessed │ │ │ │ │ │ │ ├── as_deque.hpp │ │ │ │ │ │ │ ├── as_deque10.hpp │ │ │ │ │ │ │ ├── as_deque20.hpp │ │ │ │ │ │ │ ├── as_deque30.hpp │ │ │ │ │ │ │ ├── as_deque40.hpp │ │ │ │ │ │ │ ├── as_deque50.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── deque10.hpp │ │ │ │ │ │ │ ├── deque10_fwd.hpp │ │ │ │ │ │ │ ├── deque20.hpp │ │ │ │ │ │ │ ├── deque20_fwd.hpp │ │ │ │ │ │ │ ├── deque30.hpp │ │ │ │ │ │ │ ├── deque30_fwd.hpp │ │ │ │ │ │ │ ├── deque40.hpp │ │ │ │ │ │ │ ├── deque40_fwd.hpp │ │ │ │ │ │ │ ├── deque50.hpp │ │ │ │ │ │ │ ├── deque50_fwd.hpp │ │ │ │ │ │ │ ├── deque_fwd.hpp │ │ │ │ │ │ │ ├── deque_initial_size.hpp │ │ │ │ │ │ │ ├── deque_initial_size10.hpp │ │ │ │ │ │ │ ├── deque_initial_size20.hpp │ │ │ │ │ │ │ ├── deque_initial_size30.hpp │ │ │ │ │ │ │ ├── deque_initial_size40.hpp │ │ │ │ │ │ │ ├── deque_initial_size50.hpp │ │ │ │ │ │ │ ├── deque_keyed_values.hpp │ │ │ │ │ │ │ ├── deque_keyed_values10.hpp │ │ │ │ │ │ │ ├── deque_keyed_values20.hpp │ │ │ │ │ │ │ ├── deque_keyed_values30.hpp │ │ │ │ │ │ │ ├── deque_keyed_values40.hpp │ │ │ │ │ │ │ └── deque_keyed_values50.hpp │ │ │ │ │ ├── deque_keyed_values.hpp │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ ├── is_sequence_impl.hpp │ │ │ │ │ ├── keyed_element.hpp │ │ │ │ │ └── value_at_impl.hpp │ │ │ │ └── front_extended_deque.hpp │ │ │ ├── generation.hpp │ │ │ ├── generation │ │ │ │ ├── cons_tie.hpp │ │ │ │ ├── deque_tie.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── pp_deque_tie.hpp │ │ │ │ │ ├── pp_make_deque.hpp │ │ │ │ │ ├── pp_make_map.hpp │ │ │ │ │ ├── pp_map_tie.hpp │ │ │ │ │ └── preprocessed │ │ │ │ │ │ ├── deque_tie.hpp │ │ │ │ │ │ ├── deque_tie10.hpp │ │ │ │ │ │ ├── deque_tie20.hpp │ │ │ │ │ │ ├── deque_tie30.hpp │ │ │ │ │ │ ├── deque_tie40.hpp │ │ │ │ │ │ ├── deque_tie50.hpp │ │ │ │ │ │ ├── list_tie.hpp │ │ │ │ │ │ ├── list_tie10.hpp │ │ │ │ │ │ ├── list_tie20.hpp │ │ │ │ │ │ ├── list_tie30.hpp │ │ │ │ │ │ ├── list_tie40.hpp │ │ │ │ │ │ ├── list_tie50.hpp │ │ │ │ │ │ ├── make_deque.hpp │ │ │ │ │ │ ├── make_deque10.hpp │ │ │ │ │ │ ├── make_deque20.hpp │ │ │ │ │ │ ├── make_deque30.hpp │ │ │ │ │ │ ├── make_deque40.hpp │ │ │ │ │ │ ├── make_deque50.hpp │ │ │ │ │ │ ├── make_list.hpp │ │ │ │ │ │ ├── make_list10.hpp │ │ │ │ │ │ ├── make_list20.hpp │ │ │ │ │ │ ├── make_list30.hpp │ │ │ │ │ │ ├── make_list40.hpp │ │ │ │ │ │ ├── make_list50.hpp │ │ │ │ │ │ ├── make_map.hpp │ │ │ │ │ │ ├── make_map10.hpp │ │ │ │ │ │ ├── make_map20.hpp │ │ │ │ │ │ ├── make_map30.hpp │ │ │ │ │ │ ├── make_map40.hpp │ │ │ │ │ │ ├── make_map50.hpp │ │ │ │ │ │ ├── make_set.hpp │ │ │ │ │ │ ├── make_set10.hpp │ │ │ │ │ │ ├── make_set20.hpp │ │ │ │ │ │ ├── make_set30.hpp │ │ │ │ │ │ ├── make_set40.hpp │ │ │ │ │ │ ├── make_set50.hpp │ │ │ │ │ │ ├── make_vector.hpp │ │ │ │ │ │ ├── make_vector10.hpp │ │ │ │ │ │ ├── make_vector20.hpp │ │ │ │ │ │ ├── make_vector30.hpp │ │ │ │ │ │ ├── make_vector40.hpp │ │ │ │ │ │ ├── make_vector50.hpp │ │ │ │ │ │ ├── map_tie.hpp │ │ │ │ │ │ ├── map_tie10.hpp │ │ │ │ │ │ ├── map_tie20.hpp │ │ │ │ │ │ ├── map_tie30.hpp │ │ │ │ │ │ ├── map_tie40.hpp │ │ │ │ │ │ ├── map_tie50.hpp │ │ │ │ │ │ ├── vector_tie.hpp │ │ │ │ │ │ ├── vector_tie10.hpp │ │ │ │ │ │ ├── vector_tie20.hpp │ │ │ │ │ │ ├── vector_tie30.hpp │ │ │ │ │ │ ├── vector_tie40.hpp │ │ │ │ │ │ └── vector_tie50.hpp │ │ │ │ ├── ignore.hpp │ │ │ │ ├── list_tie.hpp │ │ │ │ ├── make_cons.hpp │ │ │ │ ├── make_deque.hpp │ │ │ │ ├── make_list.hpp │ │ │ │ ├── make_map.hpp │ │ │ │ ├── make_set.hpp │ │ │ │ ├── make_vector.hpp │ │ │ │ ├── map_tie.hpp │ │ │ │ ├── pair_tie.hpp │ │ │ │ └── vector_tie.hpp │ │ │ ├── list.hpp │ │ │ ├── list │ │ │ │ ├── cons.hpp │ │ │ │ ├── cons_fwd.hpp │ │ │ │ ├── cons_iterator.hpp │ │ │ │ ├── convert.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ ├── build_cons.hpp │ │ │ │ │ ├── convert_impl.hpp │ │ │ │ │ ├── deref_impl.hpp │ │ │ │ │ ├── empty_impl.hpp │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ ├── equal_to_impl.hpp │ │ │ │ │ ├── list_forward_ctor.hpp │ │ │ │ │ ├── list_to_cons.hpp │ │ │ │ │ ├── list_to_cons_call.hpp │ │ │ │ │ ├── next_impl.hpp │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list10.hpp │ │ │ │ │ │ ├── list10_fwd.hpp │ │ │ │ │ │ ├── list20.hpp │ │ │ │ │ │ ├── list20_fwd.hpp │ │ │ │ │ │ ├── list30.hpp │ │ │ │ │ │ ├── list30_fwd.hpp │ │ │ │ │ │ ├── list40.hpp │ │ │ │ │ │ ├── list40_fwd.hpp │ │ │ │ │ │ ├── list50.hpp │ │ │ │ │ │ ├── list50_fwd.hpp │ │ │ │ │ │ ├── list_fwd.hpp │ │ │ │ │ │ ├── list_to_cons.hpp │ │ │ │ │ │ ├── list_to_cons10.hpp │ │ │ │ │ │ ├── list_to_cons20.hpp │ │ │ │ │ │ ├── list_to_cons30.hpp │ │ │ │ │ │ ├── list_to_cons40.hpp │ │ │ │ │ │ └── list_to_cons50.hpp │ │ │ │ │ ├── reverse_cons.hpp │ │ │ │ │ ├── value_at_impl.hpp │ │ │ │ │ └── value_of_impl.hpp │ │ │ │ ├── limits.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── list_fwd.hpp │ │ │ │ └── nil.hpp │ │ │ ├── map.hpp │ │ │ ├── map │ │ │ │ ├── convert.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ ├── at_key_impl.hpp │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ ├── build_map.hpp │ │ │ │ │ ├── cpp03 │ │ │ │ │ │ ├── as_map.hpp │ │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ │ ├── convert.hpp │ │ │ │ │ │ ├── convert_impl.hpp │ │ │ │ │ │ ├── deref_data_impl.hpp │ │ │ │ │ │ ├── deref_impl.hpp │ │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ │ ├── key_of_impl.hpp │ │ │ │ │ │ ├── limits.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── map_forward_ctor.hpp │ │ │ │ │ │ ├── map_fwd.hpp │ │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ │ ├── as_map.hpp │ │ │ │ │ │ │ ├── as_map10.hpp │ │ │ │ │ │ │ ├── as_map20.hpp │ │ │ │ │ │ │ ├── as_map30.hpp │ │ │ │ │ │ │ ├── as_map40.hpp │ │ │ │ │ │ │ ├── as_map50.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ │ ├── map10_fwd.hpp │ │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ │ ├── map20_fwd.hpp │ │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ │ ├── map30_fwd.hpp │ │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ │ ├── map40_fwd.hpp │ │ │ │ │ │ │ ├── map50.hpp │ │ │ │ │ │ │ ├── map50_fwd.hpp │ │ │ │ │ │ │ └── map_fwd.hpp │ │ │ │ │ │ ├── value_at_impl.hpp │ │ │ │ │ │ ├── value_of_data_impl.hpp │ │ │ │ │ │ └── value_of_impl.hpp │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ ├── map_impl.hpp │ │ │ │ │ ├── map_index.hpp │ │ │ │ │ ├── value_at_impl.hpp │ │ │ │ │ └── value_at_key_impl.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── map_fwd.hpp │ │ │ │ └── map_iterator.hpp │ │ │ ├── set.hpp │ │ │ ├── set │ │ │ │ ├── convert.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── as_set.hpp │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ ├── convert_impl.hpp │ │ │ │ │ ├── deref_data_impl.hpp │ │ │ │ │ ├── deref_impl.hpp │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ ├── key_of_impl.hpp │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ ├── as_set.hpp │ │ │ │ │ │ ├── as_set10.hpp │ │ │ │ │ │ ├── as_set20.hpp │ │ │ │ │ │ ├── as_set30.hpp │ │ │ │ │ │ ├── as_set40.hpp │ │ │ │ │ │ ├── as_set50.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set10.hpp │ │ │ │ │ │ ├── set10_fwd.hpp │ │ │ │ │ │ ├── set20.hpp │ │ │ │ │ │ ├── set20_fwd.hpp │ │ │ │ │ │ ├── set30.hpp │ │ │ │ │ │ ├── set30_fwd.hpp │ │ │ │ │ │ ├── set40.hpp │ │ │ │ │ │ ├── set40_fwd.hpp │ │ │ │ │ │ ├── set50.hpp │ │ │ │ │ │ ├── set50_fwd.hpp │ │ │ │ │ │ └── set_fwd.hpp │ │ │ │ │ ├── set_forward_ctor.hpp │ │ │ │ │ ├── value_of_data_impl.hpp │ │ │ │ │ └── value_of_impl.hpp │ │ │ │ ├── limits.hpp │ │ │ │ ├── set.hpp │ │ │ │ └── set_fwd.hpp │ │ │ ├── vector.hpp │ │ │ └── vector │ │ │ │ ├── convert.hpp │ │ │ │ ├── detail │ │ │ │ ├── advance_impl.hpp │ │ │ │ ├── as_vector.hpp │ │ │ │ ├── at_impl.hpp │ │ │ │ ├── begin_impl.hpp │ │ │ │ ├── convert_impl.hpp │ │ │ │ ├── deref_impl.hpp │ │ │ │ ├── distance_impl.hpp │ │ │ │ ├── end_impl.hpp │ │ │ │ ├── equal_to_impl.hpp │ │ │ │ ├── next_impl.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ ├── as_vector.hpp │ │ │ │ │ ├── as_vector10.hpp │ │ │ │ │ ├── as_vector20.hpp │ │ │ │ │ ├── as_vector30.hpp │ │ │ │ │ ├── as_vector40.hpp │ │ │ │ │ ├── as_vector50.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ ├── vector10_fwd.hpp │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ ├── vector20_fwd.hpp │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ ├── vector30_fwd.hpp │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ ├── vector40_fwd.hpp │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ ├── vector50_fwd.hpp │ │ │ │ │ ├── vector_chooser.hpp │ │ │ │ │ ├── vector_chooser10.hpp │ │ │ │ │ ├── vector_chooser20.hpp │ │ │ │ │ ├── vector_chooser30.hpp │ │ │ │ │ ├── vector_chooser40.hpp │ │ │ │ │ ├── vector_chooser50.hpp │ │ │ │ │ ├── vector_fwd.hpp │ │ │ │ │ ├── vvector10.hpp │ │ │ │ │ ├── vvector10_fwd.hpp │ │ │ │ │ ├── vvector20.hpp │ │ │ │ │ ├── vvector20_fwd.hpp │ │ │ │ │ ├── vvector30.hpp │ │ │ │ │ ├── vvector30_fwd.hpp │ │ │ │ │ ├── vvector40.hpp │ │ │ │ │ ├── vvector40_fwd.hpp │ │ │ │ │ ├── vvector50.hpp │ │ │ │ │ └── vvector50_fwd.hpp │ │ │ │ ├── prior_impl.hpp │ │ │ │ ├── value_at_impl.hpp │ │ │ │ ├── value_of_impl.hpp │ │ │ │ ├── vector_forward_ctor.hpp │ │ │ │ ├── vector_n.hpp │ │ │ │ └── vector_n_chooser.hpp │ │ │ │ ├── limits.hpp │ │ │ │ ├── vector.hpp │ │ │ │ ├── vector10.hpp │ │ │ │ ├── vector10_fwd.hpp │ │ │ │ ├── vector20.hpp │ │ │ │ ├── vector20_fwd.hpp │ │ │ │ ├── vector30.hpp │ │ │ │ ├── vector30_fwd.hpp │ │ │ │ ├── vector40.hpp │ │ │ │ ├── vector40_fwd.hpp │ │ │ │ ├── vector50.hpp │ │ │ │ ├── vector50_fwd.hpp │ │ │ │ ├── vector_fwd.hpp │ │ │ │ └── vector_iterator.hpp │ │ ├── functional.hpp │ │ ├── functional │ │ │ ├── adapter.hpp │ │ │ ├── adapter │ │ │ │ ├── detail │ │ │ │ │ └── access.hpp │ │ │ │ ├── fused.hpp │ │ │ │ ├── fused_function_object.hpp │ │ │ │ ├── fused_procedure.hpp │ │ │ │ ├── limits.hpp │ │ │ │ ├── unfused.hpp │ │ │ │ └── unfused_typed.hpp │ │ │ ├── generation.hpp │ │ │ ├── generation │ │ │ │ ├── detail │ │ │ │ │ └── gen_make_adapter.hpp │ │ │ │ ├── make_fused.hpp │ │ │ │ ├── make_fused_function_object.hpp │ │ │ │ ├── make_fused_procedure.hpp │ │ │ │ └── make_unfused.hpp │ │ │ ├── invocation.hpp │ │ │ └── invocation │ │ │ │ ├── detail │ │ │ │ └── that_ptr.hpp │ │ │ │ ├── invoke.hpp │ │ │ │ ├── invoke_function_object.hpp │ │ │ │ ├── invoke_procedure.hpp │ │ │ │ └── limits.hpp │ │ ├── include │ │ │ ├── accumulate.hpp │ │ │ ├── adapt_adt.hpp │ │ │ ├── adapt_adt_named.cpp │ │ │ ├── adapt_adt_named.hpp │ │ │ ├── adapt_assoc_adt.hpp │ │ │ ├── adapt_assoc_adt_named.hpp │ │ │ ├── adapt_assoc_class.hpp │ │ │ ├── adapt_assoc_class_named.hpp │ │ │ ├── adapt_assoc_struct.hpp │ │ │ ├── adapt_assoc_struct_named.hpp │ │ │ ├── adapt_struct.hpp │ │ │ ├── adapt_struct_named.hpp │ │ │ ├── adapted.hpp │ │ │ ├── adapter.hpp │ │ │ ├── advance.hpp │ │ │ ├── algorithm.hpp │ │ │ ├── all.hpp │ │ │ ├── any.hpp │ │ │ ├── array.hpp │ │ │ ├── as_deque.hpp │ │ │ ├── as_list.hpp │ │ │ ├── as_map.hpp │ │ │ ├── as_set.hpp │ │ │ ├── as_vector.hpp │ │ │ ├── at.hpp │ │ │ ├── at_c.hpp │ │ │ ├── at_key.hpp │ │ │ ├── auxiliary.hpp │ │ │ ├── back.hpp │ │ │ ├── begin.hpp │ │ │ ├── boost_array.hpp │ │ │ ├── boost_tuple.hpp │ │ │ ├── category_of.hpp │ │ │ ├── clear.hpp │ │ │ ├── comparison.hpp │ │ │ ├── cons.hpp │ │ │ ├── cons_tie.hpp │ │ │ ├── container.hpp │ │ │ ├── convert.hpp │ │ │ ├── copy.hpp │ │ │ ├── count.hpp │ │ │ ├── count_if.hpp │ │ │ ├── deduce.hpp │ │ │ ├── deduce_sequence.hpp │ │ │ ├── define_assoc_struct.hpp │ │ │ ├── define_struct.hpp │ │ │ ├── define_struct_inline.hpp │ │ │ ├── deque.hpp │ │ │ ├── deque_fwd.hpp │ │ │ ├── deque_tie.hpp │ │ │ ├── deref.hpp │ │ │ ├── deref_data.hpp │ │ │ ├── distance.hpp │ │ │ ├── empty.hpp │ │ │ ├── end.hpp │ │ │ ├── equal_to.hpp │ │ │ ├── erase.hpp │ │ │ ├── erase_key.hpp │ │ │ ├── filter.hpp │ │ │ ├── filter_if.hpp │ │ │ ├── filter_view.hpp │ │ │ ├── find.hpp │ │ │ ├── find_if.hpp │ │ │ ├── flatten.hpp │ │ │ ├── flatten_view.hpp │ │ │ ├── fold.hpp │ │ │ ├── for_each.hpp │ │ │ ├── front.hpp │ │ │ ├── functional.hpp │ │ │ ├── fused.hpp │ │ │ ├── fused_function_object.hpp │ │ │ ├── fused_procedure.hpp │ │ │ ├── generation.hpp │ │ │ ├── greater.hpp │ │ │ ├── greater_equal.hpp │ │ │ ├── has_key.hpp │ │ │ ├── ignore.hpp │ │ │ ├── in.hpp │ │ │ ├── insert.hpp │ │ │ ├── insert_range.hpp │ │ │ ├── intrinsic.hpp │ │ │ ├── invocation.hpp │ │ │ ├── invoke.hpp │ │ │ ├── invoke_function_object.hpp │ │ │ ├── invoke_procedure.hpp │ │ │ ├── io.hpp │ │ │ ├── is_iterator.hpp │ │ │ ├── is_segmented.hpp │ │ │ ├── is_sequence.hpp │ │ │ ├── is_view.hpp │ │ │ ├── iter_fold.hpp │ │ │ ├── iteration.hpp │ │ │ ├── iterator.hpp │ │ │ ├── iterator_adapter.hpp │ │ │ ├── iterator_base.hpp │ │ │ ├── iterator_facade.hpp │ │ │ ├── iterator_range.hpp │ │ │ ├── join.hpp │ │ │ ├── joint_view.hpp │ │ │ ├── key_of.hpp │ │ │ ├── less.hpp │ │ │ ├── less_equal.hpp │ │ │ ├── list.hpp │ │ │ ├── list_fwd.hpp │ │ │ ├── list_tie.hpp │ │ │ ├── make_cons.hpp │ │ │ ├── make_deque.hpp │ │ │ ├── make_fused.hpp │ │ │ ├── make_fused_function_object.hpp │ │ │ ├── make_fused_procedure.hpp │ │ │ ├── make_list.hpp │ │ │ ├── make_map.hpp │ │ │ ├── make_set.hpp │ │ │ ├── make_tuple.hpp │ │ │ ├── make_unfused.hpp │ │ │ ├── make_vector.hpp │ │ │ ├── map.hpp │ │ │ ├── map_fwd.hpp │ │ │ ├── map_tie.hpp │ │ │ ├── move.hpp │ │ │ ├── mpl.hpp │ │ │ ├── next.hpp │ │ │ ├── nil.hpp │ │ │ ├── none.hpp │ │ │ ├── not_equal_to.hpp │ │ │ ├── nview.hpp │ │ │ ├── out.hpp │ │ │ ├── pair.hpp │ │ │ ├── pair_tie.hpp │ │ │ ├── pop_back.hpp │ │ │ ├── pop_front.hpp │ │ │ ├── prior.hpp │ │ │ ├── proxy_type.hpp │ │ │ ├── push_back.hpp │ │ │ ├── push_front.hpp │ │ │ ├── query.hpp │ │ │ ├── remove.hpp │ │ │ ├── remove_if.hpp │ │ │ ├── repetitive_view.hpp │ │ │ ├── replace.hpp │ │ │ ├── replace_if.hpp │ │ │ ├── reverse.hpp │ │ │ ├── reverse_fold.hpp │ │ │ ├── reverse_iter_fold.hpp │ │ │ ├── reverse_view.hpp │ │ │ ├── segmented_fold_until.hpp │ │ │ ├── segmented_iterator.hpp │ │ │ ├── segments.hpp │ │ │ ├── sequence.hpp │ │ │ ├── sequence_base.hpp │ │ │ ├── sequence_facade.hpp │ │ │ ├── set.hpp │ │ │ ├── set_fwd.hpp │ │ │ ├── single_view.hpp │ │ │ ├── size.hpp │ │ │ ├── std_pair.hpp │ │ │ ├── struct.hpp │ │ │ ├── support.hpp │ │ │ ├── swap.hpp │ │ │ ├── tag_of.hpp │ │ │ ├── tag_of_fwd.hpp │ │ │ ├── transform.hpp │ │ │ ├── transform_view.hpp │ │ │ ├── transformation.hpp │ │ │ ├── tuple.hpp │ │ │ ├── tuple_fwd.hpp │ │ │ ├── tuple_tie.hpp │ │ │ ├── unfused.hpp │ │ │ ├── unfused_typed.hpp │ │ │ ├── unused.hpp │ │ │ ├── value_at.hpp │ │ │ ├── value_at_key.hpp │ │ │ ├── value_of.hpp │ │ │ ├── value_of_data.hpp │ │ │ ├── vector.hpp │ │ │ ├── vector10.hpp │ │ │ ├── vector20.hpp │ │ │ ├── vector30.hpp │ │ │ ├── vector40.hpp │ │ │ ├── vector50.hpp │ │ │ ├── vector_fwd.hpp │ │ │ ├── vector_tie.hpp │ │ │ ├── view.hpp │ │ │ ├── void.hpp │ │ │ ├── zip.hpp │ │ │ └── zip_view.hpp │ │ ├── iterator.hpp │ │ ├── iterator │ │ │ ├── advance.hpp │ │ │ ├── basic_iterator.hpp │ │ │ ├── deref.hpp │ │ │ ├── deref_data.hpp │ │ │ ├── detail │ │ │ │ ├── adapt_deref_traits.hpp │ │ │ │ ├── adapt_value_traits.hpp │ │ │ │ ├── advance.hpp │ │ │ │ ├── distance.hpp │ │ │ │ ├── segment_sequence.hpp │ │ │ │ ├── segmented_equal_to.hpp │ │ │ │ ├── segmented_iterator.hpp │ │ │ │ └── segmented_next_impl.hpp │ │ │ ├── distance.hpp │ │ │ ├── equal_to.hpp │ │ │ ├── iterator_adapter.hpp │ │ │ ├── iterator_facade.hpp │ │ │ ├── key_of.hpp │ │ │ ├── mpl.hpp │ │ │ ├── mpl │ │ │ │ ├── convert_iterator.hpp │ │ │ │ └── fusion_iterator.hpp │ │ │ ├── next.hpp │ │ │ ├── prior.hpp │ │ │ ├── segmented_iterator.hpp │ │ │ ├── value_of.hpp │ │ │ └── value_of_data.hpp │ │ ├── mpl.hpp │ │ ├── mpl │ │ │ ├── at.hpp │ │ │ ├── back.hpp │ │ │ ├── begin.hpp │ │ │ ├── clear.hpp │ │ │ ├── detail │ │ │ │ └── clear.hpp │ │ │ ├── empty.hpp │ │ │ ├── end.hpp │ │ │ ├── erase.hpp │ │ │ ├── erase_key.hpp │ │ │ ├── front.hpp │ │ │ ├── has_key.hpp │ │ │ ├── insert.hpp │ │ │ ├── insert_range.hpp │ │ │ ├── pop_back.hpp │ │ │ ├── pop_front.hpp │ │ │ ├── push_back.hpp │ │ │ ├── push_front.hpp │ │ │ └── size.hpp │ │ ├── sequence.hpp │ │ ├── sequence │ │ │ ├── comparison.hpp │ │ │ ├── comparison │ │ │ │ ├── detail │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ └── not_equal_to.hpp │ │ │ │ ├── enable_comparison.hpp │ │ │ │ ├── equal_to.hpp │ │ │ │ ├── greater.hpp │ │ │ │ ├── greater_equal.hpp │ │ │ │ ├── less.hpp │ │ │ │ ├── less_equal.hpp │ │ │ │ └── not_equal_to.hpp │ │ │ ├── convert.hpp │ │ │ ├── intrinsic.hpp │ │ │ ├── intrinsic │ │ │ │ ├── at.hpp │ │ │ │ ├── at_c.hpp │ │ │ │ ├── at_key.hpp │ │ │ │ ├── back.hpp │ │ │ │ ├── begin.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── segmented_begin.hpp │ │ │ │ │ ├── segmented_begin_impl.hpp │ │ │ │ │ ├── segmented_end.hpp │ │ │ │ │ ├── segmented_end_impl.hpp │ │ │ │ │ └── segmented_size.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── end.hpp │ │ │ │ ├── front.hpp │ │ │ │ ├── has_key.hpp │ │ │ │ ├── segments.hpp │ │ │ │ ├── size.hpp │ │ │ │ ├── swap.hpp │ │ │ │ ├── value_at.hpp │ │ │ │ └── value_at_key.hpp │ │ │ ├── intrinsic_fwd.hpp │ │ │ ├── io.hpp │ │ │ ├── io │ │ │ │ ├── detail │ │ │ │ │ ├── in.hpp │ │ │ │ │ ├── manip.hpp │ │ │ │ │ └── out.hpp │ │ │ │ ├── in.hpp │ │ │ │ └── out.hpp │ │ │ └── sequence_facade.hpp │ │ ├── support.hpp │ │ ├── support │ │ │ ├── as_const.hpp │ │ │ ├── category_of.hpp │ │ │ ├── config.hpp │ │ │ ├── deduce.hpp │ │ │ ├── deduce_sequence.hpp │ │ │ ├── detail │ │ │ │ ├── access.hpp │ │ │ │ ├── as_fusion_element.hpp │ │ │ │ ├── category_of.hpp │ │ │ │ ├── is_mpl_sequence.hpp │ │ │ │ ├── is_view.hpp │ │ │ │ ├── mpl_iterator_category.hpp │ │ │ │ ├── pp_round.hpp │ │ │ │ ├── segmented_fold_until_impl.hpp │ │ │ │ └── unknown_key.hpp │ │ │ ├── is_iterator.hpp │ │ │ ├── is_segmented.hpp │ │ │ ├── is_sequence.hpp │ │ │ ├── is_view.hpp │ │ │ ├── iterator_base.hpp │ │ │ ├── pair.hpp │ │ │ ├── segmented_fold_until.hpp │ │ │ ├── sequence_base.hpp │ │ │ ├── tag_of.hpp │ │ │ ├── tag_of_fwd.hpp │ │ │ ├── unused.hpp │ │ │ └── void.hpp │ │ ├── tuple.hpp │ │ ├── tuple │ │ │ ├── detail │ │ │ │ ├── preprocessed │ │ │ │ │ ├── make_tuple.hpp │ │ │ │ │ ├── make_tuple10.hpp │ │ │ │ │ ├── make_tuple20.hpp │ │ │ │ │ ├── make_tuple30.hpp │ │ │ │ │ ├── make_tuple40.hpp │ │ │ │ │ ├── make_tuple50.hpp │ │ │ │ │ ├── tuple.hpp │ │ │ │ │ ├── tuple10.hpp │ │ │ │ │ ├── tuple10_fwd.hpp │ │ │ │ │ ├── tuple20.hpp │ │ │ │ │ ├── tuple20_fwd.hpp │ │ │ │ │ ├── tuple30.hpp │ │ │ │ │ ├── tuple30_fwd.hpp │ │ │ │ │ ├── tuple40.hpp │ │ │ │ │ ├── tuple40_fwd.hpp │ │ │ │ │ ├── tuple50.hpp │ │ │ │ │ ├── tuple50_fwd.hpp │ │ │ │ │ ├── tuple_fwd.hpp │ │ │ │ │ ├── tuple_tie.hpp │ │ │ │ │ ├── tuple_tie10.hpp │ │ │ │ │ ├── tuple_tie20.hpp │ │ │ │ │ ├── tuple_tie30.hpp │ │ │ │ │ ├── tuple_tie40.hpp │ │ │ │ │ └── tuple_tie50.hpp │ │ │ │ └── tuple_expand.hpp │ │ │ ├── make_tuple.hpp │ │ │ ├── tuple.hpp │ │ │ ├── tuple_fwd.hpp │ │ │ └── tuple_tie.hpp │ │ ├── view.hpp │ │ └── view │ │ │ ├── detail │ │ │ └── strictest_traversal.hpp │ │ │ ├── filter_view.hpp │ │ │ ├── filter_view │ │ │ ├── detail │ │ │ │ ├── begin_impl.hpp │ │ │ │ ├── deref_data_impl.hpp │ │ │ │ ├── deref_impl.hpp │ │ │ │ ├── end_impl.hpp │ │ │ │ ├── equal_to_impl.hpp │ │ │ │ ├── key_of_impl.hpp │ │ │ │ ├── next_impl.hpp │ │ │ │ ├── size_impl.hpp │ │ │ │ ├── value_of_data_impl.hpp │ │ │ │ └── value_of_impl.hpp │ │ │ ├── filter_view.hpp │ │ │ └── filter_view_iterator.hpp │ │ │ ├── flatten_view.hpp │ │ │ ├── flatten_view │ │ │ ├── flatten_view.hpp │ │ │ └── flatten_view_iterator.hpp │ │ │ ├── iterator_range.hpp │ │ │ ├── iterator_range │ │ │ ├── detail │ │ │ │ ├── at_impl.hpp │ │ │ │ ├── begin_impl.hpp │ │ │ │ ├── end_impl.hpp │ │ │ │ ├── is_segmented_impl.hpp │ │ │ │ ├── segmented_iterator_range.hpp │ │ │ │ ├── segments_impl.hpp │ │ │ │ ├── size_impl.hpp │ │ │ │ └── value_at_impl.hpp │ │ │ └── iterator_range.hpp │ │ │ ├── joint_view.hpp │ │ │ ├── joint_view │ │ │ ├── detail │ │ │ │ ├── begin_impl.hpp │ │ │ │ ├── deref_data_impl.hpp │ │ │ │ ├── deref_impl.hpp │ │ │ │ ├── end_impl.hpp │ │ │ │ ├── key_of_impl.hpp │ │ │ │ ├── next_impl.hpp │ │ │ │ ├── value_of_data_impl.hpp │ │ │ │ └── value_of_impl.hpp │ │ │ ├── joint_view.hpp │ │ │ ├── joint_view_fwd.hpp │ │ │ └── joint_view_iterator.hpp │ │ │ ├── nview.hpp │ │ │ ├── nview │ │ │ ├── detail │ │ │ │ ├── advance_impl.hpp │ │ │ │ ├── at_impl.hpp │ │ │ │ ├── begin_impl.hpp │ │ │ │ ├── deref_impl.hpp │ │ │ │ ├── distance_impl.hpp │ │ │ │ ├── end_impl.hpp │ │ │ │ ├── equal_to_impl.hpp │ │ │ │ ├── next_impl.hpp │ │ │ │ ├── nview_impl.hpp │ │ │ │ ├── prior_impl.hpp │ │ │ │ ├── size_impl.hpp │ │ │ │ ├── value_at_impl.hpp │ │ │ │ └── value_of_impl.hpp │ │ │ ├── nview.hpp │ │ │ └── nview_iterator.hpp │ │ │ ├── repetitive_view.hpp │ │ │ ├── repetitive_view │ │ │ ├── detail │ │ │ │ ├── begin_impl.hpp │ │ │ │ ├── deref_impl.hpp │ │ │ │ ├── end_impl.hpp │ │ │ │ ├── next_impl.hpp │ │ │ │ └── value_of_impl.hpp │ │ │ ├── repetitive_view.hpp │ │ │ ├── repetitive_view_fwd.hpp │ │ │ └── repetitive_view_iterator.hpp │ │ │ ├── reverse_view.hpp │ │ │ ├── reverse_view │ │ │ ├── detail │ │ │ │ ├── advance_impl.hpp │ │ │ │ ├── at_impl.hpp │ │ │ │ ├── begin_impl.hpp │ │ │ │ ├── deref_data_impl.hpp │ │ │ │ ├── deref_impl.hpp │ │ │ │ ├── distance_impl.hpp │ │ │ │ ├── end_impl.hpp │ │ │ │ ├── key_of_impl.hpp │ │ │ │ ├── next_impl.hpp │ │ │ │ ├── prior_impl.hpp │ │ │ │ ├── value_at_impl.hpp │ │ │ │ ├── value_of_data_impl.hpp │ │ │ │ └── value_of_impl.hpp │ │ │ ├── reverse_view.hpp │ │ │ └── reverse_view_iterator.hpp │ │ │ ├── single_view.hpp │ │ │ ├── single_view │ │ │ ├── detail │ │ │ │ ├── advance_impl.hpp │ │ │ │ ├── at_impl.hpp │ │ │ │ ├── begin_impl.hpp │ │ │ │ ├── deref_impl.hpp │ │ │ │ ├── distance_impl.hpp │ │ │ │ ├── end_impl.hpp │ │ │ │ ├── equal_to_impl.hpp │ │ │ │ ├── next_impl.hpp │ │ │ │ ├── prior_impl.hpp │ │ │ │ ├── size_impl.hpp │ │ │ │ ├── value_at_impl.hpp │ │ │ │ └── value_of_impl.hpp │ │ │ ├── single_view.hpp │ │ │ └── single_view_iterator.hpp │ │ │ ├── transform_view.hpp │ │ │ ├── transform_view │ │ │ ├── detail │ │ │ │ ├── advance_impl.hpp │ │ │ │ ├── apply_transform_result.hpp │ │ │ │ ├── at_impl.hpp │ │ │ │ ├── begin_impl.hpp │ │ │ │ ├── deref_impl.hpp │ │ │ │ ├── distance_impl.hpp │ │ │ │ ├── end_impl.hpp │ │ │ │ ├── equal_to_impl.hpp │ │ │ │ ├── next_impl.hpp │ │ │ │ ├── prior_impl.hpp │ │ │ │ ├── value_at_impl.hpp │ │ │ │ └── value_of_impl.hpp │ │ │ ├── transform_view.hpp │ │ │ ├── transform_view_fwd.hpp │ │ │ └── transform_view_iterator.hpp │ │ │ ├── zip_view.hpp │ │ │ └── zip_view │ │ │ ├── detail │ │ │ ├── advance_impl.hpp │ │ │ ├── at_impl.hpp │ │ │ ├── begin_impl.hpp │ │ │ ├── deref_impl.hpp │ │ │ ├── distance_impl.hpp │ │ │ ├── end_impl.hpp │ │ │ ├── equal_to_impl.hpp │ │ │ ├── next_impl.hpp │ │ │ ├── prior_impl.hpp │ │ │ ├── size_impl.hpp │ │ │ ├── value_at_impl.hpp │ │ │ └── value_of_impl.hpp │ │ │ ├── zip_view.hpp │ │ │ ├── zip_view_iterator.hpp │ │ │ └── zip_view_iterator_fwd.hpp │ │ ├── intrusive │ │ ├── any_hook.hpp │ │ ├── avl_set.hpp │ │ ├── avl_set_hook.hpp │ │ ├── avltree.hpp │ │ ├── avltree_algorithms.hpp │ │ ├── bs_set.hpp │ │ ├── bs_set_hook.hpp │ │ ├── bstree.hpp │ │ ├── bstree_algorithms.hpp │ │ ├── circular_list_algorithms.hpp │ │ ├── circular_slist_algorithms.hpp │ │ ├── derivation_value_traits.hpp │ │ ├── detail │ │ │ ├── algo_type.hpp │ │ │ ├── any_node_and_algorithms.hpp │ │ │ ├── array_initializer.hpp │ │ │ ├── assert.hpp │ │ │ ├── avltree_node.hpp │ │ │ ├── common_slist_algorithms.hpp │ │ │ ├── config_begin.hpp │ │ │ ├── config_end.hpp │ │ │ ├── default_header_holder.hpp │ │ │ ├── ebo_functor_holder.hpp │ │ │ ├── empty_node_checker.hpp │ │ │ ├── equal_to_value.hpp │ │ │ ├── exception_disposer.hpp │ │ │ ├── function_detector.hpp │ │ │ ├── generic_hook.hpp │ │ │ ├── get_value_traits.hpp │ │ │ ├── has_member_function_callable_with.hpp │ │ │ ├── hashtable_node.hpp │ │ │ ├── hook_traits.hpp │ │ │ ├── iiterator.hpp │ │ │ ├── is_stateful_value_traits.hpp │ │ │ ├── key_nodeptr_comp.hpp │ │ │ ├── list_iterator.hpp │ │ │ ├── list_node.hpp │ │ │ ├── math.hpp │ │ │ ├── memory_util.hpp │ │ │ ├── mpl.hpp │ │ │ ├── node_cloner_disposer.hpp │ │ │ ├── node_holder.hpp │ │ │ ├── node_to_value.hpp │ │ │ ├── parent_from_member.hpp │ │ │ ├── pointer_element.hpp │ │ │ ├── preprocessor.hpp │ │ │ ├── rbtree_node.hpp │ │ │ ├── reverse_iterator.hpp │ │ │ ├── simple_disposers.hpp │ │ │ ├── size_holder.hpp │ │ │ ├── slist_iterator.hpp │ │ │ ├── slist_node.hpp │ │ │ ├── std_fwd.hpp │ │ │ ├── to_raw_pointer.hpp │ │ │ ├── transform_iterator.hpp │ │ │ ├── tree_iterator.hpp │ │ │ ├── tree_node.hpp │ │ │ ├── uncast.hpp │ │ │ └── workaround.hpp │ │ ├── hashtable.hpp │ │ ├── intrusive_fwd.hpp │ │ ├── linear_slist_algorithms.hpp │ │ ├── link_mode.hpp │ │ ├── list.hpp │ │ ├── list_hook.hpp │ │ ├── member_value_traits.hpp │ │ ├── options.hpp │ │ ├── pack_options.hpp │ │ ├── parent_from_member.hpp │ │ ├── pointer_plus_bits.hpp │ │ ├── pointer_rebind.hpp │ │ ├── pointer_traits.hpp │ │ ├── priority_compare.hpp │ │ ├── rbtree.hpp │ │ ├── rbtree_algorithms.hpp │ │ ├── set.hpp │ │ ├── set_hook.hpp │ │ ├── sg_set.hpp │ │ ├── sgtree.hpp │ │ ├── sgtree_algorithms.hpp │ │ ├── slist.hpp │ │ ├── slist_hook.hpp │ │ ├── splay_set.hpp │ │ ├── splaytree.hpp │ │ ├── splaytree_algorithms.hpp │ │ ├── treap.hpp │ │ ├── treap_algorithms.hpp │ │ ├── treap_set.hpp │ │ ├── trivial_value_traits.hpp │ │ ├── unordered_set.hpp │ │ └── unordered_set_hook.hpp │ │ ├── move │ │ ├── algorithm.hpp │ │ ├── core.hpp │ │ ├── default_delete.hpp │ │ ├── detail │ │ │ ├── config_begin.hpp │ │ │ ├── config_end.hpp │ │ │ ├── meta_utils.hpp │ │ │ ├── move_helpers.hpp │ │ │ ├── unique_ptr_meta_utils.hpp │ │ │ └── workaround.hpp │ │ ├── iterator.hpp │ │ ├── make_unique.hpp │ │ ├── move.hpp │ │ ├── traits.hpp │ │ ├── unique_ptr.hpp │ │ ├── utility.hpp │ │ └── utility_core.hpp │ │ ├── mpl │ │ ├── O1_size.hpp │ │ ├── O1_size_fwd.hpp │ │ ├── accumulate.hpp │ │ ├── advance.hpp │ │ ├── advance_fwd.hpp │ │ ├── alias.hpp │ │ ├── always.hpp │ │ ├── and.hpp │ │ ├── apply.hpp │ │ ├── apply_fwd.hpp │ │ ├── apply_wrap.hpp │ │ ├── arg.hpp │ │ ├── arg_fwd.hpp │ │ ├── arithmetic.hpp │ │ ├── as_sequence.hpp │ │ ├── assert.hpp │ │ ├── at.hpp │ │ ├── at_fwd.hpp │ │ ├── aux_ │ │ │ ├── O1_size_impl.hpp │ │ │ ├── adl_barrier.hpp │ │ │ ├── advance_backward.hpp │ │ │ ├── advance_forward.hpp │ │ │ ├── apply_1st.hpp │ │ │ ├── arg_typedef.hpp │ │ │ ├── arithmetic_op.hpp │ │ │ ├── arity.hpp │ │ │ ├── arity_spec.hpp │ │ │ ├── at_impl.hpp │ │ │ ├── back_impl.hpp │ │ │ ├── basic_bind.hpp │ │ │ ├── begin_end_impl.hpp │ │ │ ├── clear_impl.hpp │ │ │ ├── common_name_wknd.hpp │ │ │ ├── comparison_op.hpp │ │ │ ├── config │ │ │ │ ├── adl.hpp │ │ │ │ ├── arrays.hpp │ │ │ │ ├── bcc.hpp │ │ │ │ ├── bind.hpp │ │ │ │ ├── compiler.hpp │ │ │ │ ├── ctps.hpp │ │ │ │ ├── dependent_nttp.hpp │ │ │ │ ├── dmc_ambiguous_ctps.hpp │ │ │ │ ├── dtp.hpp │ │ │ │ ├── eti.hpp │ │ │ │ ├── forwarding.hpp │ │ │ │ ├── gcc.hpp │ │ │ │ ├── gpu.hpp │ │ │ │ ├── has_apply.hpp │ │ │ │ ├── has_xxx.hpp │ │ │ │ ├── integral.hpp │ │ │ │ ├── intel.hpp │ │ │ │ ├── lambda.hpp │ │ │ │ ├── msvc.hpp │ │ │ │ ├── msvc_typename.hpp │ │ │ │ ├── nttp.hpp │ │ │ │ ├── operators.hpp │ │ │ │ ├── overload_resolution.hpp │ │ │ │ ├── pp_counter.hpp │ │ │ │ ├── preprocessor.hpp │ │ │ │ ├── static_constant.hpp │ │ │ │ ├── ttp.hpp │ │ │ │ ├── typeof.hpp │ │ │ │ ├── use_preprocessed.hpp │ │ │ │ └── workaround.hpp │ │ │ ├── contains_impl.hpp │ │ │ ├── count_args.hpp │ │ │ ├── count_impl.hpp │ │ │ ├── empty_impl.hpp │ │ │ ├── erase_impl.hpp │ │ │ ├── erase_key_impl.hpp │ │ │ ├── filter_iter.hpp │ │ │ ├── find_if_pred.hpp │ │ │ ├── fold_impl.hpp │ │ │ ├── fold_impl_body.hpp │ │ │ ├── fold_op.hpp │ │ │ ├── fold_pred.hpp │ │ │ ├── front_impl.hpp │ │ │ ├── full_lambda.hpp │ │ │ ├── has_apply.hpp │ │ │ ├── has_begin.hpp │ │ │ ├── has_key_impl.hpp │ │ │ ├── has_rebind.hpp │ │ │ ├── has_size.hpp │ │ │ ├── has_tag.hpp │ │ │ ├── has_type.hpp │ │ │ ├── include_preprocessed.hpp │ │ │ ├── insert_impl.hpp │ │ │ ├── insert_range_impl.hpp │ │ │ ├── inserter_algorithm.hpp │ │ │ ├── integral_wrapper.hpp │ │ │ ├── is_msvc_eti_arg.hpp │ │ │ ├── iter_apply.hpp │ │ │ ├── iter_fold_if_impl.hpp │ │ │ ├── iter_fold_impl.hpp │ │ │ ├── iter_push_front.hpp │ │ │ ├── joint_iter.hpp │ │ │ ├── lambda_arity_param.hpp │ │ │ ├── lambda_no_ctps.hpp │ │ │ ├── lambda_spec.hpp │ │ │ ├── lambda_support.hpp │ │ │ ├── largest_int.hpp │ │ │ ├── logical_op.hpp │ │ │ ├── msvc_dtw.hpp │ │ │ ├── msvc_eti_base.hpp │ │ │ ├── msvc_is_class.hpp │ │ │ ├── msvc_never_true.hpp │ │ │ ├── msvc_type.hpp │ │ │ ├── na.hpp │ │ │ ├── na_assert.hpp │ │ │ ├── na_fwd.hpp │ │ │ ├── na_spec.hpp │ │ │ ├── nested_type_wknd.hpp │ │ │ ├── nttp_decl.hpp │ │ │ ├── numeric_cast_utils.hpp │ │ │ ├── numeric_op.hpp │ │ │ ├── order_impl.hpp │ │ │ ├── overload_names.hpp │ │ │ ├── partition_op.hpp │ │ │ ├── pop_back_impl.hpp │ │ │ ├── pop_front_impl.hpp │ │ │ ├── preprocessed │ │ │ │ ├── bcc │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── bcc551 │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── bcc_pre590 │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── dmc │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── gcc │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── msvc60 │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── msvc70 │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── mwcw │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── no_ctps │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── no_ttp │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ └── plain │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ ├── preprocessor │ │ │ │ ├── add.hpp │ │ │ │ ├── def_params_tail.hpp │ │ │ │ ├── default_params.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── ext_params.hpp │ │ │ │ ├── filter_params.hpp │ │ │ │ ├── is_seq.hpp │ │ │ │ ├── params.hpp │ │ │ │ ├── partial_spec_params.hpp │ │ │ │ ├── range.hpp │ │ │ │ ├── repeat.hpp │ │ │ │ ├── sub.hpp │ │ │ │ ├── token_equal.hpp │ │ │ │ └── tuple.hpp │ │ │ ├── ptr_to_ref.hpp │ │ │ ├── push_back_impl.hpp │ │ │ ├── push_front_impl.hpp │ │ │ ├── range_c │ │ │ │ ├── O1_size.hpp │ │ │ │ ├── back.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── front.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── size.hpp │ │ │ │ └── tag.hpp │ │ │ ├── reverse_fold_impl.hpp │ │ │ ├── reverse_fold_impl_body.hpp │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ ├── sequence_wrapper.hpp │ │ │ ├── shift_op.hpp │ │ │ ├── single_element_iter.hpp │ │ │ ├── size_impl.hpp │ │ │ ├── sort_impl.hpp │ │ │ ├── static_cast.hpp │ │ │ ├── template_arity.hpp │ │ │ ├── template_arity_fwd.hpp │ │ │ ├── test.hpp │ │ │ ├── test │ │ │ │ ├── assert.hpp │ │ │ │ ├── data.hpp │ │ │ │ └── test_case.hpp │ │ │ ├── traits_lambda_spec.hpp │ │ │ ├── transform_iter.hpp │ │ │ ├── type_wrapper.hpp │ │ │ ├── unwrap.hpp │ │ │ ├── value_wknd.hpp │ │ │ └── yes_no.hpp │ │ ├── back.hpp │ │ ├── back_fwd.hpp │ │ ├── back_inserter.hpp │ │ ├── base.hpp │ │ ├── begin.hpp │ │ ├── begin_end.hpp │ │ ├── begin_end_fwd.hpp │ │ ├── bind.hpp │ │ ├── bind_fwd.hpp │ │ ├── bitand.hpp │ │ ├── bitor.hpp │ │ ├── bitwise.hpp │ │ ├── bitxor.hpp │ │ ├── bool.hpp │ │ ├── bool_fwd.hpp │ │ ├── char.hpp │ │ ├── char_fwd.hpp │ │ ├── clear.hpp │ │ ├── clear_fwd.hpp │ │ ├── comparison.hpp │ │ ├── contains.hpp │ │ ├── contains_fwd.hpp │ │ ├── copy.hpp │ │ ├── copy_if.hpp │ │ ├── count.hpp │ │ ├── count_fwd.hpp │ │ ├── count_if.hpp │ │ ├── deque.hpp │ │ ├── deref.hpp │ │ ├── distance.hpp │ │ ├── distance_fwd.hpp │ │ ├── divides.hpp │ │ ├── empty.hpp │ │ ├── empty_base.hpp │ │ ├── empty_fwd.hpp │ │ ├── empty_sequence.hpp │ │ ├── end.hpp │ │ ├── equal.hpp │ │ ├── equal_to.hpp │ │ ├── erase.hpp │ │ ├── erase_fwd.hpp │ │ ├── erase_key.hpp │ │ ├── erase_key_fwd.hpp │ │ ├── eval_if.hpp │ │ ├── filter_view.hpp │ │ ├── find.hpp │ │ ├── find_if.hpp │ │ ├── fold.hpp │ │ ├── for_each.hpp │ │ ├── front.hpp │ │ ├── front_fwd.hpp │ │ ├── front_inserter.hpp │ │ ├── greater.hpp │ │ ├── greater_equal.hpp │ │ ├── has_key.hpp │ │ ├── has_key_fwd.hpp │ │ ├── has_xxx.hpp │ │ ├── identity.hpp │ │ ├── if.hpp │ │ ├── index_if.hpp │ │ ├── index_of.hpp │ │ ├── inherit.hpp │ │ ├── inherit_linearly.hpp │ │ ├── insert.hpp │ │ ├── insert_fwd.hpp │ │ ├── insert_range.hpp │ │ ├── insert_range_fwd.hpp │ │ ├── inserter.hpp │ │ ├── int.hpp │ │ ├── int_fwd.hpp │ │ ├── integral_c.hpp │ │ ├── integral_c_fwd.hpp │ │ ├── integral_c_tag.hpp │ │ ├── is_placeholder.hpp │ │ ├── is_sequence.hpp │ │ ├── iter_fold.hpp │ │ ├── iter_fold_if.hpp │ │ ├── iterator_category.hpp │ │ ├── iterator_range.hpp │ │ ├── iterator_tags.hpp │ │ ├── joint_view.hpp │ │ ├── key_type.hpp │ │ ├── key_type_fwd.hpp │ │ ├── lambda.hpp │ │ ├── lambda_fwd.hpp │ │ ├── less.hpp │ │ ├── less_equal.hpp │ │ ├── limits │ │ │ ├── arity.hpp │ │ │ ├── list.hpp │ │ │ ├── map.hpp │ │ │ ├── set.hpp │ │ │ ├── string.hpp │ │ │ ├── unrolling.hpp │ │ │ └── vector.hpp │ │ ├── list.hpp │ │ ├── list │ │ │ ├── aux_ │ │ │ │ ├── O1_size.hpp │ │ │ │ ├── begin_end.hpp │ │ │ │ ├── clear.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── front.hpp │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ ├── item.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── numbered.hpp │ │ │ │ ├── numbered_c.hpp │ │ │ │ ├── pop_front.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ └── plain │ │ │ │ │ │ ├── list10.hpp │ │ │ │ │ │ ├── list10_c.hpp │ │ │ │ │ │ ├── list20.hpp │ │ │ │ │ │ ├── list20_c.hpp │ │ │ │ │ │ ├── list30.hpp │ │ │ │ │ │ ├── list30_c.hpp │ │ │ │ │ │ ├── list40.hpp │ │ │ │ │ │ ├── list40_c.hpp │ │ │ │ │ │ ├── list50.hpp │ │ │ │ │ │ └── list50_c.hpp │ │ │ │ ├── push_back.hpp │ │ │ │ ├── push_front.hpp │ │ │ │ ├── size.hpp │ │ │ │ └── tag.hpp │ │ │ ├── list0.hpp │ │ │ ├── list0_c.hpp │ │ │ ├── list10.hpp │ │ │ ├── list10_c.hpp │ │ │ ├── list20.hpp │ │ │ ├── list20_c.hpp │ │ │ ├── list30.hpp │ │ │ ├── list30_c.hpp │ │ │ ├── list40.hpp │ │ │ ├── list40_c.hpp │ │ │ ├── list50.hpp │ │ │ └── list50_c.hpp │ │ ├── list_c.hpp │ │ ├── logical.hpp │ │ ├── long.hpp │ │ ├── long_fwd.hpp │ │ ├── lower_bound.hpp │ │ ├── map.hpp │ │ ├── map │ │ │ ├── aux_ │ │ │ │ ├── at_impl.hpp │ │ │ │ ├── begin_end_impl.hpp │ │ │ │ ├── clear_impl.hpp │ │ │ │ ├── contains_impl.hpp │ │ │ │ ├── empty_impl.hpp │ │ │ │ ├── erase_impl.hpp │ │ │ │ ├── erase_key_impl.hpp │ │ │ │ ├── has_key_impl.hpp │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ ├── insert_impl.hpp │ │ │ │ ├── item.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── key_type_impl.hpp │ │ │ │ ├── map0.hpp │ │ │ │ ├── numbered.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ ├── no_ctps │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ └── map50.hpp │ │ │ │ │ ├── plain │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ └── map50.hpp │ │ │ │ │ └── typeof_based │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ └── map50.hpp │ │ │ │ ├── size_impl.hpp │ │ │ │ ├── tag.hpp │ │ │ │ └── value_type_impl.hpp │ │ │ ├── map0.hpp │ │ │ ├── map10.hpp │ │ │ ├── map20.hpp │ │ │ ├── map30.hpp │ │ │ ├── map40.hpp │ │ │ └── map50.hpp │ │ ├── math │ │ │ ├── fixed_c.hpp │ │ │ ├── is_even.hpp │ │ │ └── rational_c.hpp │ │ ├── max.hpp │ │ ├── max_element.hpp │ │ ├── min.hpp │ │ ├── min_element.hpp │ │ ├── min_max.hpp │ │ ├── minus.hpp │ │ ├── modulus.hpp │ │ ├── multiplies.hpp │ │ ├── multiset │ │ │ ├── aux_ │ │ │ │ ├── count_impl.hpp │ │ │ │ ├── insert_impl.hpp │ │ │ │ ├── item.hpp │ │ │ │ ├── multiset0.hpp │ │ │ │ └── tag.hpp │ │ │ └── multiset0.hpp │ │ ├── negate.hpp │ │ ├── next.hpp │ │ ├── next_prior.hpp │ │ ├── not.hpp │ │ ├── not_equal_to.hpp │ │ ├── numeric_cast.hpp │ │ ├── or.hpp │ │ ├── order.hpp │ │ ├── order_fwd.hpp │ │ ├── pair.hpp │ │ ├── pair_view.hpp │ │ ├── partition.hpp │ │ ├── placeholders.hpp │ │ ├── plus.hpp │ │ ├── pop_back.hpp │ │ ├── pop_back_fwd.hpp │ │ ├── pop_front.hpp │ │ ├── pop_front_fwd.hpp │ │ ├── print.hpp │ │ ├── prior.hpp │ │ ├── protect.hpp │ │ ├── push_back.hpp │ │ ├── push_back_fwd.hpp │ │ ├── push_front.hpp │ │ ├── push_front_fwd.hpp │ │ ├── quote.hpp │ │ ├── range_c.hpp │ │ ├── remove.hpp │ │ ├── remove_if.hpp │ │ ├── replace.hpp │ │ ├── replace_if.hpp │ │ ├── reverse.hpp │ │ ├── reverse_fold.hpp │ │ ├── reverse_iter_fold.hpp │ │ ├── same_as.hpp │ │ ├── sequence_tag.hpp │ │ ├── sequence_tag_fwd.hpp │ │ ├── set.hpp │ │ ├── set │ │ │ ├── aux_ │ │ │ │ ├── at_impl.hpp │ │ │ │ ├── begin_end_impl.hpp │ │ │ │ ├── clear_impl.hpp │ │ │ │ ├── empty_impl.hpp │ │ │ │ ├── erase_impl.hpp │ │ │ │ ├── erase_key_impl.hpp │ │ │ │ ├── has_key_impl.hpp │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ ├── insert_impl.hpp │ │ │ │ ├── item.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── key_type_impl.hpp │ │ │ │ ├── numbered.hpp │ │ │ │ ├── numbered_c.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ └── plain │ │ │ │ │ │ ├── set10.hpp │ │ │ │ │ │ ├── set10_c.hpp │ │ │ │ │ │ ├── set20.hpp │ │ │ │ │ │ ├── set20_c.hpp │ │ │ │ │ │ ├── set30.hpp │ │ │ │ │ │ ├── set30_c.hpp │ │ │ │ │ │ ├── set40.hpp │ │ │ │ │ │ ├── set40_c.hpp │ │ │ │ │ │ ├── set50.hpp │ │ │ │ │ │ └── set50_c.hpp │ │ │ │ ├── set0.hpp │ │ │ │ ├── size_impl.hpp │ │ │ │ ├── tag.hpp │ │ │ │ └── value_type_impl.hpp │ │ │ ├── set0.hpp │ │ │ ├── set0_c.hpp │ │ │ ├── set10.hpp │ │ │ ├── set10_c.hpp │ │ │ ├── set20.hpp │ │ │ ├── set20_c.hpp │ │ │ ├── set30.hpp │ │ │ ├── set30_c.hpp │ │ │ ├── set40.hpp │ │ │ ├── set40_c.hpp │ │ │ ├── set50.hpp │ │ │ └── set50_c.hpp │ │ ├── set_c.hpp │ │ ├── shift_left.hpp │ │ ├── shift_right.hpp │ │ ├── single_view.hpp │ │ ├── size.hpp │ │ ├── size_fwd.hpp │ │ ├── size_t.hpp │ │ ├── size_t_fwd.hpp │ │ ├── sizeof.hpp │ │ ├── sort.hpp │ │ ├── stable_partition.hpp │ │ ├── string.hpp │ │ ├── switch.hpp │ │ ├── tag.hpp │ │ ├── times.hpp │ │ ├── transform.hpp │ │ ├── transform_view.hpp │ │ ├── unique.hpp │ │ ├── unpack_args.hpp │ │ ├── upper_bound.hpp │ │ ├── value_type.hpp │ │ ├── value_type_fwd.hpp │ │ ├── vector.hpp │ │ ├── vector │ │ │ ├── aux_ │ │ │ │ ├── O1_size.hpp │ │ │ │ ├── at.hpp │ │ │ │ ├── back.hpp │ │ │ │ ├── begin_end.hpp │ │ │ │ ├── clear.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── front.hpp │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ ├── item.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── numbered.hpp │ │ │ │ ├── numbered_c.hpp │ │ │ │ ├── pop_back.hpp │ │ │ │ ├── pop_front.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ ├── no_ctps │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ │ ├── plain │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ │ └── typeof_based │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ ├── push_back.hpp │ │ │ │ ├── push_front.hpp │ │ │ │ ├── size.hpp │ │ │ │ ├── tag.hpp │ │ │ │ └── vector0.hpp │ │ │ ├── vector0.hpp │ │ │ ├── vector0_c.hpp │ │ │ ├── vector10.hpp │ │ │ ├── vector10_c.hpp │ │ │ ├── vector20.hpp │ │ │ ├── vector20_c.hpp │ │ │ ├── vector30.hpp │ │ │ ├── vector30_c.hpp │ │ │ ├── vector40.hpp │ │ │ ├── vector40_c.hpp │ │ │ ├── vector50.hpp │ │ │ └── vector50_c.hpp │ │ ├── vector_c.hpp │ │ ├── void.hpp │ │ ├── void_fwd.hpp │ │ └── zip_view.hpp │ │ ├── noncopyable.hpp │ │ ├── preprocessor │ │ ├── arithmetic.hpp │ │ ├── arithmetic │ │ │ ├── add.hpp │ │ │ ├── dec.hpp │ │ │ ├── detail │ │ │ │ └── div_base.hpp │ │ │ ├── div.hpp │ │ │ ├── inc.hpp │ │ │ ├── mod.hpp │ │ │ ├── mul.hpp │ │ │ └── sub.hpp │ │ ├── array.hpp │ │ ├── array │ │ │ ├── data.hpp │ │ │ ├── detail │ │ │ │ └── get_data.hpp │ │ │ ├── elem.hpp │ │ │ ├── enum.hpp │ │ │ ├── insert.hpp │ │ │ ├── pop_back.hpp │ │ │ ├── pop_front.hpp │ │ │ ├── push_back.hpp │ │ │ ├── push_front.hpp │ │ │ ├── remove.hpp │ │ │ ├── replace.hpp │ │ │ ├── reverse.hpp │ │ │ ├── size.hpp │ │ │ ├── to_list.hpp │ │ │ ├── to_seq.hpp │ │ │ └── to_tuple.hpp │ │ ├── assert_msg.hpp │ │ ├── cat.hpp │ │ ├── comma.hpp │ │ ├── comma_if.hpp │ │ ├── comparison.hpp │ │ ├── comparison │ │ │ ├── equal.hpp │ │ │ ├── greater.hpp │ │ │ ├── greater_equal.hpp │ │ │ ├── less.hpp │ │ │ ├── less_equal.hpp │ │ │ └── not_equal.hpp │ │ ├── config │ │ │ ├── config.hpp │ │ │ └── limits.hpp │ │ ├── control.hpp │ │ ├── control │ │ │ ├── deduce_d.hpp │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── while.hpp │ │ │ │ ├── edg │ │ │ │ │ └── while.hpp │ │ │ │ ├── msvc │ │ │ │ │ └── while.hpp │ │ │ │ └── while.hpp │ │ │ ├── expr_if.hpp │ │ │ ├── expr_iif.hpp │ │ │ ├── if.hpp │ │ │ ├── iif.hpp │ │ │ └── while.hpp │ │ ├── debug.hpp │ │ ├── debug │ │ │ ├── assert.hpp │ │ │ ├── error.hpp │ │ │ └── line.hpp │ │ ├── dec.hpp │ │ ├── detail │ │ │ ├── auto_rec.hpp │ │ │ ├── check.hpp │ │ │ ├── dmc │ │ │ │ └── auto_rec.hpp │ │ │ ├── is_binary.hpp │ │ │ ├── is_nullary.hpp │ │ │ ├── is_unary.hpp │ │ │ ├── null.hpp │ │ │ └── split.hpp │ │ ├── empty.hpp │ │ ├── enum.hpp │ │ ├── enum_params.hpp │ │ ├── enum_params_with_a_default.hpp │ │ ├── enum_params_with_defaults.hpp │ │ ├── enum_shifted.hpp │ │ ├── enum_shifted_params.hpp │ │ ├── expand.hpp │ │ ├── expr_if.hpp │ │ ├── facilities.hpp │ │ ├── facilities │ │ │ ├── apply.hpp │ │ │ ├── detail │ │ │ │ └── is_empty.hpp │ │ │ ├── empty.hpp │ │ │ ├── expand.hpp │ │ │ ├── identity.hpp │ │ │ ├── intercept.hpp │ │ │ ├── is_1.hpp │ │ │ ├── is_empty.hpp │ │ │ ├── is_empty_or_1.hpp │ │ │ ├── is_empty_variadic.hpp │ │ │ └── overload.hpp │ │ ├── for.hpp │ │ ├── identity.hpp │ │ ├── if.hpp │ │ ├── inc.hpp │ │ ├── iterate.hpp │ │ ├── iteration.hpp │ │ ├── iteration │ │ │ ├── detail │ │ │ │ ├── bounds │ │ │ │ │ ├── lower1.hpp │ │ │ │ │ ├── lower2.hpp │ │ │ │ │ ├── lower3.hpp │ │ │ │ │ ├── lower4.hpp │ │ │ │ │ ├── lower5.hpp │ │ │ │ │ ├── upper1.hpp │ │ │ │ │ ├── upper2.hpp │ │ │ │ │ ├── upper3.hpp │ │ │ │ │ ├── upper4.hpp │ │ │ │ │ └── upper5.hpp │ │ │ │ ├── finish.hpp │ │ │ │ ├── iter │ │ │ │ │ ├── forward1.hpp │ │ │ │ │ ├── forward2.hpp │ │ │ │ │ ├── forward3.hpp │ │ │ │ │ ├── forward4.hpp │ │ │ │ │ ├── forward5.hpp │ │ │ │ │ ├── reverse1.hpp │ │ │ │ │ ├── reverse2.hpp │ │ │ │ │ ├── reverse3.hpp │ │ │ │ │ ├── reverse4.hpp │ │ │ │ │ └── reverse5.hpp │ │ │ │ ├── local.hpp │ │ │ │ ├── rlocal.hpp │ │ │ │ ├── self.hpp │ │ │ │ └── start.hpp │ │ │ ├── iterate.hpp │ │ │ ├── local.hpp │ │ │ └── self.hpp │ │ ├── library.hpp │ │ ├── limits.hpp │ │ ├── list.hpp │ │ ├── list │ │ │ ├── adt.hpp │ │ │ ├── append.hpp │ │ │ ├── at.hpp │ │ │ ├── cat.hpp │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── fold_left.hpp │ │ │ │ ├── edg │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ └── fold_right.hpp │ │ │ │ ├── fold_left.hpp │ │ │ │ └── fold_right.hpp │ │ │ ├── enum.hpp │ │ │ ├── filter.hpp │ │ │ ├── first_n.hpp │ │ │ ├── fold_left.hpp │ │ │ ├── fold_right.hpp │ │ │ ├── for_each.hpp │ │ │ ├── for_each_i.hpp │ │ │ ├── for_each_product.hpp │ │ │ ├── rest_n.hpp │ │ │ ├── reverse.hpp │ │ │ ├── size.hpp │ │ │ ├── to_array.hpp │ │ │ ├── to_seq.hpp │ │ │ ├── to_tuple.hpp │ │ │ └── transform.hpp │ │ ├── logical.hpp │ │ ├── logical │ │ │ ├── and.hpp │ │ │ ├── bitand.hpp │ │ │ ├── bitnor.hpp │ │ │ ├── bitor.hpp │ │ │ ├── bitxor.hpp │ │ │ ├── bool.hpp │ │ │ ├── compl.hpp │ │ │ ├── nor.hpp │ │ │ ├── not.hpp │ │ │ ├── or.hpp │ │ │ └── xor.hpp │ │ ├── max.hpp │ │ ├── min.hpp │ │ ├── punctuation.hpp │ │ ├── punctuation │ │ │ ├── comma.hpp │ │ │ ├── comma_if.hpp │ │ │ ├── detail │ │ │ │ └── is_begin_parens.hpp │ │ │ ├── is_begin_parens.hpp │ │ │ ├── paren.hpp │ │ │ ├── paren_if.hpp │ │ │ └── remove_parens.hpp │ │ ├── repeat.hpp │ │ ├── repeat_2nd.hpp │ │ ├── repeat_3rd.hpp │ │ ├── repeat_from_to.hpp │ │ ├── repeat_from_to_2nd.hpp │ │ ├── repeat_from_to_3rd.hpp │ │ ├── repetition.hpp │ │ ├── repetition │ │ │ ├── deduce_r.hpp │ │ │ ├── deduce_z.hpp │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── for.hpp │ │ │ │ ├── edg │ │ │ │ │ └── for.hpp │ │ │ │ ├── for.hpp │ │ │ │ └── msvc │ │ │ │ │ └── for.hpp │ │ │ ├── enum.hpp │ │ │ ├── enum_binary_params.hpp │ │ │ ├── enum_params.hpp │ │ │ ├── enum_params_with_a_default.hpp │ │ │ ├── enum_params_with_defaults.hpp │ │ │ ├── enum_shifted.hpp │ │ │ ├── enum_shifted_binary_params.hpp │ │ │ ├── enum_shifted_params.hpp │ │ │ ├── enum_trailing.hpp │ │ │ ├── enum_trailing_binary_params.hpp │ │ │ ├── enum_trailing_params.hpp │ │ │ ├── for.hpp │ │ │ ├── repeat.hpp │ │ │ └── repeat_from_to.hpp │ │ ├── selection.hpp │ │ ├── selection │ │ │ ├── max.hpp │ │ │ └── min.hpp │ │ ├── seq.hpp │ │ ├── seq │ │ │ ├── cat.hpp │ │ │ ├── detail │ │ │ │ ├── binary_transform.hpp │ │ │ │ └── split.hpp │ │ │ ├── elem.hpp │ │ │ ├── enum.hpp │ │ │ ├── filter.hpp │ │ │ ├── first_n.hpp │ │ │ ├── fold_left.hpp │ │ │ ├── fold_right.hpp │ │ │ ├── for_each.hpp │ │ │ ├── for_each_i.hpp │ │ │ ├── for_each_product.hpp │ │ │ ├── insert.hpp │ │ │ ├── pop_back.hpp │ │ │ ├── pop_front.hpp │ │ │ ├── push_back.hpp │ │ │ ├── push_front.hpp │ │ │ ├── remove.hpp │ │ │ ├── replace.hpp │ │ │ ├── rest_n.hpp │ │ │ ├── reverse.hpp │ │ │ ├── seq.hpp │ │ │ ├── size.hpp │ │ │ ├── subseq.hpp │ │ │ ├── to_array.hpp │ │ │ ├── to_list.hpp │ │ │ ├── to_tuple.hpp │ │ │ ├── transform.hpp │ │ │ └── variadic_seq_to_seq.hpp │ │ ├── slot.hpp │ │ ├── slot │ │ │ ├── counter.hpp │ │ │ ├── detail │ │ │ │ ├── counter.hpp │ │ │ │ ├── def.hpp │ │ │ │ ├── shared.hpp │ │ │ │ ├── slot1.hpp │ │ │ │ ├── slot2.hpp │ │ │ │ ├── slot3.hpp │ │ │ │ ├── slot4.hpp │ │ │ │ └── slot5.hpp │ │ │ └── slot.hpp │ │ ├── stringize.hpp │ │ ├── tuple.hpp │ │ ├── tuple │ │ │ ├── detail │ │ │ │ └── is_single_return.hpp │ │ │ ├── eat.hpp │ │ │ ├── elem.hpp │ │ │ ├── enum.hpp │ │ │ ├── insert.hpp │ │ │ ├── pop_back.hpp │ │ │ ├── pop_front.hpp │ │ │ ├── push_back.hpp │ │ │ ├── push_front.hpp │ │ │ ├── rem.hpp │ │ │ ├── remove.hpp │ │ │ ├── replace.hpp │ │ │ ├── reverse.hpp │ │ │ ├── size.hpp │ │ │ ├── to_array.hpp │ │ │ ├── to_list.hpp │ │ │ └── to_seq.hpp │ │ ├── variadic.hpp │ │ ├── variadic │ │ │ ├── detail │ │ │ │ └── is_single_return.hpp │ │ │ ├── elem.hpp │ │ │ ├── size.hpp │ │ │ ├── to_array.hpp │ │ │ ├── to_list.hpp │ │ │ ├── to_seq.hpp │ │ │ └── to_tuple.hpp │ │ ├── while.hpp │ │ └── wstringize.hpp │ │ ├── ref.hpp │ │ ├── static_assert.hpp │ │ ├── type_traits │ │ ├── add_const.hpp │ │ ├── add_cv.hpp │ │ ├── add_lvalue_reference.hpp │ │ ├── add_pointer.hpp │ │ ├── add_reference.hpp │ │ ├── add_rvalue_reference.hpp │ │ ├── add_volatile.hpp │ │ ├── aligned_storage.hpp │ │ ├── alignment_of.hpp │ │ ├── alignment_traits.hpp │ │ ├── arithmetic_traits.hpp │ │ ├── array_traits.hpp │ │ ├── broken_compiler_spec.hpp │ │ ├── common_type.hpp │ │ ├── composite_traits.hpp │ │ ├── conditional.hpp │ │ ├── config.hpp │ │ ├── conversion_traits.hpp │ │ ├── cv_traits.hpp │ │ ├── decay.hpp │ │ ├── detail │ │ │ ├── bool_trait_def.hpp │ │ │ ├── bool_trait_undef.hpp │ │ │ ├── common_type_imp.hpp │ │ │ ├── cv_traits_impl.hpp │ │ │ ├── false_result.hpp │ │ │ ├── has_binary_operator.hpp │ │ │ ├── has_postfix_operator.hpp │ │ │ ├── has_prefix_operator.hpp │ │ │ ├── ice_and.hpp │ │ │ ├── ice_eq.hpp │ │ │ ├── ice_not.hpp │ │ │ ├── ice_or.hpp │ │ │ ├── is_function_ptr_helper.hpp │ │ │ ├── is_function_ptr_tester.hpp │ │ │ ├── is_mem_fun_pointer_impl.hpp │ │ │ ├── is_mem_fun_pointer_tester.hpp │ │ │ ├── size_t_trait_def.hpp │ │ │ ├── size_t_trait_undef.hpp │ │ │ ├── template_arity_spec.hpp │ │ │ ├── type_trait_def.hpp │ │ │ ├── type_trait_undef.hpp │ │ │ ├── wrap.hpp │ │ │ └── yes_no_type.hpp │ │ ├── extent.hpp │ │ ├── floating_point_promotion.hpp │ │ ├── function_traits.hpp │ │ ├── has_bit_and.hpp │ │ ├── has_bit_and_assign.hpp │ │ ├── has_bit_or.hpp │ │ ├── has_bit_or_assign.hpp │ │ ├── has_bit_xor.hpp │ │ ├── has_bit_xor_assign.hpp │ │ ├── has_complement.hpp │ │ ├── has_dereference.hpp │ │ ├── has_divides.hpp │ │ ├── has_divides_assign.hpp │ │ ├── has_equal_to.hpp │ │ ├── has_greater.hpp │ │ ├── has_greater_equal.hpp │ │ ├── has_left_shift.hpp │ │ ├── has_left_shift_assign.hpp │ │ ├── has_less.hpp │ │ ├── has_less_equal.hpp │ │ ├── has_logical_and.hpp │ │ ├── has_logical_not.hpp │ │ ├── has_logical_or.hpp │ │ ├── has_minus.hpp │ │ ├── has_minus_assign.hpp │ │ ├── has_modulus.hpp │ │ ├── has_modulus_assign.hpp │ │ ├── has_multiplies.hpp │ │ ├── has_multiplies_assign.hpp │ │ ├── has_negate.hpp │ │ ├── has_new_operator.hpp │ │ ├── has_not_equal_to.hpp │ │ ├── has_nothrow_assign.hpp │ │ ├── has_nothrow_constructor.hpp │ │ ├── has_nothrow_copy.hpp │ │ ├── has_nothrow_destructor.hpp │ │ ├── has_operator.hpp │ │ ├── has_plus.hpp │ │ ├── has_plus_assign.hpp │ │ ├── has_post_decrement.hpp │ │ ├── has_post_increment.hpp │ │ ├── has_pre_decrement.hpp │ │ ├── has_pre_increment.hpp │ │ ├── has_right_shift.hpp │ │ ├── has_right_shift_assign.hpp │ │ ├── has_trivial_assign.hpp │ │ ├── has_trivial_constructor.hpp │ │ ├── has_trivial_copy.hpp │ │ ├── has_trivial_destructor.hpp │ │ ├── has_trivial_move_assign.hpp │ │ ├── has_trivial_move_constructor.hpp │ │ ├── has_unary_minus.hpp │ │ ├── has_unary_plus.hpp │ │ ├── has_virtual_destructor.hpp │ │ ├── ice.hpp │ │ ├── integral_constant.hpp │ │ ├── integral_promotion.hpp │ │ ├── intrinsics.hpp │ │ ├── is_abstract.hpp │ │ ├── is_arithmetic.hpp │ │ ├── is_array.hpp │ │ ├── is_base_and_derived.hpp │ │ ├── is_base_of.hpp │ │ ├── is_base_of_tr1.hpp │ │ ├── is_class.hpp │ │ ├── is_complex.hpp │ │ ├── is_compound.hpp │ │ ├── is_const.hpp │ │ ├── is_convertible.hpp │ │ ├── is_copy_assignable.hpp │ │ ├── is_copy_constructible.hpp │ │ ├── is_empty.hpp │ │ ├── is_enum.hpp │ │ ├── is_final.hpp │ │ ├── is_float.hpp │ │ ├── is_floating_point.hpp │ │ ├── is_function.hpp │ │ ├── is_fundamental.hpp │ │ ├── is_integral.hpp │ │ ├── is_lvalue_reference.hpp │ │ ├── is_member_function_pointer.hpp │ │ ├── is_member_object_pointer.hpp │ │ ├── is_member_pointer.hpp │ │ ├── is_nothrow_move_assignable.hpp │ │ ├── is_nothrow_move_constructible.hpp │ │ ├── is_object.hpp │ │ ├── is_pod.hpp │ │ ├── is_pointer.hpp │ │ ├── is_polymorphic.hpp │ │ ├── is_reference.hpp │ │ ├── is_rvalue_reference.hpp │ │ ├── is_same.hpp │ │ ├── is_scalar.hpp │ │ ├── is_signed.hpp │ │ ├── is_stateless.hpp │ │ ├── is_union.hpp │ │ ├── is_unsigned.hpp │ │ ├── is_virtual_base_of.hpp │ │ ├── is_void.hpp │ │ ├── is_volatile.hpp │ │ ├── make_signed.hpp │ │ ├── make_unsigned.hpp │ │ ├── object_traits.hpp │ │ ├── promote.hpp │ │ ├── rank.hpp │ │ ├── reference_traits.hpp │ │ ├── remove_all_extents.hpp │ │ ├── remove_bounds.hpp │ │ ├── remove_const.hpp │ │ ├── remove_cv.hpp │ │ ├── remove_extent.hpp │ │ ├── remove_pointer.hpp │ │ ├── remove_reference.hpp │ │ ├── remove_volatile.hpp │ │ ├── same_traits.hpp │ │ ├── transform_traits.hpp │ │ ├── transform_traits_spec.hpp │ │ └── type_with_alignment.hpp │ │ └── utility │ │ ├── addressof.hpp │ │ ├── base_from_member.hpp │ │ ├── binary.hpp │ │ ├── compare_pointees.hpp │ │ ├── declval.hpp │ │ ├── detail │ │ ├── in_place_factory_prefix.hpp │ │ ├── in_place_factory_suffix.hpp │ │ └── result_of_iterate.hpp │ │ ├── empty_deleter.hpp │ │ ├── enable_if.hpp │ │ ├── explicit_operator_bool.hpp │ │ ├── identity_type.hpp │ │ ├── in_place_factory.hpp │ │ ├── result_of.hpp │ │ ├── string_ref.hpp │ │ ├── string_ref_fwd.hpp │ │ ├── swap.hpp │ │ ├── typed_in_place_factory.hpp │ │ └── value_init.hpp ├── clReflect-0.4 │ ├── AUTHORS │ ├── LICENSE │ ├── README.md │ ├── inc │ │ ├── clcpp │ │ │ ├── Containers.h │ │ │ ├── FunctionCall.h │ │ │ ├── clcpp.h │ │ │ └── clcpp_internal.h │ │ └── clutl │ │ │ ├── FieldVisitor.h │ │ │ ├── JSONLexer.h │ │ │ ├── Module.h │ │ │ ├── Objects.h │ │ │ ├── Serialise.h │ │ │ └── SerialiseFunction.h │ └── src │ │ ├── clReflectCpp │ │ ├── Containers.cpp │ │ └── clcpp.cpp │ │ └── clReflectUtil │ │ ├── FieldVisitor.cpp │ │ ├── JSONLexer.cpp │ │ ├── Module.cpp │ │ ├── Objects.cpp │ │ ├── Serialise.cpp │ │ ├── SerialiseFunction.cpp │ │ ├── SerialiseJSON.cpp │ │ └── SerialiseVersionedBinary.cpp ├── freetype-2.6.1 │ ├── README │ ├── include │ │ ├── freetype │ │ │ ├── config │ │ │ │ ├── ftconfig.h │ │ │ │ ├── ftheader.h │ │ │ │ ├── ftmodule.h │ │ │ │ ├── ftoption.h │ │ │ │ └── ftstdlib.h │ │ │ ├── freetype.h │ │ │ ├── ftadvanc.h │ │ │ ├── ftautoh.h │ │ │ ├── ftbbox.h │ │ │ ├── ftbdf.h │ │ │ ├── ftbitmap.h │ │ │ ├── ftbzip2.h │ │ │ ├── ftcache.h │ │ │ ├── ftcffdrv.h │ │ │ ├── ftchapters.h │ │ │ ├── ftcid.h │ │ │ ├── fterrdef.h │ │ │ ├── fterrors.h │ │ │ ├── ftfntfmt.h │ │ │ ├── ftgasp.h │ │ │ ├── ftglyph.h │ │ │ ├── ftgxval.h │ │ │ ├── ftgzip.h │ │ │ ├── ftimage.h │ │ │ ├── ftincrem.h │ │ │ ├── ftlcdfil.h │ │ │ ├── ftlist.h │ │ │ ├── ftlzw.h │ │ │ ├── ftmac.h │ │ │ ├── ftmm.h │ │ │ ├── ftmodapi.h │ │ │ ├── ftmoderr.h │ │ │ ├── ftotval.h │ │ │ ├── ftoutln.h │ │ │ ├── ftpfr.h │ │ │ ├── ftrender.h │ │ │ ├── ftsizes.h │ │ │ ├── ftsnames.h │ │ │ ├── ftstroke.h │ │ │ ├── ftsynth.h │ │ │ ├── ftsystem.h │ │ │ ├── fttrigon.h │ │ │ ├── ftttdrv.h │ │ │ ├── fttypes.h │ │ │ ├── ftwinfnt.h │ │ │ ├── internal │ │ │ │ ├── autohint.h │ │ │ │ ├── ftcalc.h │ │ │ │ ├── ftdebug.h │ │ │ │ ├── ftdriver.h │ │ │ │ ├── ftgloadr.h │ │ │ │ ├── ftmemory.h │ │ │ │ ├── ftobjs.h │ │ │ │ ├── ftpic.h │ │ │ │ ├── ftrfork.h │ │ │ │ ├── ftserv.h │ │ │ │ ├── ftstream.h │ │ │ │ ├── fttrace.h │ │ │ │ ├── ftvalid.h │ │ │ │ ├── internal.h │ │ │ │ ├── psaux.h │ │ │ │ ├── pshints.h │ │ │ │ ├── services │ │ │ │ │ ├── svbdf.h │ │ │ │ │ ├── svcid.h │ │ │ │ │ ├── svfntfmt.h │ │ │ │ │ ├── svgldict.h │ │ │ │ │ ├── svgxval.h │ │ │ │ │ ├── svkern.h │ │ │ │ │ ├── svmm.h │ │ │ │ │ ├── svotval.h │ │ │ │ │ ├── svpfr.h │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ ├── svprop.h │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ ├── svtteng.h │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ └── svwinfnt.h │ │ │ │ ├── sfnt.h │ │ │ │ ├── t1types.h │ │ │ │ └── tttypes.h │ │ │ ├── t1tables.h │ │ │ ├── ttnameid.h │ │ │ ├── tttables.h │ │ │ ├── tttags.h │ │ │ └── ttunpat.h │ │ └── ft2build.h │ └── lib │ │ ├── freetype261.lib │ │ ├── freetype261MT.lib │ │ ├── freetype261MTd.lib │ │ ├── freetype261ST.lib │ │ ├── freetype261STd.lib │ │ └── freetype261d.lib ├── gl │ ├── glcorearb.h │ ├── glext.h │ ├── glxext.h │ └── wglext.h ├── glew-1.13.0 │ ├── include │ │ └── GL │ │ │ ├── glew.h │ │ │ ├── glxew.h │ │ │ └── wglew.h │ └── lib │ │ ├── glew32.exp │ │ ├── glew32d.exp │ │ ├── glew32s.lib │ │ └── glew32sd.lib ├── luafilesystem │ ├── .gitignore │ ├── LICENSE │ ├── README │ ├── doc │ │ └── us │ │ │ ├── doc.css │ │ │ ├── examples.html │ │ │ ├── index.html │ │ │ ├── license.html │ │ │ ├── luafilesystem.png │ │ │ └── manual.html │ ├── lib │ │ └── vc6 │ │ │ ├── lfs.exp │ │ │ └── lfs.lib │ ├── src │ │ ├── .gitignore │ │ ├── lfs.c │ │ ├── lfs.def │ │ └── lfs.h │ ├── tests │ │ └── test.lua │ └── vc6 │ │ ├── lfs.def │ │ ├── luafilesystem.dsw │ │ ├── luafilesystem.sln │ │ ├── luafilesystem_dll.dsp │ │ ├── luafilesystem_dll.vcxproj │ │ └── luafilesystem_dll.vcxproj.filters ├── luajit-2.0 │ ├── COPYRIGHT │ ├── Makefile │ ├── README │ ├── dynasm │ │ ├── dasm_arm.h │ │ ├── dasm_arm.lua │ │ ├── dasm_mips.h │ │ ├── dasm_mips.lua │ │ ├── dasm_ppc.h │ │ ├── dasm_ppc.lua │ │ ├── dasm_proto.h │ │ ├── dasm_x64.lua │ │ ├── dasm_x86.h │ │ ├── dasm_x86.lua │ │ └── dynasm.lua │ ├── etc │ │ ├── luajit.1 │ │ └── luajit.pc │ └── src │ │ ├── Makefile │ │ ├── Makefile.dep │ │ ├── host │ │ ├── README │ │ ├── buildvm.c │ │ ├── buildvm.h │ │ ├── buildvm_arch.h │ │ ├── buildvm_asm.c │ │ ├── buildvm_fold.c │ │ ├── buildvm_lib.c │ │ ├── buildvm_peobj.c │ │ ├── genminilua.lua │ │ └── minilua.c │ │ ├── jit │ │ ├── bc.lua │ │ ├── bcsave.lua │ │ ├── dis_arm.lua │ │ ├── dis_mips.lua │ │ ├── dis_mipsel.lua │ │ ├── dis_ppc.lua │ │ ├── dis_x64.lua │ │ ├── dis_x86.lua │ │ ├── dump.lua │ │ ├── v.lua │ │ └── vmdef.lua │ │ ├── lauxlib.h │ │ ├── lib_aux.c │ │ ├── lib_base.c │ │ ├── lib_bit.c │ │ ├── lib_debug.c │ │ ├── lib_ffi.c │ │ ├── lib_init.c │ │ ├── lib_io.c │ │ ├── lib_jit.c │ │ ├── lib_math.c │ │ ├── lib_os.c │ │ ├── lib_package.c │ │ ├── lib_string.c │ │ ├── lib_table.c │ │ ├── lj.supp │ │ ├── lj_alloc.c │ │ ├── lj_alloc.h │ │ ├── lj_api.c │ │ ├── lj_arch.h │ │ ├── lj_asm.c │ │ ├── lj_asm.h │ │ ├── lj_asm_arm.h │ │ ├── lj_asm_mips.h │ │ ├── lj_asm_ppc.h │ │ ├── lj_asm_x86.h │ │ ├── lj_bc.c │ │ ├── lj_bc.h │ │ ├── lj_bcdef.h │ │ ├── lj_bcdump.h │ │ ├── lj_bcread.c │ │ ├── lj_bcwrite.c │ │ ├── lj_carith.c │ │ ├── lj_carith.h │ │ ├── lj_ccall.c │ │ ├── lj_ccall.h │ │ ├── lj_ccallback.c │ │ ├── lj_ccallback.h │ │ ├── lj_cconv.c │ │ ├── lj_cconv.h │ │ ├── lj_cdata.c │ │ ├── lj_cdata.h │ │ ├── lj_char.c │ │ ├── lj_char.h │ │ ├── lj_clib.c │ │ ├── lj_clib.h │ │ ├── lj_cparse.c │ │ ├── lj_cparse.h │ │ ├── lj_crecord.c │ │ ├── lj_crecord.h │ │ ├── lj_ctype.c │ │ ├── lj_ctype.h │ │ ├── lj_debug.c │ │ ├── lj_debug.h │ │ ├── lj_def.h │ │ ├── lj_dispatch.c │ │ ├── lj_dispatch.h │ │ ├── lj_emit_arm.h │ │ ├── lj_emit_mips.h │ │ ├── lj_emit_ppc.h │ │ ├── lj_emit_x86.h │ │ ├── lj_err.c │ │ ├── lj_err.h │ │ ├── lj_errmsg.h │ │ ├── lj_ff.h │ │ ├── lj_ffdef.h │ │ ├── lj_ffrecord.c │ │ ├── lj_ffrecord.h │ │ ├── lj_folddef.h │ │ ├── lj_frame.h │ │ ├── lj_func.c │ │ ├── lj_func.h │ │ ├── lj_gc.c │ │ ├── lj_gc.h │ │ ├── lj_gdbjit.c │ │ ├── lj_gdbjit.h │ │ ├── lj_ir.c │ │ ├── lj_ir.h │ │ ├── lj_ircall.h │ │ ├── lj_iropt.h │ │ ├── lj_jit.h │ │ ├── lj_lex.c │ │ ├── lj_lex.h │ │ ├── lj_lib.c │ │ ├── lj_lib.h │ │ ├── lj_libdef.h │ │ ├── lj_load.c │ │ ├── lj_mcode.c │ │ ├── lj_mcode.h │ │ ├── lj_meta.c │ │ ├── lj_meta.h │ │ ├── lj_obj.c │ │ ├── lj_obj.h │ │ ├── lj_opt_dce.c │ │ ├── lj_opt_fold.c │ │ ├── lj_opt_loop.c │ │ ├── lj_opt_mem.c │ │ ├── lj_opt_narrow.c │ │ ├── lj_opt_sink.c │ │ ├── lj_opt_split.c │ │ ├── lj_parse.c │ │ ├── lj_parse.h │ │ ├── lj_recdef.h │ │ ├── lj_record.c │ │ ├── lj_record.h │ │ ├── lj_snap.c │ │ ├── lj_snap.h │ │ ├── lj_state.c │ │ ├── lj_state.h │ │ ├── lj_str.c │ │ ├── lj_str.h │ │ ├── lj_strscan.c │ │ ├── lj_strscan.h │ │ ├── lj_tab.c │ │ ├── lj_tab.h │ │ ├── lj_target.h │ │ ├── lj_target_arm.h │ │ ├── lj_target_mips.h │ │ ├── lj_target_ppc.h │ │ ├── lj_target_x86.h │ │ ├── lj_trace.c │ │ ├── lj_trace.h │ │ ├── lj_traceerr.h │ │ ├── lj_udata.c │ │ ├── lj_udata.h │ │ ├── lj_vm.h │ │ ├── lj_vmevent.c │ │ ├── lj_vmevent.h │ │ ├── lj_vmmath.c │ │ ├── ljamalg.c │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── lua51.exp │ │ ├── lua51.lib │ │ ├── luaconf.h │ │ ├── luajit.c │ │ ├── luajit.h │ │ ├── lualib.h │ │ ├── msvcbuild.bat │ │ ├── ps4build.bat │ │ ├── psvitabuild.bat │ │ ├── vm_arm.dasc │ │ ├── vm_mips.dasc │ │ ├── vm_ppc.dasc │ │ ├── vm_ppcspe.dasc │ │ ├── vm_x86.dasc │ │ └── xedkbuild.bat ├── luasocket-3.0-rc1 │ ├── .gitignore │ ├── build │ │ └── vc12 │ │ │ └── bin │ │ │ └── lua │ │ │ └── 5.1 │ │ │ └── x64 │ │ │ └── Release │ │ │ ├── ltn12.lua │ │ │ ├── mime.lua │ │ │ ├── mime │ │ │ ├── core.dll │ │ │ └── core.lib │ │ │ ├── socket.lua │ │ │ └── socket │ │ │ ├── core.dll │ │ │ ├── core.lib │ │ │ ├── ftp.lua │ │ │ ├── headers.lua │ │ │ ├── http.lua │ │ │ ├── smtp.lua │ │ │ ├── tp.lua │ │ │ └── url.lua │ └── luasocket │ │ ├── .gitignore │ │ ├── FIX │ │ ├── LICENSE │ │ ├── Lua51.props │ │ ├── Lua52.props │ │ ├── NEW │ │ ├── README │ │ ├── TODO │ │ ├── WISH │ │ ├── etc │ │ ├── README │ │ ├── b64.lua │ │ ├── check-links.lua │ │ ├── check-memory.lua │ │ ├── cookie.lua │ │ ├── dict.lua │ │ ├── dispatch.lua │ │ ├── eol.lua │ │ ├── forward.lua │ │ ├── get.lua │ │ ├── links │ │ ├── lp.lua │ │ ├── qp.lua │ │ └── tftp.lua │ │ ├── gem │ │ ├── ex1.lua │ │ ├── ex10.lua │ │ ├── ex11.lua │ │ ├── ex12.lua │ │ ├── ex2.lua │ │ ├── ex3.lua │ │ ├── ex4.lua │ │ ├── ex5.lua │ │ ├── ex6.lua │ │ ├── ex7.lua │ │ ├── ex8.lua │ │ ├── ex9.lua │ │ ├── gem.c │ │ ├── gt.b64 │ │ ├── input.bin │ │ ├── ltn012.tex │ │ ├── luasocket.png │ │ ├── makefile │ │ ├── myps2pdf │ │ ├── t1.lua │ │ ├── t2.lua │ │ ├── t2gt.qp │ │ ├── t3.lua │ │ ├── t4.lua │ │ ├── t5.lua │ │ └── test.lua │ │ ├── ltn012.wiki │ │ ├── ltn013.wiki │ │ ├── luasocket.sln │ │ ├── mime.vcxproj │ │ ├── mime.vcxproj.filters │ │ ├── samples │ │ ├── README │ │ ├── cddb.lua │ │ ├── daytimeclnt.lua │ │ ├── echoclnt.lua │ │ ├── echosrvr.lua │ │ ├── listener.lua │ │ ├── lpr.lua │ │ ├── mclisten.lua │ │ ├── mcsend.lua │ │ ├── talker.lua │ │ └── tinyirc.lua │ │ ├── socket.vcxproj │ │ ├── socket.vcxproj.filters │ │ ├── src │ │ ├── auxiliar.c │ │ ├── auxiliar.h │ │ ├── buffer.c │ │ ├── buffer.h │ │ ├── except.c │ │ ├── except.h │ │ ├── ftp.lua │ │ ├── headers.lua │ │ ├── http.lua │ │ ├── inet.c │ │ ├── inet.h │ │ ├── io.c │ │ ├── io.h │ │ ├── ltn12.lua │ │ ├── luasocket.c │ │ ├── luasocket.h │ │ ├── makefile │ │ ├── mbox.lua │ │ ├── mime.c │ │ ├── mime.h │ │ ├── mime.lua │ │ ├── options.c │ │ ├── options.h │ │ ├── pierror.h │ │ ├── select.c │ │ ├── select.h │ │ ├── serial.c │ │ ├── smtp.lua │ │ ├── socket.h │ │ ├── socket.lua │ │ ├── tcp.c │ │ ├── tcp.h │ │ ├── timeout.c │ │ ├── timeout.h │ │ ├── tp.lua │ │ ├── udp.c │ │ ├── udp.h │ │ ├── unix.c │ │ ├── unix.h │ │ ├── url.lua │ │ ├── usocket.c │ │ ├── usocket.h │ │ ├── wsocket.c │ │ └── wsocket.h │ │ └── test │ │ ├── README │ │ ├── auth │ │ ├── .htaccess │ │ ├── .htpasswd │ │ └── index.html │ │ ├── cgi │ │ ├── cat │ │ ├── cat-index-html │ │ ├── env │ │ ├── query-string │ │ ├── redirect-loop │ │ └── request-uri │ │ ├── dicttest.lua │ │ ├── excepttest.lua │ │ ├── find-connect-limit │ │ ├── ftptest.lua │ │ ├── hello.lua │ │ ├── httptest.lua │ │ ├── index.html │ │ ├── ltn12test.lua │ │ ├── luasocket.png │ │ ├── mimetest.lua │ │ ├── smtptest.lua │ │ ├── stufftest.lua │ │ ├── tcp-getoptions │ │ ├── test_bind.lua │ │ ├── test_getaddrinfo.lua │ │ ├── test_socket_error.lua │ │ ├── testclnt.lua │ │ ├── testmesg.lua │ │ ├── testsrvr.lua │ │ ├── testsupport.lua │ │ ├── tftptest.lua │ │ ├── udp-zero-length-send │ │ ├── udp-zero-length-send-recv │ │ ├── udpconnectclnt.lua │ │ ├── udpconnectsrvr.lua │ │ ├── unixclnt.lua │ │ ├── unixsrvr.lua │ │ ├── upload.html │ │ ├── urltest.lua │ │ ├── utestclnt.lua │ │ └── utestsrvr.lua ├── nanovg │ ├── .gitignore │ ├── README.md │ └── src │ │ ├── fontstash.h │ │ ├── nanovg.c │ │ ├── nanovg.h │ │ ├── nanovg_gl.h │ │ ├── nanovg_gl_utils.h │ │ ├── stb_image.h │ │ └── stb_truetype.h ├── rings │ ├── README │ ├── lib │ │ └── vc6 │ │ │ ├── rings.exp │ │ │ └── rings.lib │ ├── src │ │ ├── rings.c │ │ ├── rings.def │ │ └── stable.lua │ └── vc6 │ │ ├── rings.def │ │ ├── rings.dll │ │ ├── rings.dsw │ │ ├── rings.sln │ │ ├── rings_dll.dsp │ │ ├── rings_dll.vcxproj │ │ └── rings_dll.vcxproj.filters ├── soil │ ├── field_128_cube.dds │ ├── img_cheryl.jpg │ ├── img_test.bmp │ ├── img_test.dds │ ├── img_test.png │ ├── img_test.png-screenshot.bmp │ ├── img_test.tga │ ├── img_test_indexed.tga │ ├── include │ │ └── SOIL.h │ ├── lib │ │ ├── SOIL.lib │ │ └── SOIL_d.lib │ ├── projects │ │ ├── VC12 │ │ │ ├── SOIL.sln │ │ │ ├── SOIL.vcproj │ │ │ ├── SOIL.vcxproj │ │ │ └── SOIL.vcxproj.filters │ │ ├── VC9 │ │ │ ├── SOIL.sln │ │ │ └── SOIL.vcproj │ │ ├── codeblocks │ │ │ └── SOIL.cbp │ │ └── makefile │ │ │ ├── alternate Makefile.txt │ │ │ └── makefile │ ├── soil.html │ ├── src │ │ ├── SOIL.cc │ │ ├── SOIL.h │ │ ├── image_DXT.cc │ │ ├── image_DXT.h │ │ ├── image_helper.cc │ │ ├── image_helper.h │ │ ├── original │ │ │ ├── stb_image-1.09.c │ │ │ └── stb_image-1.16.c │ │ ├── stb_image_aug.cc │ │ ├── stb_image_aug.h │ │ ├── stbi_DDS_aug.h │ │ ├── stbi_DDS_aug_c.h │ │ └── test_SOIL.cpp │ ├── testSOIL.exe │ └── test_rect.png ├── sparsehash │ └── sparsehash │ │ ├── dense_hash_map │ │ ├── dense_hash_set │ │ ├── internal │ │ ├── densehashtable.h │ │ ├── hashtable-common.h │ │ ├── libc_allocator_with_realloc.h │ │ ├── sparseconfig.h │ │ └── sparsehashtable.h │ │ ├── sparse_hash_map │ │ ├── sparse_hash_set │ │ ├── sparsetable │ │ ├── template_util.h │ │ └── type_traits.h ├── sqlite-3081002 │ ├── .gitignore │ ├── compile.txt │ ├── shell.c │ ├── sqlite3.c │ ├── sqlite3.dll │ ├── sqlite3.h │ └── sqlite3ext.h └── wsapi │ ├── README │ ├── samples │ ├── cgi-example.lua │ ├── fastcgi-example.lua │ ├── hello.lua │ ├── hello_config.lua │ └── xavante-example.lua │ ├── src │ ├── fastcgi │ │ ├── lfcgi.c │ │ ├── lfcgi.def │ │ └── lfcgi.h │ ├── launcher │ │ ├── launcher.c │ │ ├── make_rc.lua │ │ ├── wsapi │ │ ├── wsapi.c │ │ ├── wsapi.cgi │ │ └── wsapi.fcgi │ ├── wsapi.lua │ └── wsapi │ │ ├── cgi.lua │ │ ├── common.lua │ │ ├── fastcgi.lua │ │ ├── mock.lua │ │ ├── request.lua │ │ ├── response.lua │ │ ├── ringer.lua │ │ ├── sapi.lua │ │ ├── util.lua │ │ └── xavante.lua │ ├── wsapi-install │ └── wsapi-install-1.6 └── zlib.dll /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/.gitmodules -------------------------------------------------------------------------------- /git-remove-history.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/git-remove-history.sh -------------------------------------------------------------------------------- /project-griffin/project-griffin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin.sln -------------------------------------------------------------------------------- /project-griffin/project-griffin/.gitignore: -------------------------------------------------------------------------------- 1 | !*.dll 2 | *.txt 3 | *.hex -------------------------------------------------------------------------------- /project-griffin/project-griffin/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/Doxyfile -------------------------------------------------------------------------------- /project-griffin/project-griffin/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/SDL2.dll -------------------------------------------------------------------------------- /project-griffin/project-griffin/assimp-vc141-mt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/assimp-vc141-mt.dll -------------------------------------------------------------------------------- /project-griffin/project-griffin/data/.gitignore: -------------------------------------------------------------------------------- 1 | assets/ -------------------------------------------------------------------------------- /project-griffin/project-griffin/data/config/inputcontexts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/data/config/inputcontexts.json -------------------------------------------------------------------------------- /project-griffin/project-griffin/data/config/inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/data/config/inputs.json -------------------------------------------------------------------------------- /project-griffin/project-griffin/data/scene.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-griffin/project-griffin/data/scene/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/data/scene/scene.json -------------------------------------------------------------------------------- /project-griffin/project-griffin/data/shaders/Font.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/data/shaders/Font.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/data/shaders/SimpleShader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/data/shaders/SimpleShader.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/data/shaders/SkyFromSpace.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/data/shaders/SkyFromSpace.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/data/shaders/ads.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/data/shaders/ads.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/data/shaders/atmosphere/earth.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/data/shaders/atmosphere/earth.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/data/shaders/blinnPhong.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/data/shaders/blinnPhong.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/data/shaders/fxaa.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/data/shaders/fxaa.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/data/shaders/hbao.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/data/shaders/hbao.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/data/shaders/linearDepth.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/data/shaders/linearDepth.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/data/shaders/shadows.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/data/shaders/shadows.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/data/shaders/skybox.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/data/shaders/skybox.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/data/shaders/ssao.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/data/shaders/ssao.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/data/shaders/ssao2.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/data/shaders/ssao2.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/data/shaders/ssao3.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/data/shaders/ssao3.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/data/shaders/terrain.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/data/shaders/terrain.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/icon.ico -------------------------------------------------------------------------------- /project-griffin/project-griffin/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/icon.png -------------------------------------------------------------------------------- /project-griffin/project-griffin/lua51.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/lua51.dll -------------------------------------------------------------------------------- /project-griffin/project-griffin/project-griffin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/project-griffin.rc -------------------------------------------------------------------------------- /project-griffin/project-griffin/project-griffin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/project-griffin.vcxproj -------------------------------------------------------------------------------- /project-griffin/project-griffin/project-griffin.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/project-griffin.vcxproj.filters -------------------------------------------------------------------------------- /project-griffin/project-griffin/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/resource.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/InputSystem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/InputSystem.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/Scene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/Scene.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/JSON.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/JSON.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/cgilua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/cgilua.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/cgilua/cookies.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/cgilua/cookies.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/cgilua/loader.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/cgilua/loader.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/cgilua/lp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/cgilua/lp.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/cgilua/mime.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/cgilua/mime.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/cgilua/post.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/cgilua/post.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/cgilua/readuntil.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/cgilua/readuntil.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/cgilua/serialize.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/cgilua/serialize.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/cgilua/session.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/cgilua/session.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/cgilua/urlcode.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/cgilua/urlcode.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/copas.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/copas.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/copas/ftp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/copas/ftp.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/copas/http.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/copas/http.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/copas/limit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/copas/limit.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/copas/smtp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/copas/smtp.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/coxpcall.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/coxpcall.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/lfs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/lfs.dll -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/ltn12.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/ltn12.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/mime.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/mime.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/mime/core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/mime/core.dll -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/orbit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/orbit.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/orbit/cache.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/orbit/cache.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/orbit/model.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/orbit/model.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/orbit/ophandler.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/orbit/ophandler.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/orbit/pages.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/orbit/pages.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/orbit/routes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/orbit/routes.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/rings.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/rings.dll -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/socket.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/socket.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/socket/core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/socket/core.dll -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/socket/ftp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/socket/ftp.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/socket/headers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/socket/headers.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/socket/http.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/socket/http.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/socket/smtp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/socket/smtp.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/socket/tp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/socket/tp.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/socket/url.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/socket/url.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/stable.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/stable.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/wsapi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/wsapi.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/wsapi/cgi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/wsapi/cgi.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/wsapi/common.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/wsapi/common.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/wsapi/fastcgi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/wsapi/fastcgi.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/wsapi/mock.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/wsapi/mock.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/wsapi/request.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/wsapi/request.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/wsapi/response.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/wsapi/response.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/wsapi/ringer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/wsapi/ringer.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/wsapi/sapi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/wsapi/sapi.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/wsapi/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/wsapi/util.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/wsapi/xavante.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/wsapi/xavante.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/xavante.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/xavante.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/xavante/encoding.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/xavante/encoding.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/xavante/httpd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/xavante/httpd.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/xavante/mime.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/xavante/mime.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/extension/xavante/xavante.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/extension/xavante/xavante.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/game/gameFSM.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/game/initGame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/game/initGame.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/initState.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/initState.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/luaBuild.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/luaBuild.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/tools/GriffinToolsApi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/tools/GriffinToolsApi.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/tools/ToolsServer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/tools/ToolsServer.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/tools/web/api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/tools/web/api.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/tools/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/tools/web/favicon.png -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/tools/web/hello.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/tools/web/hello.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/tools/web/hello.ws: -------------------------------------------------------------------------------- 1 | return require("hello") 2 | -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/tools/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/tools/web/index.html -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/tools/web/test.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/tools/web/test.lp -------------------------------------------------------------------------------- /project-griffin/project-griffin/scripts/tools/web/test.op: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/scripts/tools/web/test.op -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/api/GriffinToolsApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/api/GriffinToolsApi.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/api/InputSystemApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/api/InputSystemApi.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/api/SceneApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/api/SceneApi.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/application/Engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/application/Engine.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/application/FixedTimestep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/application/FixedTimestep.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/application/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/application/Timer.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/application/UpdateInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/application/UpdateInfo.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/application/impl/Engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/application/impl/Engine.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/application/impl/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/application/impl/platform.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/application/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/application/main.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/application/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/application/main.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/application/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/application/platform.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/entity/Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/entity/Component.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/entity/ComponentFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/entity/ComponentFactory.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/entity/ComponentStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/entity/ComponentStore.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/entity/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/entity/Entity.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/entity/EntityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/entity/EntityManager.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/entity/EntityTypedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/entity/EntityTypedefs.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/entity/components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/entity/components.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/entity/impl/Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/entity/impl/Entity.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/entity/impl/EntityManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/entity/impl/EntityManager.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/game/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/game/Game.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/game/impl/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/game/impl/Game.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/game/impl/GameImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/game/impl/GameImpl.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/game/ship/CoolingSystem.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/game/ship/ElectricalSystem.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/game/ship/PropulsionSystem.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/game/sky/SkySystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/game/sky/SkySystem.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/game/sky/SkySystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/game/sky/SkySystem.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/game/sky/atmosphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/game/sky/atmosphere.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/game/terrain/TerrainSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/game/terrain/TerrainSystem.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/game/terrain/TerrainSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/game/terrain/TerrainSystem.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/input/InputSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/input/InputSystem.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/input/impl/InputSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/input/impl/InputSystem.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/input/impl/InputSystemApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/input/impl/InputSystemApi.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/InputSystem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/InputSystem.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/Scene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/Scene.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/JSON.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/JSON.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/cgilua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/cgilua.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/cgilua/loader.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/cgilua/loader.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/cgilua/lp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/cgilua/lp.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/cgilua/mime.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/cgilua/mime.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/cgilua/post.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/cgilua/post.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/copas.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/copas.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/copas/ftp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/copas/ftp.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/copas/http.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/copas/http.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/copas/limit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/copas/limit.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/copas/smtp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/copas/smtp.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/coxpcall.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/coxpcall.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/lfs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/lfs.dll -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/ltn12.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/ltn12.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/mime.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/mime.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/mime/core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/mime/core.dll -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/rings.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/rings.dll -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/socket.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/socket.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/socket/core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/socket/core.dll -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/socket/ftp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/socket/ftp.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/socket/http.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/socket/http.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/socket/smtp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/socket/smtp.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/socket/tp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/socket/tp.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/socket/url.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/socket/url.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/stable.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/stable.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/wsapi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/wsapi.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/wsapi/cgi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/wsapi/cgi.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/wsapi/common.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/wsapi/common.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/wsapi/fastcgi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/wsapi/fastcgi.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/wsapi/mock.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/wsapi/mock.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/wsapi/request.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/wsapi/request.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/wsapi/ringer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/wsapi/ringer.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/wsapi/sapi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/wsapi/sapi.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/wsapi/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/wsapi/util.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/wsapi/xavante.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/wsapi/xavante.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/xavante.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/xavante.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/xavante/httpd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/xavante/httpd.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/extension/xavante/mime.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/extension/xavante/mime.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/game/gameFSM.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/game/initGame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/game/initGame.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/initState.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/initState.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/luaBuild.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/luaBuild.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/tools/GriffinToolsApi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/tools/GriffinToolsApi.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/lua/tools/toolsServer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/lua/tools/toolsServer.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/IndexBuffer_GL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/IndexBuffer_GL.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/Material_GL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/Material_GL.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/ModelManager_GL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/ModelManager_GL.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/Render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/Render.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/RenderComponents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/RenderComponents.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/RenderHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/RenderHelpers.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/RenderResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/RenderResources.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/RenderTarget3D_GL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/RenderTarget3D_GL.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/RenderTarget_GL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/RenderTarget_GL.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/ShaderManager_GL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/ShaderManager_GL.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/ShaderProgram_GL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/ShaderProgram_GL.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/VertexBuffer_GL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/VertexBuffer_GL.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Area.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Area.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/AxisAlignedBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/AxisAlignedBox.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Camera.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Camera.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/ChanTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/ChanTraits.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Color.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Color.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Fbo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Fbo.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Fbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Fbo.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Font.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Font.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Frustum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Frustum.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Frustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Frustum.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Plane.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Plane.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Ray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Ray.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Ray.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Rect.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Rect.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Sphere.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Sphere.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Text.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Text.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Texture.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Texture.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/TriMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/TriMesh.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/TriMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/TriMesh.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Vbo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Vbo.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/Vbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/Vbo.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/gl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/gl.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/cinder/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/cinder/gl.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/font/FreeType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/font/FreeType.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/font/FreeType.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/geometry/Cube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/geometry/Cube.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/geometry/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/geometry/Geometry.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/geometry/Intersection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/geometry/Intersection.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/geometry/impl/Cube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/geometry/impl/Cube.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/impl/IndexBuffer_GL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/impl/IndexBuffer_GL.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/impl/ModelManager_GL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/impl/ModelManager_GL.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/impl/Render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/impl/Render.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/impl/RenderHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/impl/RenderHelpers.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/impl/RenderTarget_GL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/impl/RenderTarget_GL.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/impl/VertexBuffer_GL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/impl/VertexBuffer_GL.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/model/Mesh_GL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/model/Mesh_GL.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/model/Model_GL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/model/Model_GL.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/model/impl/Animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/model/impl/Animation.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/model/impl/Mesh_GL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/model/impl/Mesh_GL.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/model/impl/Model_GL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/model/impl/Model_GL.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/noise/noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/noise/noise.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/noise/noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/noise/noise.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/noise/noiseTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/noise/noiseTexture.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/noise/noiseTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/noise/noiseTexture.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/shaders/Font.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/shaders/Font.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/shaders/ads.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/shaders/ads.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/shaders/blinnPhong.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/shaders/blinnPhong.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/shaders/fxaa.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/shaders/fxaa.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/shaders/hbao.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/shaders/hbao.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/shaders/layout.glsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/shaders/layout.glsli -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/shaders/linearDepth.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/shaders/linearDepth.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/shaders/skybox.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/shaders/skybox.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/shaders/ssao.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/shaders/ssao.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/shaders/ssao2.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/shaders/ssao2.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/shaders/ssao3.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/shaders/ssao3.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/shaders/terrain.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/shaders/terrain.glsl -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/shaders/ubo.glsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/shaders/ubo.glsli -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/texture/Texture2D_GL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/texture/Texture2D_GL.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/texture/dds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/texture/dds.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/render/texture/dds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/render/texture/dds.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/resource/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/resource/Resource.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/resource/ResourceCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/resource/ResourceCache.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/resource/ResourceLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/resource/ResourceLoader.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/resource/ResourceSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/resource/ResourceSource.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/resource/ResourceTypedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/resource/ResourceTypedefs.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/resource/impl/ResourceCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/resource/impl/ResourceCache.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/scene/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/scene/Camera.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/scene/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/scene/Scene.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/scene/SceneGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/scene/SceneGraph.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/scene/impl/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/scene/impl/Camera.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/scene/impl/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/scene/impl/Scene.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/scene/impl/SceneApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/scene/impl/SceneApi.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/scene/impl/SceneGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/scene/impl/SceneGraph.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/script/ScriptManager_LuaJIT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/script/ScriptManager_LuaJIT.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/tests/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/tests/Test.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/tests/Test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/tests/Test.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/tests/concurrency_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/tests/concurrency_tests.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/tests/container_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/tests/container_tests.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/tests/entity_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/tests/entity_tests.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/tests/scene_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/tests/scene_tests.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/tools/GriffinTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/tools/GriffinTools.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/tools/impl/GriffinTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/tools/impl/GriffinTools.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/tools/impl/GriffinToolsApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/tools/impl/GriffinToolsApi.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/utility/JsonSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/utility/JsonSerializer.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/utility/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/utility/Logger.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/utility/algorithms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/utility/algorithms.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/utility/auto_lister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/utility/auto_lister.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/utility/blend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/utility/blend.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/utility/concurrency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/utility/concurrency.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/utility/container/handle_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/utility/container/handle_map.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/utility/container/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/utility/container/hash_map.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/utility/container/impl/hash_map-inl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/utility/container/vector_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/utility/container/vector_list.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/utility/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/utility/debug.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/utility/enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/utility/enum.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/utility/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/utility/export.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/utility/impl/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/utility/impl/Logger.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/utility/json/json-forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/utility/json/json-forwards.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/utility/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/utility/json/json.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/utility/json/jsoncpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/utility/json/jsoncpp.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/utility/memory_reserve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/utility/memory_reserve.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/utility/prettyprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/utility/prettyprint.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/utility/profile/Profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/utility/profile/Profile.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/utility/reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/source/utility/reflection.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/source/utility/serialization/BinarySerializer.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/.gitignore: -------------------------------------------------------------------------------- 1 | !x64/ 2 | !*.lib 3 | -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/docs/README-cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/docs/README-cmake.md -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/docs/README-hg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/docs/README-hg.md -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/docs/README-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/docs/README-ios.md -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/docs/README-linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/docs/README-linux.md -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/docs/README-nacl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/docs/README-nacl.md -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/docs/README-psp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/docs/README-psp.md -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/docs/README-touch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/docs/README-touch.md -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/docs/README-wince.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/docs/README-wince.md -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/docs/README-winrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/docs/README-winrt.md -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/docs/README.md -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/docs/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/docs/doxyfile -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_assert.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_atomic.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_audio.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_bits.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_config.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_egl.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_endian.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_error.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_events.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_haptic.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_hints.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_loadso.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_log.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_main.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_mouse.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_mutex.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_name.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_opengl.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_pixels.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_power.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_quit.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_rect.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_render.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_rwops.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_shape.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_stdinc.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_system.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_syswm.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_test.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_thread.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_timer.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_touch.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_types.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_video.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/SDL_vulkan.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/begin_code.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/include/close_code.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/lib/x64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/lib/x64/SDL2.dll -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/lib/x64/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/lib/x64/SDL2.lib -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/lib/x64/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/lib/x64/SDL2main.lib -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/lib/x64/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/lib/x64/SDL2test.lib -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/lib/x86/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/lib/x86/SDL2.dll -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/lib/x86/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/lib/x86/SDL2.lib -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/lib/x86/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/lib/x86/SDL2main.lib -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/SDL2-2.0.7/lib/x86/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/SDL2-2.0.7/lib/x86/SDL2test.lib -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/assimp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/assimp.dll -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/include/assimp/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/include/assimp/Bitmap.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/include/assimp/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/include/assimp/Defines.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/include/assimp/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/include/assimp/Hash.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/include/assimp/LogAux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/include/assimp/LogAux.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/include/assimp/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/include/assimp/Macros.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/include/assimp/Vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/include/assimp/Vertex.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/include/assimp/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/include/assimp/anim.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/include/assimp/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/include/assimp/camera.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/include/assimp/cexport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/include/assimp/cexport.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/include/assimp/cfileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/include/assimp/cfileio.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/include/assimp/cimport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/include/assimp/cimport.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/include/assimp/color4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/include/assimp/color4.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/include/assimp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/include/assimp/config.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/include/assimp/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/include/assimp/defs.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/include/assimp/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/include/assimp/light.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/include/assimp/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/include/assimp/mesh.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/include/assimp/qnan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/include/assimp/qnan.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/include/assimp/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/include/assimp/scene.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/include/assimp/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/include/assimp/texture.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/include/assimp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/include/assimp/types.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/include/assimp/vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/include/assimp/vector2.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/include/assimp/vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/include/assimp/vector3.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/include/assimp/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/include/assimp/version.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/lib64/IrrXML.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/lib64/IrrXML.lib -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/lib64/assimp.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/lib64/assimp.exp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/lib64/assimp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/lib64/assimp.lib -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/lib64/zlib.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/lib64/zlib.exp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/lib64/zlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/lib64/zlib.lib -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/lib64/zlibstatic.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/lib64/zlibstatic.lib -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp/zlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp/zlib.dll -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp_3_1_1/assimp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp_3_1_1/assimp.dll -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp_3_1_1/lib64/assimp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp_3_1_1/lib64/assimp.lib -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/assimp_3_1_1/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/assimp_3_1_1/zlib1.dll -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/.gitignore: -------------------------------------------------------------------------------- 1 | ![Dd]ebug -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/assert.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/blank.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/blank.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/config.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/core/ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/core/ref.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/and.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/arg.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/at.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/back.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/base.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/bind.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/bool.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/char.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/char.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/copy.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/end.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/find.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/fold.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/if.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/int.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/less.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/list.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/long.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/long.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/map.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/max.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/min.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/next.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/next.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/not.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/not.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/or.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/pair.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/plus.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/set.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/size.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/sort.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/tag.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/mpl/void.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/boost_1_57_0/boost/ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/boost_1_57_0/boost/ref.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/clReflect-0.4/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/clReflect-0.4/AUTHORS -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/clReflect-0.4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/clReflect-0.4/LICENSE -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/clReflect-0.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/clReflect-0.4/README.md -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/clReflect-0.4/inc/clcpp/clcpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/clReflect-0.4/inc/clcpp/clcpp.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/freetype-2.6.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/freetype-2.6.1/README -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/gl/glcorearb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/gl/glcorearb.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/gl/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/gl/glext.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/gl/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/gl/glxext.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/gl/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/gl/wglext.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/glew-1.13.0/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/glew-1.13.0/include/GL/glew.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/glew-1.13.0/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/glew-1.13.0/include/GL/glxew.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/glew-1.13.0/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/glew-1.13.0/include/GL/wglew.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/glew-1.13.0/lib/glew32.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/glew-1.13.0/lib/glew32.exp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/glew-1.13.0/lib/glew32d.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/glew-1.13.0/lib/glew32d.exp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/glew-1.13.0/lib/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/glew-1.13.0/lib/glew32s.lib -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/glew-1.13.0/lib/glew32sd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/glew-1.13.0/lib/glew32sd.lib -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luafilesystem/.gitignore: -------------------------------------------------------------------------------- 1 | !src/ -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luafilesystem/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luafilesystem/LICENSE -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luafilesystem/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luafilesystem/README -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luafilesystem/doc/us/doc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luafilesystem/doc/us/doc.css -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luafilesystem/doc/us/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luafilesystem/doc/us/index.html -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luafilesystem/lib/vc6/lfs.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luafilesystem/lib/vc6/lfs.exp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luafilesystem/lib/vc6/lfs.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luafilesystem/lib/vc6/lfs.lib -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luafilesystem/src/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.so 3 | -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luafilesystem/src/lfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luafilesystem/src/lfs.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luafilesystem/src/lfs.def: -------------------------------------------------------------------------------- 1 | LIBRARY lfs.dll 2 | VERSION 1.6 3 | EXPORTS 4 | luaopen_lfs 5 | -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luafilesystem/src/lfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luafilesystem/src/lfs.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luafilesystem/tests/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luafilesystem/tests/test.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luafilesystem/vc6/lfs.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luafilesystem/vc6/lfs.def -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/COPYRIGHT -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/Makefile -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/README -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/dynasm/dasm_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/dynasm/dasm_arm.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/dynasm/dasm_arm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/dynasm/dasm_arm.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/dynasm/dasm_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/dynasm/dasm_mips.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/dynasm/dasm_mips.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/dynasm/dasm_mips.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/dynasm/dasm_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/dynasm/dasm_ppc.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/dynasm/dasm_ppc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/dynasm/dasm_ppc.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/dynasm/dasm_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/dynasm/dasm_proto.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/dynasm/dasm_x64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/dynasm/dasm_x64.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/dynasm/dasm_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/dynasm/dasm_x86.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/dynasm/dynasm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/dynasm/dynasm.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/etc/luajit.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/etc/luajit.1 -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/etc/luajit.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/etc/luajit.pc -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/Makefile -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/Makefile.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/Makefile.dep -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/host/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/host/README -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/jit/bc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/jit/bc.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/jit/dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/jit/dump.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/jit/v.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/jit/v.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/jit/vmdef.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/jit/vmdef.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lauxlib.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lib_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lib_aux.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lib_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lib_base.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lib_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lib_bit.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lib_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lib_debug.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lib_ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lib_ffi.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lib_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lib_init.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lib_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lib_io.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lib_jit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lib_jit.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lib_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lib_math.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lib_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lib_os.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lib_package.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lib_package.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lib_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lib_string.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lib_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lib_table.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj.supp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_alloc.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_alloc.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_api.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_arch.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_asm.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_asm.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_asm_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_asm_arm.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_asm_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_asm_mips.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_asm_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_asm_ppc.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_asm_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_asm_x86.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_bc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_bc.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_bc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_bc.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_bcdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_bcdef.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_bcdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_bcdump.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_bcread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_bcread.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_bcwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_bcwrite.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_carith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_carith.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_carith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_carith.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_ccall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_ccall.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_ccall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_ccall.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_cconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_cconv.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_cconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_cconv.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_cdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_cdata.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_cdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_cdata.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_char.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_char.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_clib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_clib.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_clib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_clib.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_cparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_cparse.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_cparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_cparse.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_crecord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_crecord.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_crecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_crecord.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_ctype.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_ctype.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_debug.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_debug.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_def.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_dispatch.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_dispatch.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_emit_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_emit_arm.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_emit_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_emit_ppc.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_emit_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_emit_x86.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_err.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_err.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_errmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_errmsg.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_ff.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_ffdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_ffdef.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_ffrecord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_ffrecord.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_ffrecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_ffrecord.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_folddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_folddef.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_frame.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_func.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_func.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_gc.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_gc.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_gdbjit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_gdbjit.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_gdbjit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_gdbjit.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_ir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_ir.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_ir.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_ircall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_ircall.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_iropt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_iropt.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_jit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_jit.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_lex.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_lex.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_lib.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_lib.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_libdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_libdef.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_load.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_mcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_mcode.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_mcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_mcode.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_meta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_meta.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_meta.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_obj.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_obj.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_opt_dce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_opt_dce.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_opt_fold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_opt_fold.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_opt_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_opt_loop.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_opt_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_opt_mem.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_opt_sink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_opt_sink.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_parse.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_parse.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_recdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_recdef.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_record.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_record.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_snap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_snap.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_snap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_snap.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_state.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_state.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_str.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_str.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_strscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_strscan.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_strscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_strscan.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_tab.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_tab.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_target.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_trace.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_trace.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_traceerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_traceerr.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_udata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_udata.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_udata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_udata.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_vm.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_vmevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_vmevent.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_vmevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_vmevent.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lj_vmmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lj_vmmath.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/ljamalg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/ljamalg.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lua.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lua.hpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lua51.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lua51.exp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lua51.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lua51.lib -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/luaconf.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/luajit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/luajit.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/luajit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/luajit.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/lualib.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/msvcbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/msvcbuild.bat -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/ps4build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/ps4build.bat -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/vm_arm.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/vm_arm.dasc -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/vm_mips.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/vm_mips.dasc -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/vm_ppc.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/vm_ppc.dasc -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/vm_x86.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/vm_x86.dasc -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luajit-2.0/src/xedkbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luajit-2.0/src/xedkbuild.bat -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luasocket-3.0-rc1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/luasocket-3.0-rc1/.gitignore -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/luasocket-3.0-rc1/luasocket/test/auth/.htpasswd: -------------------------------------------------------------------------------- 1 | luasocket:$apr1$47u2O.Me$.m/5BWAtt7GVoxsouIPBR1 2 | -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/nanovg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/nanovg/.gitignore -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/nanovg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/nanovg/README.md -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/nanovg/src/fontstash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/nanovg/src/fontstash.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/nanovg/src/nanovg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/nanovg/src/nanovg.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/nanovg/src/nanovg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/nanovg/src/nanovg.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/nanovg/src/nanovg_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/nanovg/src/nanovg_gl.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/nanovg/src/nanovg_gl_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/nanovg/src/nanovg_gl_utils.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/nanovg/src/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/nanovg/src/stb_image.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/nanovg/src/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/nanovg/src/stb_truetype.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/rings/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/rings/README -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/rings/lib/vc6/rings.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/rings/lib/vc6/rings.exp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/rings/lib/vc6/rings.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/rings/lib/vc6/rings.lib -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/rings/src/rings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/rings/src/rings.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/rings/src/rings.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/rings/src/rings.def -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/rings/src/stable.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/rings/src/stable.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/rings/vc6/rings.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/rings/vc6/rings.def -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/rings/vc6/rings.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/rings/vc6/rings.dll -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/rings/vc6/rings.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/rings/vc6/rings.dsw -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/rings/vc6/rings.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/rings/vc6/rings.sln -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/rings/vc6/rings_dll.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/rings/vc6/rings_dll.dsp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/rings/vc6/rings_dll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/rings/vc6/rings_dll.vcxproj -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/field_128_cube.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/field_128_cube.dds -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/img_cheryl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/img_cheryl.jpg -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/img_test.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/img_test.bmp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/img_test.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/img_test.dds -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/img_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/img_test.png -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/img_test.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/img_test.tga -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/img_test_indexed.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/img_test_indexed.tga -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/include/SOIL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/include/SOIL.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/lib/SOIL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/lib/SOIL.lib -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/lib/SOIL_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/lib/SOIL_d.lib -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/projects/VC12/SOIL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/projects/VC12/SOIL.sln -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/projects/VC9/SOIL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/projects/VC9/SOIL.sln -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/soil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/soil.html -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/src/SOIL.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/src/SOIL.cc -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/src/SOIL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/src/SOIL.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/src/image_DXT.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/src/image_DXT.cc -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/src/image_DXT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/src/image_DXT.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/src/image_helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/src/image_helper.cc -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/src/image_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/src/image_helper.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/src/stb_image_aug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/src/stb_image_aug.cc -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/src/stb_image_aug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/src/stb_image_aug.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/src/stbi_DDS_aug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/src/stbi_DDS_aug.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/src/stbi_DDS_aug_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/src/stbi_DDS_aug_c.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/src/test_SOIL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/src/test_SOIL.cpp -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/testSOIL.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/testSOIL.exe -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/soil/test_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/soil/test_rect.png -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/sqlite-3081002/.gitignore: -------------------------------------------------------------------------------- 1 | !compile.txt -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/sqlite-3081002/compile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/sqlite-3081002/compile.txt -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/sqlite-3081002/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/sqlite-3081002/shell.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/sqlite-3081002/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/sqlite-3081002/sqlite3.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/sqlite-3081002/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/sqlite-3081002/sqlite3.dll -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/sqlite-3081002/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/sqlite-3081002/sqlite3.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/sqlite-3081002/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/sqlite-3081002/sqlite3ext.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/wsapi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/wsapi/README -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/wsapi/samples/hello.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/wsapi/samples/hello.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/wsapi/src/fastcgi/lfcgi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/wsapi/src/fastcgi/lfcgi.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/wsapi/src/fastcgi/lfcgi.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/wsapi/src/fastcgi/lfcgi.def -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/wsapi/src/fastcgi/lfcgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/wsapi/src/fastcgi/lfcgi.h -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/wsapi/src/launcher/wsapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/wsapi/src/launcher/wsapi -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/wsapi/src/launcher/wsapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/wsapi/src/launcher/wsapi.c -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/wsapi/src/launcher/wsapi.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/wsapi/src/launcher/wsapi.cgi -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/wsapi/src/wsapi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/wsapi/src/wsapi.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/wsapi/src/wsapi/cgi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/wsapi/src/wsapi/cgi.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/wsapi/src/wsapi/common.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/wsapi/src/wsapi/common.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/wsapi/src/wsapi/fastcgi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/wsapi/src/wsapi/fastcgi.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/wsapi/src/wsapi/mock.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/wsapi/src/wsapi/mock.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/wsapi/src/wsapi/request.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/wsapi/src/wsapi/request.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/wsapi/src/wsapi/response.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/wsapi/src/wsapi/response.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/wsapi/src/wsapi/ringer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/wsapi/src/wsapi/ringer.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/wsapi/src/wsapi/sapi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/wsapi/src/wsapi/sapi.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/wsapi/src/wsapi/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/wsapi/src/wsapi/util.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/wsapi/src/wsapi/xavante.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/wsapi/src/wsapi/xavante.lua -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/wsapi/wsapi-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/wsapi/wsapi-install -------------------------------------------------------------------------------- /project-griffin/project-griffin/vendor/wsapi/wsapi-install-1.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/vendor/wsapi/wsapi-install-1.6 -------------------------------------------------------------------------------- /project-griffin/project-griffin/zlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y2kiah/project-griffin/HEAD/project-griffin/project-griffin/zlib.dll --------------------------------------------------------------------------------