├── .gitignore ├── Doc ├── Command line.txt ├── Keyboard shortcuts.txt └── Screenshot.jpg ├── LICENSE.txt ├── README.md ├── Source ├── .editorconfig ├── AssimpUtils.cpp ├── AssimpUtils.hpp ├── BaseUtils.cpp ├── BaseUtils.hpp ├── Cameras.cpp ├── Cameras.hpp ├── CommandList.cpp ├── CommandList.hpp ├── ConstantBuffers.cpp ├── ConstantBuffers.hpp ├── Descriptors.cpp ├── Descriptors.hpp ├── Formatters.inl ├── Game.cpp ├── Game.hpp ├── ImGuiUtils.cpp ├── ImGuiUtils.hpp ├── Main.cpp ├── Main.hpp ├── Mesh.cpp ├── Mesh.hpp ├── MultiFrameRingBuffer.hpp ├── RegEngine.sln ├── RegEngine.vcxproj ├── RegEngine.vcxproj.filters ├── RegEngine.vcxproj.user ├── Renderer.cpp ├── Renderer.hpp ├── RenderingResource.cpp ├── RenderingResource.hpp ├── Settings.cpp ├── Settings.hpp ├── Shaders.cpp ├── Shaders.hpp ├── SmallFileCache.cpp ├── SmallFileCache.hpp ├── Streams.cpp ├── Streams.hpp ├── Texture.cpp ├── Texture.hpp ├── Time.cpp ├── Time.hpp ├── packages.config └── packages │ ├── AssimpCpp.5.0.1.6 │ ├── .signature.p7s │ ├── AssimpCpp.5.0.1.6.nupkg │ └── build │ │ └── native │ │ ├── AssimpCpp.defs.xml │ │ ├── AssimpCpp.targets │ │ ├── LICENSE.txt │ │ ├── Readme.md │ │ ├── bin │ │ ├── Debug │ │ │ └── assimp-vc142-mtd.dll │ │ ├── MinSizeRel │ │ │ └── assimp-vc142-mt.dll │ │ └── Release │ │ │ └── assimp-vc142-mt.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 │ │ │ ├── ZipArchiveIOSystem.h │ │ │ ├── aabb.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 │ │ │ ├── pbrmaterial.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 │ │ └── lib │ │ ├── Debug │ │ ├── IrrXMLd.lib │ │ ├── assimp-vc142-mtd.exp │ │ └── assimp-vc142-mtd.lib │ │ ├── MinSizeRel │ │ ├── IrrXML.lib │ │ ├── assimp-vc142-mt.exp │ │ └── assimp-vc142-mt.lib │ │ └── Release │ │ ├── IrrXML.lib │ │ ├── assimp-vc142-mt.exp │ │ └── assimp-vc142-mt.lib │ ├── WinPixEventRuntime.1.0.210818001 │ ├── .signature.p7s │ ├── Include │ │ └── WinPixEventRuntime │ │ │ ├── PIXEvents.h │ │ │ ├── PIXEventsCommon.h │ │ │ ├── pix3.h │ │ │ └── pix3_win.h │ ├── ThirdPartyNotices.txt │ ├── WinPixEventRuntime.1.0.210818001.nupkg │ ├── WinPixEventRuntimeIcon.png │ ├── bin │ │ ├── ARM64 │ │ │ ├── WinPixEventRuntime.dll │ │ │ ├── WinPixEventRuntime.lib │ │ │ ├── WinPixEventRuntime_UAP.dll │ │ │ └── WinPixEventRuntime_UAP.lib │ │ └── x64 │ │ │ ├── WinPixEventRuntime.dll │ │ │ ├── WinPixEventRuntime.lib │ │ │ ├── WinPixEventRuntime_UAP.dll │ │ │ └── WinPixEventRuntime_UAP.lib │ ├── build │ │ └── WinPixEventRuntime.targets │ └── license.txt │ └── directxtex_desktop_win10.2021.11.8.1 │ ├── .signature.p7s │ ├── build │ └── native │ │ └── directxtex_desktop_win10.targets │ ├── directxtex_desktop_win10.2021.11.8.1.nupkg │ ├── docs │ ├── HISTORY.md │ ├── README.md │ └── SECURITY.md │ ├── images │ └── icon.jpg │ ├── include │ ├── DirectXTex.h │ └── DirectXTex.inl │ └── native │ └── lib │ └── x64 │ ├── Debug │ ├── DirectXTex.lib │ └── DirectXTex.pdb │ └── Release │ ├── DirectXTex.lib │ └── DirectXTex.pdb ├── ThirdParty ├── D3D12MemoryAllocator │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── NOTICES.txt │ ├── README.md │ ├── include │ │ └── D3D12MemAlloc.h │ └── src │ │ └── D3D12MemAlloc.cpp ├── IconFontCppHeaders │ ├── IconsFontAwesome6.h │ ├── README.md │ └── licence.txt ├── d3dx12 │ └── d3dx12.h ├── dxc_2021_12_08 │ ├── bin │ │ └── x64 │ │ │ ├── dxc.exe │ │ │ ├── dxcompiler.dll │ │ │ └── dxil.dll │ ├── inc │ │ ├── d3d12shader.h │ │ └── dxcapi.h │ └── lib │ │ └── x64 │ │ └── dxcompiler.lib ├── glm │ ├── .appveyor.yml │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── cmake │ │ └── glm │ │ │ ├── glmConfig-version.cmake │ │ │ └── glmConfig.cmake │ ├── copying.txt │ ├── doc │ │ ├── api │ │ │ ├── a00001_source.html │ │ │ ├── a00002_source.html │ │ │ ├── a00003_source.html │ │ │ ├── a00004_source.html │ │ │ ├── a00005_source.html │ │ │ ├── a00006_source.html │ │ │ ├── a00007.html │ │ │ ├── a00007_source.html │ │ │ ├── a00008.html │ │ │ ├── a00008_source.html │ │ │ ├── a00009.html │ │ │ ├── a00009_source.html │ │ │ ├── a00010.html │ │ │ ├── a00010_source.html │ │ │ ├── a00011.html │ │ │ ├── a00011_source.html │ │ │ ├── a00012.html │ │ │ ├── a00012_source.html │ │ │ ├── a00013.html │ │ │ ├── a00013_source.html │ │ │ ├── a00014.html │ │ │ ├── a00014_source.html │ │ │ ├── a00015.html │ │ │ ├── a00015_source.html │ │ │ ├── a00016.html │ │ │ ├── a00016_source.html │ │ │ ├── a00017.html │ │ │ ├── a00017_source.html │ │ │ ├── a00018.html │ │ │ ├── a00018_source.html │ │ │ ├── a00019_source.html │ │ │ ├── a00020_source.html │ │ │ ├── a00021.html │ │ │ ├── a00021_source.html │ │ │ ├── a00022.html │ │ │ ├── a00022_source.html │ │ │ ├── a00023.html │ │ │ ├── a00023_source.html │ │ │ ├── a00024.html │ │ │ ├── a00024_source.html │ │ │ ├── a00025.html │ │ │ ├── a00025_source.html │ │ │ ├── a00026.html │ │ │ ├── a00026_source.html │ │ │ ├── a00027.html │ │ │ ├── a00027_source.html │ │ │ ├── a00028.html │ │ │ ├── a00028_source.html │ │ │ ├── a00029.html │ │ │ ├── a00029_source.html │ │ │ ├── a00030.html │ │ │ ├── a00030_source.html │ │ │ ├── a00031.html │ │ │ ├── a00031_source.html │ │ │ ├── a00032.html │ │ │ ├── a00032_source.html │ │ │ ├── a00033.html │ │ │ ├── a00033_source.html │ │ │ ├── a00034.html │ │ │ ├── a00034_source.html │ │ │ ├── a00035_source.html │ │ │ ├── a00036.html │ │ │ ├── a00036_source.html │ │ │ ├── a00037.html │ │ │ ├── a00037_source.html │ │ │ ├── a00038.html │ │ │ ├── a00038_source.html │ │ │ ├── a00039.html │ │ │ ├── a00039_source.html │ │ │ ├── a00040.html │ │ │ ├── a00040_source.html │ │ │ ├── a00041.html │ │ │ ├── a00041_source.html │ │ │ ├── a00042.html │ │ │ ├── a00042_source.html │ │ │ ├── a00043.html │ │ │ ├── a00043_source.html │ │ │ ├── a00044.html │ │ │ ├── a00044_source.html │ │ │ ├── a00045.html │ │ │ ├── a00045_source.html │ │ │ ├── a00046.html │ │ │ ├── a00046_source.html │ │ │ ├── a00047_source.html │ │ │ ├── a00048.html │ │ │ ├── a00048_source.html │ │ │ ├── a00049.html │ │ │ ├── a00049_source.html │ │ │ ├── a00050.html │ │ │ ├── a00050_source.html │ │ │ ├── a00051.html │ │ │ ├── a00051_source.html │ │ │ ├── a00052.html │ │ │ ├── a00052_source.html │ │ │ ├── a00053.html │ │ │ ├── a00053_source.html │ │ │ ├── a00054.html │ │ │ ├── a00054_source.html │ │ │ ├── a00055.html │ │ │ ├── a00055_source.html │ │ │ ├── a00056.html │ │ │ ├── a00056_source.html │ │ │ ├── a00057.html │ │ │ ├── a00057_source.html │ │ │ ├── a00058.html │ │ │ ├── a00058_source.html │ │ │ ├── a00059.html │ │ │ ├── a00059_source.html │ │ │ ├── a00060.html │ │ │ ├── a00060_source.html │ │ │ ├── a00061.html │ │ │ ├── a00061_source.html │ │ │ ├── a00062.html │ │ │ ├── a00062_source.html │ │ │ ├── a00063.html │ │ │ ├── a00063_source.html │ │ │ ├── a00064.html │ │ │ ├── a00064_source.html │ │ │ ├── a00065.html │ │ │ ├── a00065_source.html │ │ │ ├── a00066.html │ │ │ ├── a00066_source.html │ │ │ ├── a00067.html │ │ │ ├── a00067_source.html │ │ │ ├── a00068.html │ │ │ ├── a00068_source.html │ │ │ ├── a00069.html │ │ │ ├── a00069_source.html │ │ │ ├── a00070.html │ │ │ ├── a00070_source.html │ │ │ ├── a00071.html │ │ │ ├── a00071_source.html │ │ │ ├── a00072.html │ │ │ ├── a00072_source.html │ │ │ ├── a00073.html │ │ │ ├── a00073_source.html │ │ │ ├── a00074.html │ │ │ ├── a00074_source.html │ │ │ ├── a00075.html │ │ │ ├── a00075_source.html │ │ │ ├── a00076.html │ │ │ ├── a00076_source.html │ │ │ ├── a00077.html │ │ │ ├── a00077_source.html │ │ │ ├── a00078.html │ │ │ ├── a00078_source.html │ │ │ ├── a00079.html │ │ │ ├── a00079_source.html │ │ │ ├── a00080.html │ │ │ ├── a00080_source.html │ │ │ ├── a00081.html │ │ │ ├── a00081_source.html │ │ │ ├── a00082.html │ │ │ ├── a00082_source.html │ │ │ ├── a00083.html │ │ │ ├── a00083_source.html │ │ │ ├── a00084.html │ │ │ ├── a00084_source.html │ │ │ ├── a00085.html │ │ │ ├── a00085_source.html │ │ │ ├── a00086.html │ │ │ ├── a00086_source.html │ │ │ ├── a00087.html │ │ │ ├── a00087_source.html │ │ │ ├── a00088.html │ │ │ ├── a00088_source.html │ │ │ ├── a00089.html │ │ │ ├── a00089_source.html │ │ │ ├── a00090.html │ │ │ ├── a00090_source.html │ │ │ ├── a00091.html │ │ │ ├── a00091_source.html │ │ │ ├── a00092.html │ │ │ ├── a00092_source.html │ │ │ ├── a00093.html │ │ │ ├── a00093_source.html │ │ │ ├── a00094.html │ │ │ ├── a00094_source.html │ │ │ ├── a00095_source.html │ │ │ ├── a00096.html │ │ │ ├── a00096_source.html │ │ │ ├── a00097.html │ │ │ ├── a00097_source.html │ │ │ ├── a00098.html │ │ │ ├── a00098_source.html │ │ │ ├── a00099.html │ │ │ ├── a00099_source.html │ │ │ ├── a00100.html │ │ │ ├── a00100_source.html │ │ │ ├── a00101.html │ │ │ ├── a00101_source.html │ │ │ ├── a00102.html │ │ │ ├── a00102_source.html │ │ │ ├── a00103.html │ │ │ ├── a00103_source.html │ │ │ ├── a00104.html │ │ │ ├── a00104_source.html │ │ │ ├── a00105.html │ │ │ ├── a00105_source.html │ │ │ ├── a00106.html │ │ │ ├── a00106_source.html │ │ │ ├── a00107.html │ │ │ ├── a00107_source.html │ │ │ ├── a00108.html │ │ │ ├── a00108_source.html │ │ │ ├── a00109.html │ │ │ ├── a00109_source.html │ │ │ ├── a00110.html │ │ │ ├── a00110_source.html │ │ │ ├── a00111.html │ │ │ ├── a00111_source.html │ │ │ ├── a00112.html │ │ │ ├── a00112_source.html │ │ │ ├── a00113.html │ │ │ ├── a00113_source.html │ │ │ ├── a00114.html │ │ │ ├── a00114_source.html │ │ │ ├── a00115.html │ │ │ ├── a00115_source.html │ │ │ ├── a00116.html │ │ │ ├── a00116_source.html │ │ │ ├── a00117.html │ │ │ ├── a00117_source.html │ │ │ ├── a00118.html │ │ │ ├── a00118_source.html │ │ │ ├── a00119.html │ │ │ ├── a00119_source.html │ │ │ ├── a00120.html │ │ │ ├── a00120_source.html │ │ │ ├── a00121.html │ │ │ ├── a00121_source.html │ │ │ ├── a00122.html │ │ │ ├── a00122_source.html │ │ │ ├── a00123.html │ │ │ ├── a00123_source.html │ │ │ ├── a00124_source.html │ │ │ ├── a00125.html │ │ │ ├── a00125_source.html │ │ │ ├── a00126.html │ │ │ ├── a00126_source.html │ │ │ ├── a00127.html │ │ │ ├── a00127_source.html │ │ │ ├── a00128.html │ │ │ ├── a00128_source.html │ │ │ ├── a00129.html │ │ │ ├── a00129_source.html │ │ │ ├── a00130.html │ │ │ ├── a00130_source.html │ │ │ ├── a00131.html │ │ │ ├── a00131_source.html │ │ │ ├── a00132.html │ │ │ ├── a00132_source.html │ │ │ ├── a00133.html │ │ │ ├── a00133_source.html │ │ │ ├── a00134.html │ │ │ ├── a00134_source.html │ │ │ ├── a00135.html │ │ │ ├── a00135_source.html │ │ │ ├── a00136.html │ │ │ ├── a00136_source.html │ │ │ ├── a00137.html │ │ │ ├── a00137_source.html │ │ │ ├── a00138.html │ │ │ ├── a00138_source.html │ │ │ ├── a00139.html │ │ │ ├── a00139_source.html │ │ │ ├── a00140.html │ │ │ ├── a00140_source.html │ │ │ ├── a00141.html │ │ │ ├── a00141_source.html │ │ │ ├── a00142.html │ │ │ ├── a00142_source.html │ │ │ ├── a00143.html │ │ │ ├── a00143_source.html │ │ │ ├── a00144.html │ │ │ ├── a00144_source.html │ │ │ ├── a00145.html │ │ │ ├── a00145_source.html │ │ │ ├── a00146.html │ │ │ ├── a00146_source.html │ │ │ ├── a00147.html │ │ │ ├── a00147_source.html │ │ │ ├── a00148.html │ │ │ ├── a00148_source.html │ │ │ ├── a00149.html │ │ │ ├── a00149_source.html │ │ │ ├── a00150.html │ │ │ ├── a00150_source.html │ │ │ ├── a00151.html │ │ │ ├── a00151_source.html │ │ │ ├── a00152.html │ │ │ ├── a00152_source.html │ │ │ ├── a00153_source.html │ │ │ ├── a00154.html │ │ │ ├── a00154_source.html │ │ │ ├── a00155.html │ │ │ ├── a00155_source.html │ │ │ ├── a00156.html │ │ │ ├── a00156_source.html │ │ │ ├── a00157.html │ │ │ ├── a00157_source.html │ │ │ ├── a00158.html │ │ │ ├── a00158_source.html │ │ │ ├── a00159.html │ │ │ ├── a00159_source.html │ │ │ ├── a00160.html │ │ │ ├── a00160_source.html │ │ │ ├── a00161.html │ │ │ ├── a00161_source.html │ │ │ ├── a00162.html │ │ │ ├── a00162_source.html │ │ │ ├── a00163_source.html │ │ │ ├── a00164_source.html │ │ │ ├── a00165.html │ │ │ ├── a00165_source.html │ │ │ ├── a00166.html │ │ │ ├── a00166_source.html │ │ │ ├── a00167.html │ │ │ ├── a00167_source.html │ │ │ ├── a00168.html │ │ │ ├── a00168_source.html │ │ │ ├── a00169.html │ │ │ ├── a00169_source.html │ │ │ ├── a00170.html │ │ │ ├── a00170_source.html │ │ │ ├── a00171.html │ │ │ ├── a00171_source.html │ │ │ ├── a00172.html │ │ │ ├── a00172_source.html │ │ │ ├── a00173.html │ │ │ ├── a00173_source.html │ │ │ ├── a00174.html │ │ │ ├── a00174_source.html │ │ │ ├── a00175.html │ │ │ ├── a00175_source.html │ │ │ ├── a00176.html │ │ │ ├── a00176_source.html │ │ │ ├── a00177.html │ │ │ ├── a00177_source.html │ │ │ ├── a00178.html │ │ │ ├── a00178_source.html │ │ │ ├── a00179.html │ │ │ ├── a00179_source.html │ │ │ ├── a00180.html │ │ │ ├── a00180_source.html │ │ │ ├── a00181.html │ │ │ ├── a00181_source.html │ │ │ ├── a00182.html │ │ │ ├── a00182_source.html │ │ │ ├── a00183.html │ │ │ ├── a00183_source.html │ │ │ ├── a00184.html │ │ │ ├── a00184_source.html │ │ │ ├── a00185.html │ │ │ ├── a00185_source.html │ │ │ ├── a00186.html │ │ │ ├── a00186_source.html │ │ │ ├── a00187.html │ │ │ ├── a00187_source.html │ │ │ ├── a00188.html │ │ │ ├── a00188_source.html │ │ │ ├── a00189.html │ │ │ ├── a00189_source.html │ │ │ ├── a00190.html │ │ │ ├── a00190_source.html │ │ │ ├── a00191.html │ │ │ ├── a00191_source.html │ │ │ ├── a00192.html │ │ │ ├── a00192_source.html │ │ │ ├── a00193.html │ │ │ ├── a00193_source.html │ │ │ ├── a00194.html │ │ │ ├── a00194_source.html │ │ │ ├── a00195.html │ │ │ ├── a00195_source.html │ │ │ ├── a00196.html │ │ │ ├── a00196_source.html │ │ │ ├── a00197.html │ │ │ ├── a00197_source.html │ │ │ ├── a00198.html │ │ │ ├── a00198_source.html │ │ │ ├── a00199.html │ │ │ ├── a00199_source.html │ │ │ ├── a00200.html │ │ │ ├── a00200_source.html │ │ │ ├── a00201.html │ │ │ ├── a00201_source.html │ │ │ ├── a00202.html │ │ │ ├── a00202_source.html │ │ │ ├── a00203.html │ │ │ ├── a00203_source.html │ │ │ ├── a00204.html │ │ │ ├── a00204_source.html │ │ │ ├── a00205.html │ │ │ ├── a00205_source.html │ │ │ ├── a00206.html │ │ │ ├── a00206_source.html │ │ │ ├── a00207.html │ │ │ ├── a00207_source.html │ │ │ ├── a00208.html │ │ │ ├── a00208_source.html │ │ │ ├── a00209.html │ │ │ ├── a00209_source.html │ │ │ ├── a00210.html │ │ │ ├── a00210_source.html │ │ │ ├── a00211.html │ │ │ ├── a00211_source.html │ │ │ ├── a00212.html │ │ │ ├── a00212_source.html │ │ │ ├── a00213.html │ │ │ ├── a00213_source.html │ │ │ ├── a00214.html │ │ │ ├── a00214_source.html │ │ │ ├── a00215.html │ │ │ ├── a00215_source.html │ │ │ ├── a00216.html │ │ │ ├── a00216_source.html │ │ │ ├── a00217.html │ │ │ ├── a00217_source.html │ │ │ ├── a00218.html │ │ │ ├── a00218_source.html │ │ │ ├── a00219.html │ │ │ ├── a00219_source.html │ │ │ ├── a00220.html │ │ │ ├── a00220_source.html │ │ │ ├── a00221.html │ │ │ ├── a00221_source.html │ │ │ ├── a00222.html │ │ │ ├── a00222_source.html │ │ │ ├── a00223.html │ │ │ ├── a00223_source.html │ │ │ ├── a00224.html │ │ │ ├── a00224_source.html │ │ │ ├── a00225.html │ │ │ ├── a00225_source.html │ │ │ ├── a00226.html │ │ │ ├── a00226_source.html │ │ │ ├── a00227.html │ │ │ ├── a00227_source.html │ │ │ ├── a00228.html │ │ │ ├── a00228_source.html │ │ │ ├── a00229.html │ │ │ ├── a00229_source.html │ │ │ ├── a00230.html │ │ │ ├── a00230_source.html │ │ │ ├── a00231.html │ │ │ ├── a00231_source.html │ │ │ ├── a00232.html │ │ │ ├── a00232_source.html │ │ │ ├── a00233.html │ │ │ ├── a00233_source.html │ │ │ ├── a00234.html │ │ │ ├── a00234_source.html │ │ │ ├── a00235.html │ │ │ ├── a00235_source.html │ │ │ ├── a00241.html │ │ │ ├── a00242.html │ │ │ ├── a00243.html │ │ │ ├── a00244.html │ │ │ ├── a00245.html │ │ │ ├── a00246.html │ │ │ ├── a00247.html │ │ │ ├── a00248.html │ │ │ ├── a00249.html │ │ │ ├── a00250.html │ │ │ ├── a00251.html │ │ │ ├── a00252.html │ │ │ ├── a00253.html │ │ │ ├── a00254.html │ │ │ ├── a00255.html │ │ │ ├── a00256.html │ │ │ ├── a00257.html │ │ │ ├── a00258.html │ │ │ ├── a00259.html │ │ │ ├── a00260.html │ │ │ ├── a00261.html │ │ │ ├── a00262.html │ │ │ ├── a00263.html │ │ │ ├── a00264.html │ │ │ ├── a00265.html │ │ │ ├── a00266.html │ │ │ ├── a00267.html │ │ │ ├── a00268.html │ │ │ ├── a00269.html │ │ │ ├── a00270.html │ │ │ ├── a00271.html │ │ │ ├── a00272.html │ │ │ ├── a00273.html │ │ │ ├── a00274.html │ │ │ ├── a00275.html │ │ │ ├── a00276.html │ │ │ ├── a00277.html │ │ │ ├── a00278.html │ │ │ ├── a00279.html │ │ │ ├── a00280.html │ │ │ ├── a00281.html │ │ │ ├── a00282.html │ │ │ ├── a00283.html │ │ │ ├── a00284.html │ │ │ ├── a00285.html │ │ │ ├── a00286.html │ │ │ ├── a00287.html │ │ │ ├── a00288.html │ │ │ ├── a00289.html │ │ │ ├── a00290.html │ │ │ ├── a00291.html │ │ │ ├── a00292.html │ │ │ ├── a00293.html │ │ │ ├── a00294.html │ │ │ ├── a00295.html │ │ │ ├── a00296.html │ │ │ ├── a00297.html │ │ │ ├── a00298.html │ │ │ ├── a00299.html │ │ │ ├── a00300.html │ │ │ ├── a00301.html │ │ │ ├── a00302.html │ │ │ ├── a00303.html │ │ │ ├── a00304.html │ │ │ ├── a00305.html │ │ │ ├── a00306.html │ │ │ ├── a00307.html │ │ │ ├── a00308.html │ │ │ ├── a00309.html │ │ │ ├── a00310.html │ │ │ ├── a00311.html │ │ │ ├── a00312.html │ │ │ ├── a00313.html │ │ │ ├── a00314.html │ │ │ ├── a00315.html │ │ │ ├── a00316.html │ │ │ ├── a00317.html │ │ │ ├── a00318.html │ │ │ ├── a00319.html │ │ │ ├── a00320.html │ │ │ ├── a00321.html │ │ │ ├── a00322.html │ │ │ ├── a00323.html │ │ │ ├── a00324.html │ │ │ ├── a00325.html │ │ │ ├── a00326.html │ │ │ ├── a00327.html │ │ │ ├── a00328.html │ │ │ ├── a00329.html │ │ │ ├── a00330.html │ │ │ ├── a00331.html │ │ │ ├── a00332.html │ │ │ ├── a00333.html │ │ │ ├── a00334.html │ │ │ ├── a00335.html │ │ │ ├── a00336.html │ │ │ ├── a00337.html │ │ │ ├── a00338.html │ │ │ ├── a00339.html │ │ │ ├── a00340.html │ │ │ ├── a00341.html │ │ │ ├── a00342.html │ │ │ ├── a00343.html │ │ │ ├── a00344.html │ │ │ ├── a00345.html │ │ │ ├── a00346.html │ │ │ ├── a00347.html │ │ │ ├── a00348.html │ │ │ ├── a00349.html │ │ │ ├── a00350.html │ │ │ ├── a00351.html │ │ │ ├── a00352.html │ │ │ ├── a00353.html │ │ │ ├── a00354.html │ │ │ ├── a00355.html │ │ │ ├── a00356.html │ │ │ ├── a00357.html │ │ │ ├── a00358.html │ │ │ ├── a00359.html │ │ │ ├── a00360.html │ │ │ ├── a00361.html │ │ │ ├── a00362.html │ │ │ ├── a00363.html │ │ │ ├── a00364.html │ │ │ ├── a00365.html │ │ │ ├── a00366.html │ │ │ ├── a00367.html │ │ │ ├── a00368.html │ │ │ ├── a00369.html │ │ │ ├── a00370.html │ │ │ ├── a00371.html │ │ │ ├── a00372.html │ │ │ ├── a00373.html │ │ │ ├── a00374.html │ │ │ ├── arrowdown.png │ │ │ ├── arrowright.png │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── closed.png │ │ │ ├── dir_033f5edb0915b828d2c46ed4804e5503.html │ │ │ ├── dir_3a581ba30d25676e4b797b1f96d53b45.html │ │ │ ├── dir_44e5e654415abd9ca6fdeaddaff8565e.html │ │ │ ├── dir_4c6bd29c73fa4e5a2509e1c15f846751.html │ │ │ ├── dir_5189610d3ba09ec39b766fb99b34cd93.html │ │ │ ├── dir_6b66465792d005310484819a0eb0b0d3.html │ │ │ ├── dir_9e5fe034a00e89334fd5186c3e7db156.html │ │ │ ├── dir_a8bee7be44182a33f3820393ae0b105d.html │ │ │ ├── dir_cef2d71d502cb69a9252bca2297d9549.html │ │ │ ├── dir_d9496f0844b48bc7e53b5af8c99b9ab2.html │ │ │ ├── dir_f35778ec600a1b9bbc4524e62e226aa2.html │ │ │ ├── doc.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── files.html │ │ │ ├── folderclosed.png │ │ │ ├── folderopen.png │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── logo-mini.png │ │ │ ├── modules.html │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── open.png │ │ │ ├── search │ │ │ │ ├── all_0.html │ │ │ │ ├── all_0.js │ │ │ │ ├── all_1.html │ │ │ │ ├── all_1.js │ │ │ │ ├── all_10.html │ │ │ │ ├── all_10.js │ │ │ │ ├── all_11.html │ │ │ │ ├── all_11.js │ │ │ │ ├── all_12.html │ │ │ │ ├── all_12.js │ │ │ │ ├── all_13.html │ │ │ │ ├── all_13.js │ │ │ │ ├── all_14.html │ │ │ │ ├── all_14.js │ │ │ │ ├── all_15.html │ │ │ │ ├── all_15.js │ │ │ │ ├── all_16.html │ │ │ │ ├── all_16.js │ │ │ │ ├── all_2.html │ │ │ │ ├── all_2.js │ │ │ │ ├── all_3.html │ │ │ │ ├── all_3.js │ │ │ │ ├── all_4.html │ │ │ │ ├── all_4.js │ │ │ │ ├── all_5.html │ │ │ │ ├── all_5.js │ │ │ │ ├── all_6.html │ │ │ │ ├── all_6.js │ │ │ │ ├── all_7.html │ │ │ │ ├── all_7.js │ │ │ │ ├── all_8.html │ │ │ │ ├── all_8.js │ │ │ │ ├── all_9.html │ │ │ │ ├── all_9.js │ │ │ │ ├── all_a.html │ │ │ │ ├── all_a.js │ │ │ │ ├── all_b.html │ │ │ │ ├── all_b.js │ │ │ │ ├── all_c.html │ │ │ │ ├── all_c.js │ │ │ │ ├── all_d.html │ │ │ │ ├── all_d.js │ │ │ │ ├── all_e.html │ │ │ │ ├── all_e.js │ │ │ │ ├── all_f.html │ │ │ │ ├── all_f.js │ │ │ │ ├── close.png │ │ │ │ ├── files_0.html │ │ │ │ ├── files_0.js │ │ │ │ ├── files_1.html │ │ │ │ ├── files_1.js │ │ │ │ ├── files_10.html │ │ │ │ ├── files_10.js │ │ │ │ ├── files_11.html │ │ │ │ ├── files_11.js │ │ │ │ ├── files_12.html │ │ │ │ ├── files_12.js │ │ │ │ ├── files_13.html │ │ │ │ ├── files_13.js │ │ │ │ ├── files_14.html │ │ │ │ ├── files_14.js │ │ │ │ ├── files_2.html │ │ │ │ ├── files_2.js │ │ │ │ ├── files_3.html │ │ │ │ ├── files_3.js │ │ │ │ ├── files_4.html │ │ │ │ ├── files_4.js │ │ │ │ ├── files_5.html │ │ │ │ ├── files_5.js │ │ │ │ ├── files_6.html │ │ │ │ ├── files_6.js │ │ │ │ ├── files_7.html │ │ │ │ ├── files_7.js │ │ │ │ ├── files_8.html │ │ │ │ ├── files_8.js │ │ │ │ ├── files_9.html │ │ │ │ ├── files_9.js │ │ │ │ ├── files_a.html │ │ │ │ ├── files_a.js │ │ │ │ ├── files_b.html │ │ │ │ ├── files_b.js │ │ │ │ ├── files_c.html │ │ │ │ ├── files_c.js │ │ │ │ ├── files_d.html │ │ │ │ ├── files_d.js │ │ │ │ ├── files_e.html │ │ │ │ ├── files_e.js │ │ │ │ ├── files_f.html │ │ │ │ ├── files_f.js │ │ │ │ ├── functions_0.html │ │ │ │ ├── functions_0.js │ │ │ │ ├── functions_1.html │ │ │ │ ├── functions_1.js │ │ │ │ ├── functions_10.html │ │ │ │ ├── functions_10.js │ │ │ │ ├── functions_11.html │ │ │ │ ├── functions_11.js │ │ │ │ ├── functions_12.html │ │ │ │ ├── functions_12.js │ │ │ │ ├── functions_13.html │ │ │ │ ├── functions_13.js │ │ │ │ ├── functions_14.html │ │ │ │ ├── functions_14.js │ │ │ │ ├── functions_15.html │ │ │ │ ├── functions_15.js │ │ │ │ ├── functions_16.html │ │ │ │ ├── functions_16.js │ │ │ │ ├── functions_2.html │ │ │ │ ├── functions_2.js │ │ │ │ ├── functions_3.html │ │ │ │ ├── functions_3.js │ │ │ │ ├── functions_4.html │ │ │ │ ├── functions_4.js │ │ │ │ ├── functions_5.html │ │ │ │ ├── functions_5.js │ │ │ │ ├── functions_6.html │ │ │ │ ├── functions_6.js │ │ │ │ ├── functions_7.html │ │ │ │ ├── functions_7.js │ │ │ │ ├── functions_8.html │ │ │ │ ├── functions_8.js │ │ │ │ ├── functions_9.html │ │ │ │ ├── functions_9.js │ │ │ │ ├── functions_a.html │ │ │ │ ├── functions_a.js │ │ │ │ ├── functions_b.html │ │ │ │ ├── functions_b.js │ │ │ │ ├── functions_c.html │ │ │ │ ├── functions_c.js │ │ │ │ ├── functions_d.html │ │ │ │ ├── functions_d.js │ │ │ │ ├── functions_e.html │ │ │ │ ├── functions_e.js │ │ │ │ ├── functions_f.html │ │ │ │ ├── functions_f.js │ │ │ │ ├── groups_0.html │ │ │ │ ├── groups_0.js │ │ │ │ ├── groups_1.html │ │ │ │ ├── groups_1.js │ │ │ │ ├── groups_2.html │ │ │ │ ├── groups_2.js │ │ │ │ ├── groups_3.html │ │ │ │ ├── groups_3.js │ │ │ │ ├── groups_4.html │ │ │ │ ├── groups_4.js │ │ │ │ ├── groups_5.html │ │ │ │ ├── groups_5.js │ │ │ │ ├── groups_6.html │ │ │ │ ├── groups_6.js │ │ │ │ ├── groups_7.html │ │ │ │ ├── groups_7.js │ │ │ │ ├── groups_8.html │ │ │ │ ├── groups_8.js │ │ │ │ ├── groups_9.html │ │ │ │ ├── groups_9.js │ │ │ │ ├── mag_sel.png │ │ │ │ ├── nomatches.html │ │ │ │ ├── pages_0.html │ │ │ │ ├── pages_0.js │ │ │ │ ├── search.css │ │ │ │ ├── search.js │ │ │ │ ├── search_l.png │ │ │ │ ├── search_m.png │ │ │ │ ├── search_r.png │ │ │ │ ├── searchdata.js │ │ │ │ ├── typedefs_0.html │ │ │ │ ├── typedefs_0.js │ │ │ │ ├── typedefs_1.html │ │ │ │ ├── typedefs_1.js │ │ │ │ ├── typedefs_2.html │ │ │ │ ├── typedefs_2.js │ │ │ │ ├── typedefs_3.html │ │ │ │ ├── typedefs_3.js │ │ │ │ ├── typedefs_4.html │ │ │ │ ├── typedefs_4.js │ │ │ │ ├── typedefs_5.html │ │ │ │ ├── typedefs_5.js │ │ │ │ ├── typedefs_6.html │ │ │ │ ├── typedefs_6.js │ │ │ │ ├── typedefs_7.html │ │ │ │ ├── typedefs_7.js │ │ │ │ ├── typedefs_8.html │ │ │ │ ├── typedefs_8.js │ │ │ │ ├── typedefs_9.html │ │ │ │ ├── typedefs_9.js │ │ │ │ ├── typedefs_a.html │ │ │ │ ├── typedefs_a.js │ │ │ │ ├── typedefs_b.html │ │ │ │ ├── typedefs_b.js │ │ │ │ ├── typedefs_c.html │ │ │ │ ├── typedefs_c.js │ │ │ │ ├── typedefs_d.html │ │ │ │ └── typedefs_d.js │ │ │ ├── splitbar.png │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ └── tabs.css │ │ ├── man.doxy │ │ ├── manual.pdf │ │ ├── manual │ │ │ ├── frontpage1.png │ │ │ ├── frontpage2.png │ │ │ ├── g-truc.png │ │ │ ├── logo-mini.png │ │ │ ├── noise-perlin1.jpg │ │ │ ├── noise-perlin2.jpg │ │ │ ├── noise-perlin3.jpg │ │ │ ├── noise-perlin4.png │ │ │ ├── noise-perlin5.png │ │ │ ├── noise-perlin6.png │ │ │ ├── noise-simplex1.jpg │ │ │ ├── noise-simplex2.jpg │ │ │ ├── noise-simplex3.jpg │ │ │ ├── random-ballrand.png │ │ │ ├── random-circularrand.png │ │ │ ├── random-diskrand.png │ │ │ ├── random-gaussrand.png │ │ │ ├── random-linearrand.png │ │ │ ├── random-sphericalrand.png │ │ │ ├── references-cinder.png │ │ │ ├── references-glsl4book.jpg │ │ │ ├── references-leosfortune.jpeg │ │ │ ├── references-leosfortune2.jpg │ │ │ ├── references-opencloth1.png │ │ │ ├── references-opencloth3.png │ │ │ ├── references-outerra1.jpg │ │ │ ├── references-outerra2.jpg │ │ │ ├── references-outerra3.jpg │ │ │ └── references-outerra4.jpg │ │ └── theme │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── closed.png │ │ │ ├── doc.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── folderclosed.png │ │ │ ├── folderopen.png │ │ │ ├── logo-mini.png │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── open.png │ │ │ ├── splitbar.png │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ └── tab_s.png │ ├── glm │ │ ├── CMakeLists.txt │ │ ├── common.hpp │ │ ├── detail │ │ │ ├── _features.hpp │ │ │ ├── _fixes.hpp │ │ │ ├── _noise.hpp │ │ │ ├── _swizzle.hpp │ │ │ ├── _swizzle_func.hpp │ │ │ ├── _vectorize.hpp │ │ │ ├── compute_common.hpp │ │ │ ├── compute_vector_relational.hpp │ │ │ ├── func_common.inl │ │ │ ├── func_common_simd.inl │ │ │ ├── func_exponential.inl │ │ │ ├── func_exponential_simd.inl │ │ │ ├── func_geometric.inl │ │ │ ├── func_geometric_simd.inl │ │ │ ├── func_integer.inl │ │ │ ├── func_integer_simd.inl │ │ │ ├── func_matrix.inl │ │ │ ├── func_matrix_simd.inl │ │ │ ├── func_packing.inl │ │ │ ├── func_packing_simd.inl │ │ │ ├── func_trigonometric.inl │ │ │ ├── func_trigonometric_simd.inl │ │ │ ├── func_vector_relational.inl │ │ │ ├── func_vector_relational_simd.inl │ │ │ ├── glm.cpp │ │ │ ├── qualifier.hpp │ │ │ ├── setup.hpp │ │ │ ├── type_float.hpp │ │ │ ├── type_half.hpp │ │ │ ├── type_half.inl │ │ │ ├── type_mat2x2.hpp │ │ │ ├── type_mat2x2.inl │ │ │ ├── type_mat2x3.hpp │ │ │ ├── type_mat2x3.inl │ │ │ ├── type_mat2x4.hpp │ │ │ ├── type_mat2x4.inl │ │ │ ├── type_mat3x2.hpp │ │ │ ├── type_mat3x2.inl │ │ │ ├── type_mat3x3.hpp │ │ │ ├── type_mat3x3.inl │ │ │ ├── type_mat3x4.hpp │ │ │ ├── type_mat3x4.inl │ │ │ ├── type_mat4x2.hpp │ │ │ ├── type_mat4x2.inl │ │ │ ├── type_mat4x3.hpp │ │ │ ├── type_mat4x3.inl │ │ │ ├── type_mat4x4.hpp │ │ │ ├── type_mat4x4.inl │ │ │ ├── type_mat4x4_simd.inl │ │ │ ├── type_quat.hpp │ │ │ ├── type_quat.inl │ │ │ ├── type_quat_simd.inl │ │ │ ├── type_vec1.hpp │ │ │ ├── type_vec1.inl │ │ │ ├── type_vec2.hpp │ │ │ ├── type_vec2.inl │ │ │ ├── type_vec3.hpp │ │ │ ├── type_vec3.inl │ │ │ ├── type_vec4.hpp │ │ │ ├── type_vec4.inl │ │ │ └── type_vec4_simd.inl │ │ ├── exponential.hpp │ │ ├── ext.hpp │ │ ├── ext │ │ │ ├── matrix_clip_space.hpp │ │ │ ├── matrix_clip_space.inl │ │ │ ├── matrix_common.hpp │ │ │ ├── matrix_common.inl │ │ │ ├── matrix_double2x2.hpp │ │ │ ├── matrix_double2x2_precision.hpp │ │ │ ├── matrix_double2x3.hpp │ │ │ ├── matrix_double2x3_precision.hpp │ │ │ ├── matrix_double2x4.hpp │ │ │ ├── matrix_double2x4_precision.hpp │ │ │ ├── matrix_double3x2.hpp │ │ │ ├── matrix_double3x2_precision.hpp │ │ │ ├── matrix_double3x3.hpp │ │ │ ├── matrix_double3x3_precision.hpp │ │ │ ├── matrix_double3x4.hpp │ │ │ ├── matrix_double3x4_precision.hpp │ │ │ ├── matrix_double4x2.hpp │ │ │ ├── matrix_double4x2_precision.hpp │ │ │ ├── matrix_double4x3.hpp │ │ │ ├── matrix_double4x3_precision.hpp │ │ │ ├── matrix_double4x4.hpp │ │ │ ├── matrix_double4x4_precision.hpp │ │ │ ├── matrix_float2x2.hpp │ │ │ ├── matrix_float2x2_precision.hpp │ │ │ ├── matrix_float2x3.hpp │ │ │ ├── matrix_float2x3_precision.hpp │ │ │ ├── matrix_float2x4.hpp │ │ │ ├── matrix_float2x4_precision.hpp │ │ │ ├── matrix_float3x2.hpp │ │ │ ├── matrix_float3x2_precision.hpp │ │ │ ├── matrix_float3x3.hpp │ │ │ ├── matrix_float3x3_precision.hpp │ │ │ ├── matrix_float3x4.hpp │ │ │ ├── matrix_float3x4_precision.hpp │ │ │ ├── matrix_float4x2.hpp │ │ │ ├── matrix_float4x2_precision.hpp │ │ │ ├── matrix_float4x3.hpp │ │ │ ├── matrix_float4x3_precision.hpp │ │ │ ├── matrix_float4x4.hpp │ │ │ ├── matrix_float4x4_precision.hpp │ │ │ ├── matrix_int2x2.hpp │ │ │ ├── matrix_int2x2_sized.hpp │ │ │ ├── matrix_int2x3.hpp │ │ │ ├── matrix_int2x3_sized.hpp │ │ │ ├── matrix_int2x4.hpp │ │ │ ├── matrix_int2x4_sized.hpp │ │ │ ├── matrix_int3x2.hpp │ │ │ ├── matrix_int3x2_sized.hpp │ │ │ ├── matrix_int3x3.hpp │ │ │ ├── matrix_int3x3_sized.hpp │ │ │ ├── matrix_int3x4.hpp │ │ │ ├── matrix_int3x4_sized.hpp │ │ │ ├── matrix_int4x2.hpp │ │ │ ├── matrix_int4x2_sized.hpp │ │ │ ├── matrix_int4x3.hpp │ │ │ ├── matrix_int4x3_sized.hpp │ │ │ ├── matrix_int4x4.hpp │ │ │ ├── matrix_int4x4_sized.hpp │ │ │ ├── matrix_projection.hpp │ │ │ ├── matrix_projection.inl │ │ │ ├── matrix_relational.hpp │ │ │ ├── matrix_relational.inl │ │ │ ├── matrix_transform.hpp │ │ │ ├── matrix_transform.inl │ │ │ ├── matrix_uint2x2.hpp │ │ │ ├── matrix_uint2x2_sized.hpp │ │ │ ├── matrix_uint2x3.hpp │ │ │ ├── matrix_uint2x3_sized.hpp │ │ │ ├── matrix_uint2x4.hpp │ │ │ ├── matrix_uint2x4_sized.hpp │ │ │ ├── matrix_uint3x2.hpp │ │ │ ├── matrix_uint3x2_sized.hpp │ │ │ ├── matrix_uint3x3.hpp │ │ │ ├── matrix_uint3x3_sized.hpp │ │ │ ├── matrix_uint3x4.hpp │ │ │ ├── matrix_uint3x4_sized.hpp │ │ │ ├── matrix_uint4x2.hpp │ │ │ ├── matrix_uint4x2_sized.hpp │ │ │ ├── matrix_uint4x3.hpp │ │ │ ├── matrix_uint4x3_sized.hpp │ │ │ ├── matrix_uint4x4.hpp │ │ │ ├── matrix_uint4x4_sized.hpp │ │ │ ├── quaternion_common.hpp │ │ │ ├── quaternion_common.inl │ │ │ ├── quaternion_common_simd.inl │ │ │ ├── quaternion_double.hpp │ │ │ ├── quaternion_double_precision.hpp │ │ │ ├── quaternion_exponential.hpp │ │ │ ├── quaternion_exponential.inl │ │ │ ├── quaternion_float.hpp │ │ │ ├── quaternion_float_precision.hpp │ │ │ ├── quaternion_geometric.hpp │ │ │ ├── quaternion_geometric.inl │ │ │ ├── quaternion_relational.hpp │ │ │ ├── quaternion_relational.inl │ │ │ ├── quaternion_transform.hpp │ │ │ ├── quaternion_transform.inl │ │ │ ├── quaternion_trigonometric.hpp │ │ │ ├── quaternion_trigonometric.inl │ │ │ ├── scalar_common.hpp │ │ │ ├── scalar_common.inl │ │ │ ├── scalar_constants.hpp │ │ │ ├── scalar_constants.inl │ │ │ ├── scalar_int_sized.hpp │ │ │ ├── scalar_integer.hpp │ │ │ ├── scalar_integer.inl │ │ │ ├── scalar_packing.hpp │ │ │ ├── scalar_packing.inl │ │ │ ├── scalar_relational.hpp │ │ │ ├── scalar_relational.inl │ │ │ ├── scalar_uint_sized.hpp │ │ │ ├── scalar_ulp.hpp │ │ │ ├── scalar_ulp.inl │ │ │ ├── vector_bool1.hpp │ │ │ ├── vector_bool1_precision.hpp │ │ │ ├── vector_bool2.hpp │ │ │ ├── vector_bool2_precision.hpp │ │ │ ├── vector_bool3.hpp │ │ │ ├── vector_bool3_precision.hpp │ │ │ ├── vector_bool4.hpp │ │ │ ├── vector_bool4_precision.hpp │ │ │ ├── vector_common.hpp │ │ │ ├── vector_common.inl │ │ │ ├── vector_double1.hpp │ │ │ ├── vector_double1_precision.hpp │ │ │ ├── vector_double2.hpp │ │ │ ├── vector_double2_precision.hpp │ │ │ ├── vector_double3.hpp │ │ │ ├── vector_double3_precision.hpp │ │ │ ├── vector_double4.hpp │ │ │ ├── vector_double4_precision.hpp │ │ │ ├── vector_float1.hpp │ │ │ ├── vector_float1_precision.hpp │ │ │ ├── vector_float2.hpp │ │ │ ├── vector_float2_precision.hpp │ │ │ ├── vector_float3.hpp │ │ │ ├── vector_float3_precision.hpp │ │ │ ├── vector_float4.hpp │ │ │ ├── vector_float4_precision.hpp │ │ │ ├── vector_int1.hpp │ │ │ ├── vector_int1_sized.hpp │ │ │ ├── vector_int2.hpp │ │ │ ├── vector_int2_sized.hpp │ │ │ ├── vector_int3.hpp │ │ │ ├── vector_int3_sized.hpp │ │ │ ├── vector_int4.hpp │ │ │ ├── vector_int4_sized.hpp │ │ │ ├── vector_integer.hpp │ │ │ ├── vector_integer.inl │ │ │ ├── vector_packing.hpp │ │ │ ├── vector_packing.inl │ │ │ ├── vector_relational.hpp │ │ │ ├── vector_relational.inl │ │ │ ├── vector_uint1.hpp │ │ │ ├── vector_uint1_sized.hpp │ │ │ ├── vector_uint2.hpp │ │ │ ├── vector_uint2_sized.hpp │ │ │ ├── vector_uint3.hpp │ │ │ ├── vector_uint3_sized.hpp │ │ │ ├── vector_uint4.hpp │ │ │ ├── vector_uint4_sized.hpp │ │ │ ├── vector_ulp.hpp │ │ │ └── vector_ulp.inl │ │ ├── fwd.hpp │ │ ├── geometric.hpp │ │ ├── glm.hpp │ │ ├── gtc │ │ │ ├── bitfield.hpp │ │ │ ├── bitfield.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── constants.hpp │ │ │ ├── constants.inl │ │ │ ├── epsilon.hpp │ │ │ ├── epsilon.inl │ │ │ ├── integer.hpp │ │ │ ├── integer.inl │ │ │ ├── matrix_access.hpp │ │ │ ├── matrix_access.inl │ │ │ ├── matrix_integer.hpp │ │ │ ├── matrix_inverse.hpp │ │ │ ├── matrix_inverse.inl │ │ │ ├── matrix_transform.hpp │ │ │ ├── matrix_transform.inl │ │ │ ├── noise.hpp │ │ │ ├── noise.inl │ │ │ ├── packing.hpp │ │ │ ├── packing.inl │ │ │ ├── quaternion.hpp │ │ │ ├── quaternion.inl │ │ │ ├── quaternion_simd.inl │ │ │ ├── random.hpp │ │ │ ├── random.inl │ │ │ ├── reciprocal.hpp │ │ │ ├── reciprocal.inl │ │ │ ├── round.hpp │ │ │ ├── round.inl │ │ │ ├── type_aligned.hpp │ │ │ ├── type_precision.hpp │ │ │ ├── type_precision.inl │ │ │ ├── type_ptr.hpp │ │ │ ├── type_ptr.inl │ │ │ ├── ulp.hpp │ │ │ ├── ulp.inl │ │ │ └── vec1.hpp │ │ ├── gtx │ │ │ ├── associated_min_max.hpp │ │ │ ├── associated_min_max.inl │ │ │ ├── bit.hpp │ │ │ ├── bit.inl │ │ │ ├── closest_point.hpp │ │ │ ├── closest_point.inl │ │ │ ├── color_encoding.hpp │ │ │ ├── color_encoding.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── color_space_YCoCg.hpp │ │ │ ├── color_space_YCoCg.inl │ │ │ ├── common.hpp │ │ │ ├── common.inl │ │ │ ├── compatibility.hpp │ │ │ ├── compatibility.inl │ │ │ ├── component_wise.hpp │ │ │ ├── component_wise.inl │ │ │ ├── dual_quaternion.hpp │ │ │ ├── dual_quaternion.inl │ │ │ ├── easing.hpp │ │ │ ├── easing.inl │ │ │ ├── euler_angles.hpp │ │ │ ├── euler_angles.inl │ │ │ ├── extend.hpp │ │ │ ├── extend.inl │ │ │ ├── extended_min_max.hpp │ │ │ ├── extended_min_max.inl │ │ │ ├── exterior_product.hpp │ │ │ ├── exterior_product.inl │ │ │ ├── fast_exponential.hpp │ │ │ ├── fast_exponential.inl │ │ │ ├── fast_square_root.hpp │ │ │ ├── fast_square_root.inl │ │ │ ├── fast_trigonometry.hpp │ │ │ ├── fast_trigonometry.inl │ │ │ ├── float_notmalize.inl │ │ │ ├── functions.hpp │ │ │ ├── functions.inl │ │ │ ├── gradient_paint.hpp │ │ │ ├── gradient_paint.inl │ │ │ ├── handed_coordinate_space.hpp │ │ │ ├── handed_coordinate_space.inl │ │ │ ├── hash.hpp │ │ │ ├── hash.inl │ │ │ ├── integer.hpp │ │ │ ├── integer.inl │ │ │ ├── intersect.hpp │ │ │ ├── intersect.inl │ │ │ ├── io.hpp │ │ │ ├── io.inl │ │ │ ├── log_base.hpp │ │ │ ├── log_base.inl │ │ │ ├── matrix_cross_product.hpp │ │ │ ├── matrix_cross_product.inl │ │ │ ├── matrix_decompose.hpp │ │ │ ├── matrix_decompose.inl │ │ │ ├── matrix_factorisation.hpp │ │ │ ├── matrix_factorisation.inl │ │ │ ├── matrix_interpolation.hpp │ │ │ ├── matrix_interpolation.inl │ │ │ ├── matrix_major_storage.hpp │ │ │ ├── matrix_major_storage.inl │ │ │ ├── matrix_operation.hpp │ │ │ ├── matrix_operation.inl │ │ │ ├── matrix_query.hpp │ │ │ ├── matrix_query.inl │ │ │ ├── matrix_transform_2d.hpp │ │ │ ├── matrix_transform_2d.inl │ │ │ ├── mixed_product.hpp │ │ │ ├── mixed_product.inl │ │ │ ├── norm.hpp │ │ │ ├── norm.inl │ │ │ ├── normal.hpp │ │ │ ├── normal.inl │ │ │ ├── normalize_dot.hpp │ │ │ ├── normalize_dot.inl │ │ │ ├── number_precision.hpp │ │ │ ├── number_precision.inl │ │ │ ├── optimum_pow.hpp │ │ │ ├── optimum_pow.inl │ │ │ ├── orthonormalize.hpp │ │ │ ├── orthonormalize.inl │ │ │ ├── perpendicular.hpp │ │ │ ├── perpendicular.inl │ │ │ ├── polar_coordinates.hpp │ │ │ ├── polar_coordinates.inl │ │ │ ├── projection.hpp │ │ │ ├── projection.inl │ │ │ ├── quaternion.hpp │ │ │ ├── quaternion.inl │ │ │ ├── range.hpp │ │ │ ├── raw_data.hpp │ │ │ ├── raw_data.inl │ │ │ ├── rotate_normalized_axis.hpp │ │ │ ├── rotate_normalized_axis.inl │ │ │ ├── rotate_vector.hpp │ │ │ ├── rotate_vector.inl │ │ │ ├── scalar_multiplication.hpp │ │ │ ├── scalar_relational.hpp │ │ │ ├── scalar_relational.inl │ │ │ ├── spline.hpp │ │ │ ├── spline.inl │ │ │ ├── std_based_type.hpp │ │ │ ├── std_based_type.inl │ │ │ ├── string_cast.hpp │ │ │ ├── string_cast.inl │ │ │ ├── texture.hpp │ │ │ ├── texture.inl │ │ │ ├── transform.hpp │ │ │ ├── transform.inl │ │ │ ├── transform2.hpp │ │ │ ├── transform2.inl │ │ │ ├── type_aligned.hpp │ │ │ ├── type_aligned.inl │ │ │ ├── type_trait.hpp │ │ │ ├── type_trait.inl │ │ │ ├── vec_swizzle.hpp │ │ │ ├── vector_angle.hpp │ │ │ ├── vector_angle.inl │ │ │ ├── vector_query.hpp │ │ │ ├── vector_query.inl │ │ │ ├── wrap.hpp │ │ │ └── wrap.inl │ │ ├── integer.hpp │ │ ├── mat2x2.hpp │ │ ├── mat2x3.hpp │ │ ├── mat2x4.hpp │ │ ├── mat3x2.hpp │ │ ├── mat3x3.hpp │ │ ├── mat3x4.hpp │ │ ├── mat4x2.hpp │ │ ├── mat4x3.hpp │ │ ├── mat4x4.hpp │ │ ├── matrix.hpp │ │ ├── packing.hpp │ │ ├── simd │ │ │ ├── common.h │ │ │ ├── exponential.h │ │ │ ├── geometric.h │ │ │ ├── integer.h │ │ │ ├── matrix.h │ │ │ ├── neon.h │ │ │ ├── packing.h │ │ │ ├── platform.h │ │ │ ├── trigonometric.h │ │ │ └── vector_relational.h │ │ ├── trigonometric.hpp │ │ ├── vec2.hpp │ │ ├── vec3.hpp │ │ ├── vec4.hpp │ │ └── vector_relational.hpp │ ├── manual.md │ ├── readme.md │ ├── test │ │ ├── CMakeLists.txt │ │ ├── bug │ │ │ ├── CMakeLists.txt │ │ │ └── bug_ms_vec_static.cpp │ │ ├── cmake │ │ │ ├── CMakeLists.txt │ │ │ └── test_find_glm.cpp │ │ ├── core │ │ │ ├── CMakeLists.txt │ │ │ ├── core_cpp_constexpr.cpp │ │ │ ├── core_cpp_defaulted_ctor.cpp │ │ │ ├── core_force_aligned_gentypes.cpp │ │ │ ├── core_force_arch_unknown.cpp │ │ │ ├── core_force_compiler_unknown.cpp │ │ │ ├── core_force_ctor_init.cpp │ │ │ ├── core_force_cxx03.cpp │ │ │ ├── core_force_cxx98.cpp │ │ │ ├── core_force_cxx_unknown.cpp │ │ │ ├── core_force_depth_zero_to_one.cpp │ │ │ ├── core_force_explicit_ctor.cpp │ │ │ ├── core_force_inline.cpp │ │ │ ├── core_force_left_handed.cpp │ │ │ ├── core_force_platform_unknown.cpp │ │ │ ├── core_force_pure.cpp │ │ │ ├── core_force_quat_wxyz.cpp │ │ │ ├── core_force_size_t_length.cpp │ │ │ ├── core_force_unrestricted_gentype.cpp │ │ │ ├── core_force_xyzw_only.cpp │ │ │ ├── core_func_common.cpp │ │ │ ├── core_func_exponential.cpp │ │ │ ├── core_func_geometric.cpp │ │ │ ├── core_func_integer.cpp │ │ │ ├── core_func_integer_bit_count.cpp │ │ │ ├── core_func_integer_find_lsb.cpp │ │ │ ├── core_func_integer_find_msb.cpp │ │ │ ├── core_func_matrix.cpp │ │ │ ├── core_func_noise.cpp │ │ │ ├── core_func_packing.cpp │ │ │ ├── core_func_swizzle.cpp │ │ │ ├── core_func_trigonometric.cpp │ │ │ ├── core_func_vector_relational.cpp │ │ │ ├── core_setup_force_cxx98.cpp │ │ │ ├── core_setup_force_size_t_length.cpp │ │ │ ├── core_setup_message.cpp │ │ │ ├── core_setup_platform_unknown.cpp │ │ │ ├── core_setup_precision.cpp │ │ │ ├── core_type_aligned.cpp │ │ │ ├── core_type_cast.cpp │ │ │ ├── core_type_ctor.cpp │ │ │ ├── core_type_int.cpp │ │ │ ├── core_type_length.cpp │ │ │ ├── core_type_mat2x2.cpp │ │ │ ├── core_type_mat2x3.cpp │ │ │ ├── core_type_mat2x4.cpp │ │ │ ├── core_type_mat3x2.cpp │ │ │ ├── core_type_mat3x3.cpp │ │ │ ├── core_type_mat3x4.cpp │ │ │ ├── core_type_mat4x2.cpp │ │ │ ├── core_type_mat4x3.cpp │ │ │ ├── core_type_mat4x4.cpp │ │ │ ├── core_type_vec1.cpp │ │ │ ├── core_type_vec2.cpp │ │ │ ├── core_type_vec3.cpp │ │ │ └── core_type_vec4.cpp │ │ ├── ext │ │ │ ├── CMakeLists.txt │ │ │ ├── ext_matrix_clip_space.cpp │ │ │ ├── ext_matrix_common.cpp │ │ │ ├── ext_matrix_int2x2_sized.cpp │ │ │ ├── ext_matrix_int2x3_sized.cpp │ │ │ ├── ext_matrix_int2x4_sized.cpp │ │ │ ├── ext_matrix_int3x2_sized.cpp │ │ │ ├── ext_matrix_int3x3_sized.cpp │ │ │ ├── ext_matrix_int3x4_sized.cpp │ │ │ ├── ext_matrix_int4x2_sized.cpp │ │ │ ├── ext_matrix_int4x3_sized.cpp │ │ │ ├── ext_matrix_int4x4_sized.cpp │ │ │ ├── ext_matrix_projection.cpp │ │ │ ├── ext_matrix_relational.cpp │ │ │ ├── ext_matrix_transform.cpp │ │ │ ├── ext_matrix_uint2x2_sized.cpp │ │ │ ├── ext_matrix_uint2x3_sized.cpp │ │ │ ├── ext_matrix_uint2x4_sized.cpp │ │ │ ├── ext_matrix_uint3x2_sized.cpp │ │ │ ├── ext_matrix_uint3x3_sized.cpp │ │ │ ├── ext_matrix_uint3x4_sized.cpp │ │ │ ├── ext_matrix_uint4x2_sized.cpp │ │ │ ├── ext_matrix_uint4x3_sized.cpp │ │ │ ├── ext_matrix_uint4x4_sized.cpp │ │ │ ├── ext_quaternion_common.cpp │ │ │ ├── ext_quaternion_exponential.cpp │ │ │ ├── ext_quaternion_geometric.cpp │ │ │ ├── ext_quaternion_relational.cpp │ │ │ ├── ext_quaternion_transform.cpp │ │ │ ├── ext_quaternion_trigonometric.cpp │ │ │ ├── ext_quaternion_type.cpp │ │ │ ├── ext_scalar_common.cpp │ │ │ ├── ext_scalar_constants.cpp │ │ │ ├── ext_scalar_int_sized.cpp │ │ │ ├── ext_scalar_integer.cpp │ │ │ ├── ext_scalar_packing.cpp │ │ │ ├── ext_scalar_relational.cpp │ │ │ ├── ext_scalar_uint_sized.cpp │ │ │ ├── ext_scalar_ulp.cpp │ │ │ ├── ext_vec1.cpp │ │ │ ├── ext_vector_bool1.cpp │ │ │ ├── ext_vector_common.cpp │ │ │ ├── ext_vector_iec559.cpp │ │ │ ├── ext_vector_int1_sized.cpp │ │ │ ├── ext_vector_int2_sized.cpp │ │ │ ├── ext_vector_int3_sized.cpp │ │ │ ├── ext_vector_int4_sized.cpp │ │ │ ├── ext_vector_integer.cpp │ │ │ ├── ext_vector_integer_sized.cpp │ │ │ ├── ext_vector_packing.cpp │ │ │ ├── ext_vector_relational.cpp │ │ │ ├── ext_vector_uint1_sized.cpp │ │ │ ├── ext_vector_uint2_sized.cpp │ │ │ ├── ext_vector_uint3_sized.cpp │ │ │ ├── ext_vector_uint4_sized.cpp │ │ │ └── ext_vector_ulp.cpp │ │ ├── glm.cppcheck │ │ ├── gtc │ │ │ ├── CMakeLists.txt │ │ │ ├── gtc_bitfield.cpp │ │ │ ├── gtc_color_space.cpp │ │ │ ├── gtc_constants.cpp │ │ │ ├── gtc_epsilon.cpp │ │ │ ├── gtc_integer.cpp │ │ │ ├── gtc_matrix_access.cpp │ │ │ ├── gtc_matrix_integer.cpp │ │ │ ├── gtc_matrix_inverse.cpp │ │ │ ├── gtc_matrix_transform.cpp │ │ │ ├── gtc_noise.cpp │ │ │ ├── gtc_packing.cpp │ │ │ ├── gtc_quaternion.cpp │ │ │ ├── gtc_random.cpp │ │ │ ├── gtc_reciprocal.cpp │ │ │ ├── gtc_round.cpp │ │ │ ├── gtc_type_aligned.cpp │ │ │ ├── gtc_type_precision.cpp │ │ │ ├── gtc_type_ptr.cpp │ │ │ ├── gtc_ulp.cpp │ │ │ ├── gtc_user_defined_types.cpp │ │ │ └── gtc_vec1.cpp │ │ ├── gtx │ │ │ ├── CMakeLists.txt │ │ │ ├── gtx.cpp │ │ │ ├── gtx_associated_min_max.cpp │ │ │ ├── gtx_closest_point.cpp │ │ │ ├── gtx_color_encoding.cpp │ │ │ ├── gtx_color_space.cpp │ │ │ ├── gtx_color_space_YCoCg.cpp │ │ │ ├── gtx_common.cpp │ │ │ ├── gtx_compatibility.cpp │ │ │ ├── gtx_component_wise.cpp │ │ │ ├── gtx_dual_quaternion.cpp │ │ │ ├── gtx_easing.cpp │ │ │ ├── gtx_euler_angle.cpp │ │ │ ├── gtx_extend.cpp │ │ │ ├── gtx_extended_min_max.cpp │ │ │ ├── gtx_extented_min_max.cpp │ │ │ ├── gtx_exterior_product.cpp │ │ │ ├── gtx_fast_exponential.cpp │ │ │ ├── gtx_fast_square_root.cpp │ │ │ ├── gtx_fast_trigonometry.cpp │ │ │ ├── gtx_functions.cpp │ │ │ ├── gtx_gradient_paint.cpp │ │ │ ├── gtx_handed_coordinate_space.cpp │ │ │ ├── gtx_int_10_10_10_2.cpp │ │ │ ├── gtx_integer.cpp │ │ │ ├── gtx_intersect.cpp │ │ │ ├── gtx_io.cpp │ │ │ ├── gtx_load.cpp │ │ │ ├── gtx_log_base.cpp │ │ │ ├── gtx_matrix_cross_product.cpp │ │ │ ├── gtx_matrix_decompose.cpp │ │ │ ├── gtx_matrix_factorisation.cpp │ │ │ ├── gtx_matrix_interpolation.cpp │ │ │ ├── gtx_matrix_major_storage.cpp │ │ │ ├── gtx_matrix_operation.cpp │ │ │ ├── gtx_matrix_query.cpp │ │ │ ├── gtx_matrix_transform_2d.cpp │ │ │ ├── gtx_mixed_product.cpp │ │ │ ├── gtx_norm.cpp │ │ │ ├── gtx_normal.cpp │ │ │ ├── gtx_normalize_dot.cpp │ │ │ ├── gtx_number_precision.cpp │ │ │ ├── gtx_optimum_pow.cpp │ │ │ ├── gtx_orthonormalize.cpp │ │ │ ├── gtx_perpendicular.cpp │ │ │ ├── gtx_polar_coordinates.cpp │ │ │ ├── gtx_projection.cpp │ │ │ ├── gtx_quaternion.cpp │ │ │ ├── gtx_random.cpp │ │ │ ├── gtx_range.cpp │ │ │ ├── gtx_rotate_normalized_axis.cpp │ │ │ ├── gtx_rotate_vector.cpp │ │ │ ├── gtx_scalar_multiplication.cpp │ │ │ ├── gtx_scalar_relational.cpp │ │ │ ├── gtx_simd_mat4.cpp │ │ │ ├── gtx_simd_vec4.cpp │ │ │ ├── gtx_spline.cpp │ │ │ ├── gtx_string_cast.cpp │ │ │ ├── gtx_texture.cpp │ │ │ ├── gtx_type_aligned.cpp │ │ │ ├── gtx_type_trait.cpp │ │ │ ├── gtx_vec_swizzle.cpp │ │ │ ├── gtx_vector_angle.cpp │ │ │ ├── gtx_vector_query.cpp │ │ │ └── gtx_wrap.cpp │ │ └── perf │ │ │ ├── CMakeLists.txt │ │ │ ├── perf_matrix_div.cpp │ │ │ ├── perf_matrix_inverse.cpp │ │ │ ├── perf_matrix_mul.cpp │ │ │ ├── perf_matrix_mul_vector.cpp │ │ │ ├── perf_matrix_transpose.cpp │ │ │ └── perf_vector_mul_matrix.cpp │ └── util │ │ ├── autoexp.txt │ │ ├── autoexp.vc2010.dat │ │ ├── glm.natvis │ │ └── usertype.dat ├── imgui-1.87 │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE.txt │ ├── backends │ │ ├── imgui_impl_allegro5.cpp │ │ ├── imgui_impl_allegro5.h │ │ ├── imgui_impl_android.cpp │ │ ├── imgui_impl_android.h │ │ ├── imgui_impl_dx10.cpp │ │ ├── imgui_impl_dx10.h │ │ ├── imgui_impl_dx11.cpp │ │ ├── imgui_impl_dx11.h │ │ ├── imgui_impl_dx12.cpp │ │ ├── imgui_impl_dx12.h │ │ ├── imgui_impl_dx9.cpp │ │ ├── imgui_impl_dx9.h │ │ ├── imgui_impl_glfw.cpp │ │ ├── imgui_impl_glfw.h │ │ ├── imgui_impl_glut.cpp │ │ ├── imgui_impl_glut.h │ │ ├── imgui_impl_metal.h │ │ ├── imgui_impl_metal.mm │ │ ├── imgui_impl_opengl2.cpp │ │ ├── imgui_impl_opengl2.h │ │ ├── imgui_impl_opengl3.cpp │ │ ├── imgui_impl_opengl3.h │ │ ├── imgui_impl_opengl3_loader.h │ │ ├── imgui_impl_osx.h │ │ ├── imgui_impl_osx.mm │ │ ├── imgui_impl_sdl.cpp │ │ ├── imgui_impl_sdl.h │ │ ├── imgui_impl_sdlrenderer.cpp │ │ ├── imgui_impl_sdlrenderer.h │ │ ├── imgui_impl_vulkan.cpp │ │ ├── imgui_impl_vulkan.h │ │ ├── imgui_impl_wgpu.cpp │ │ ├── imgui_impl_wgpu.h │ │ ├── imgui_impl_win32.cpp │ │ ├── imgui_impl_win32.h │ │ └── vulkan │ │ │ ├── generate_spv.sh │ │ │ ├── glsl_shader.frag │ │ │ └── glsl_shader.vert │ ├── docs │ │ ├── BACKENDS.md │ │ ├── CHANGELOG.txt │ │ ├── EXAMPLES.md │ │ ├── FAQ.md │ │ ├── FONTS.md │ │ ├── README.md │ │ └── TODO.txt │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_internal.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ ├── imstb_truetype.h │ └── misc │ │ ├── README.txt │ │ ├── cpp │ │ ├── README.txt │ │ ├── imgui_stdlib.cpp │ │ └── imgui_stdlib.h │ │ ├── debuggers │ │ ├── README.txt │ │ ├── imgui.gdb │ │ ├── imgui.natstepfilter │ │ └── imgui.natvis │ │ ├── fonts │ │ ├── Cousine-Regular.ttf │ │ ├── DroidSans.ttf │ │ ├── Karla-Regular.ttf │ │ ├── ProggyClean.ttf │ │ ├── ProggyTiny.ttf │ │ ├── Roboto-Medium.ttf │ │ └── binary_to_compressed_c.cpp │ │ ├── freetype │ │ ├── README.md │ │ ├── imgui_freetype.cpp │ │ └── imgui_freetype.h │ │ └── single_file │ │ └── imgui_single_file.h ├── rapidjson │ ├── .gitattributes │ ├── .gitignore │ ├── .gitmodules │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── CMakeModules │ │ └── FindGTestSrc.cmake │ ├── RapidJSON.pc.in │ ├── RapidJSONConfig.cmake.in │ ├── RapidJSONConfigVersion.cmake.in │ ├── appveyor.yml │ ├── bin │ │ ├── data │ │ │ ├── abcde.txt │ │ │ ├── glossary.json │ │ │ ├── menu.json │ │ │ ├── readme.txt │ │ │ ├── sample.json │ │ │ ├── webapp.json │ │ │ └── widget.json │ │ ├── encodings │ │ │ ├── utf16be.json │ │ │ ├── utf16bebom.json │ │ │ ├── utf16le.json │ │ │ ├── utf16lebom.json │ │ │ ├── utf32be.json │ │ │ ├── utf32bebom.json │ │ │ ├── utf32le.json │ │ │ ├── utf32lebom.json │ │ │ ├── utf8.json │ │ │ └── utf8bom.json │ │ ├── jsonchecker │ │ │ ├── fail1.json │ │ │ ├── fail10.json │ │ │ ├── fail11.json │ │ │ ├── fail12.json │ │ │ ├── fail13.json │ │ │ ├── fail14.json │ │ │ ├── fail15.json │ │ │ ├── fail16.json │ │ │ ├── fail17.json │ │ │ ├── fail18.json │ │ │ ├── fail19.json │ │ │ ├── fail2.json │ │ │ ├── fail20.json │ │ │ ├── fail21.json │ │ │ ├── fail22.json │ │ │ ├── fail23.json │ │ │ ├── fail24.json │ │ │ ├── fail25.json │ │ │ ├── fail26.json │ │ │ ├── fail27.json │ │ │ ├── fail28.json │ │ │ ├── fail29.json │ │ │ ├── fail3.json │ │ │ ├── fail30.json │ │ │ ├── fail31.json │ │ │ ├── fail32.json │ │ │ ├── fail33.json │ │ │ ├── fail4.json │ │ │ ├── fail5.json │ │ │ ├── fail6.json │ │ │ ├── fail7.json │ │ │ ├── fail8.json │ │ │ ├── fail9.json │ │ │ ├── pass1.json │ │ │ ├── pass2.json │ │ │ ├── pass3.json │ │ │ └── readme.txt │ │ ├── types │ │ │ ├── alotofkeys.json │ │ │ ├── booleans.json │ │ │ ├── floats.json │ │ │ ├── guids.json │ │ │ ├── integers.json │ │ │ ├── mixed.json │ │ │ ├── nulls.json │ │ │ ├── paragraphs.json │ │ │ └── readme.txt │ │ └── unittestschema │ │ │ ├── address.json │ │ │ ├── allOf_address.json │ │ │ ├── anyOf_address.json │ │ │ ├── idandref.json │ │ │ └── oneOf_address.json │ ├── contrib │ │ └── natvis │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── rapidjson.natvis │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── Doxyfile.in │ │ ├── Doxyfile.zh-cn.in │ │ ├── diagram │ │ │ ├── architecture.dot │ │ │ ├── architecture.png │ │ │ ├── insituparsing.dot │ │ │ ├── insituparsing.png │ │ │ ├── iterative-parser-states-diagram.dot │ │ │ ├── iterative-parser-states-diagram.png │ │ │ ├── move1.dot │ │ │ ├── move1.png │ │ │ ├── move2.dot │ │ │ ├── move2.png │ │ │ ├── move3.dot │ │ │ ├── move3.png │ │ │ ├── normalparsing.dot │ │ │ ├── normalparsing.png │ │ │ ├── simpledom.dot │ │ │ ├── simpledom.png │ │ │ ├── tutorial.dot │ │ │ ├── tutorial.png │ │ │ ├── utilityclass.dot │ │ │ └── utilityclass.png │ │ ├── dom.md │ │ ├── dom.zh-cn.md │ │ ├── encoding.md │ │ ├── encoding.zh-cn.md │ │ ├── faq.md │ │ ├── faq.zh-cn.md │ │ ├── features.md │ │ ├── features.zh-cn.md │ │ ├── internals.md │ │ ├── internals.zh-cn.md │ │ ├── logo │ │ │ ├── rapidjson.png │ │ │ └── rapidjson.svg │ │ ├── misc │ │ │ ├── DoxygenLayout.xml │ │ │ ├── doxygenextra.css │ │ │ ├── footer.html │ │ │ └── header.html │ │ ├── npm.md │ │ ├── performance.md │ │ ├── performance.zh-cn.md │ │ ├── pointer.md │ │ ├── pointer.zh-cn.md │ │ ├── sax.md │ │ ├── sax.zh-cn.md │ │ ├── schema.md │ │ ├── schema.zh-cn.md │ │ ├── stream.md │ │ ├── stream.zh-cn.md │ │ ├── tutorial.md │ │ └── tutorial.zh-cn.md │ ├── docker │ │ └── debian │ │ │ └── Dockerfile │ ├── example │ │ ├── CMakeLists.txt │ │ ├── archiver │ │ │ ├── archiver.cpp │ │ │ ├── archiver.h │ │ │ └── archivertest.cpp │ │ ├── capitalize │ │ │ └── capitalize.cpp │ │ ├── condense │ │ │ └── condense.cpp │ │ ├── filterkey │ │ │ └── filterkey.cpp │ │ ├── filterkeydom │ │ │ └── filterkeydom.cpp │ │ ├── jsonx │ │ │ └── jsonx.cpp │ │ ├── lookaheadparser │ │ │ └── lookaheadparser.cpp │ │ ├── messagereader │ │ │ └── messagereader.cpp │ │ ├── parsebyparts │ │ │ └── parsebyparts.cpp │ │ ├── pretty │ │ │ └── pretty.cpp │ │ ├── prettyauto │ │ │ └── prettyauto.cpp │ │ ├── schemavalidator │ │ │ └── schemavalidator.cpp │ │ ├── serialize │ │ │ └── serialize.cpp │ │ ├── simpledom │ │ │ └── simpledom.cpp │ │ ├── simplepullreader │ │ │ └── simplepullreader.cpp │ │ ├── simplereader │ │ │ └── simplereader.cpp │ │ ├── simplewriter │ │ │ └── simplewriter.cpp │ │ ├── sortkeys │ │ │ └── sortkeys.cpp │ │ ├── traverseaspointer.cpp │ │ └── tutorial │ │ │ └── tutorial.cpp │ ├── include │ │ └── rapidjson │ │ │ ├── allocators.h │ │ │ ├── cursorstreamwrapper.h │ │ │ ├── document.h │ │ │ ├── encodedstream.h │ │ │ ├── encodings.h │ │ │ ├── error │ │ │ ├── en.h │ │ │ └── error.h │ │ │ ├── filereadstream.h │ │ │ ├── filewritestream.h │ │ │ ├── fwd.h │ │ │ ├── internal │ │ │ ├── biginteger.h │ │ │ ├── clzll.h │ │ │ ├── diyfp.h │ │ │ ├── dtoa.h │ │ │ ├── ieee754.h │ │ │ ├── itoa.h │ │ │ ├── meta.h │ │ │ ├── pow10.h │ │ │ ├── regex.h │ │ │ ├── stack.h │ │ │ ├── strfunc.h │ │ │ ├── strtod.h │ │ │ └── swap.h │ │ │ ├── istreamwrapper.h │ │ │ ├── memorybuffer.h │ │ │ ├── memorystream.h │ │ │ ├── msinttypes │ │ │ ├── inttypes.h │ │ │ └── stdint.h │ │ │ ├── ostreamwrapper.h │ │ │ ├── pointer.h │ │ │ ├── prettywriter.h │ │ │ ├── rapidjson.h │ │ │ ├── reader.h │ │ │ ├── schema.h │ │ │ ├── stream.h │ │ │ ├── stringbuffer.h │ │ │ ├── uri.h │ │ │ └── writer.h │ ├── include_dirs.js │ ├── library.json │ ├── license.txt │ ├── package.json │ ├── rapidjson.autopkg │ ├── readme.md │ ├── readme.zh-cn.md │ ├── test │ │ ├── CMakeLists.txt │ │ ├── perftest │ │ │ ├── CMakeLists.txt │ │ │ ├── misctest.cpp │ │ │ ├── perftest.cpp │ │ │ ├── perftest.h │ │ │ ├── platformtest.cpp │ │ │ ├── rapidjsontest.cpp │ │ │ └── schematest.cpp │ │ ├── unittest │ │ │ ├── CMakeLists.txt │ │ │ ├── allocatorstest.cpp │ │ │ ├── bigintegertest.cpp │ │ │ ├── clzlltest.cpp │ │ │ ├── cursorstreamwrappertest.cpp │ │ │ ├── documenttest.cpp │ │ │ ├── dtoatest.cpp │ │ │ ├── encodedstreamtest.cpp │ │ │ ├── encodingstest.cpp │ │ │ ├── filestreamtest.cpp │ │ │ ├── fwdtest.cpp │ │ │ ├── istreamwrappertest.cpp │ │ │ ├── itoatest.cpp │ │ │ ├── jsoncheckertest.cpp │ │ │ ├── namespacetest.cpp │ │ │ ├── ostreamwrappertest.cpp │ │ │ ├── platformtest.cpp │ │ │ ├── pointertest.cpp │ │ │ ├── prettywritertest.cpp │ │ │ ├── readertest.cpp │ │ │ ├── regextest.cpp │ │ │ ├── schematest.cpp │ │ │ ├── simdtest.cpp │ │ │ ├── strfunctest.cpp │ │ │ ├── stringbuffertest.cpp │ │ │ ├── strtodtest.cpp │ │ │ ├── unittest.cpp │ │ │ ├── unittest.h │ │ │ ├── uritest.cpp │ │ │ ├── valuetest.cpp │ │ │ └── writertest.cpp │ │ └── valgrind.supp │ └── travis-doxygen.sh └── str_view │ ├── str_view.hpp │ └── str_view.natvis └── WorkingDir ├── Data └── Fonts │ ├── DroidSans.ttf │ └── Font Awesome 6 Free-Solid-900.otf ├── LoadSettings.json ├── RuntimeSettings.json ├── Shaders ├── Ambient.hlsl ├── GBuffer.hlsl ├── Include │ ├── Common.hlsl │ ├── LightingCommon.hlsl │ └── ShaderConstants.h ├── Lighting.hlsl └── Postprocessing.hlsl ├── StartupSettings.json └── imgui.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/.gitignore -------------------------------------------------------------------------------- /Doc/Command line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Doc/Command line.txt -------------------------------------------------------------------------------- /Doc/Keyboard shortcuts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Doc/Keyboard shortcuts.txt -------------------------------------------------------------------------------- /Doc/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Doc/Screenshot.jpg -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/README.md -------------------------------------------------------------------------------- /Source/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/.editorconfig -------------------------------------------------------------------------------- /Source/AssimpUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/AssimpUtils.cpp -------------------------------------------------------------------------------- /Source/AssimpUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/AssimpUtils.hpp -------------------------------------------------------------------------------- /Source/BaseUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/BaseUtils.cpp -------------------------------------------------------------------------------- /Source/BaseUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/BaseUtils.hpp -------------------------------------------------------------------------------- /Source/Cameras.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/Cameras.cpp -------------------------------------------------------------------------------- /Source/Cameras.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/Cameras.hpp -------------------------------------------------------------------------------- /Source/CommandList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/CommandList.cpp -------------------------------------------------------------------------------- /Source/CommandList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/CommandList.hpp -------------------------------------------------------------------------------- /Source/ConstantBuffers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/ConstantBuffers.cpp -------------------------------------------------------------------------------- /Source/ConstantBuffers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/ConstantBuffers.hpp -------------------------------------------------------------------------------- /Source/Descriptors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/Descriptors.cpp -------------------------------------------------------------------------------- /Source/Descriptors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/Descriptors.hpp -------------------------------------------------------------------------------- /Source/Formatters.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/Formatters.inl -------------------------------------------------------------------------------- /Source/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/Game.cpp -------------------------------------------------------------------------------- /Source/Game.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/Game.hpp -------------------------------------------------------------------------------- /Source/ImGuiUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/ImGuiUtils.cpp -------------------------------------------------------------------------------- /Source/ImGuiUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/ImGuiUtils.hpp -------------------------------------------------------------------------------- /Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/Main.cpp -------------------------------------------------------------------------------- /Source/Main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/Main.hpp -------------------------------------------------------------------------------- /Source/Mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/Mesh.cpp -------------------------------------------------------------------------------- /Source/Mesh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/Mesh.hpp -------------------------------------------------------------------------------- /Source/MultiFrameRingBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/MultiFrameRingBuffer.hpp -------------------------------------------------------------------------------- /Source/RegEngine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/RegEngine.sln -------------------------------------------------------------------------------- /Source/RegEngine.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/RegEngine.vcxproj -------------------------------------------------------------------------------- /Source/RegEngine.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/RegEngine.vcxproj.filters -------------------------------------------------------------------------------- /Source/RegEngine.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/RegEngine.vcxproj.user -------------------------------------------------------------------------------- /Source/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/Renderer.cpp -------------------------------------------------------------------------------- /Source/Renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/Renderer.hpp -------------------------------------------------------------------------------- /Source/RenderingResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/RenderingResource.cpp -------------------------------------------------------------------------------- /Source/RenderingResource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/RenderingResource.hpp -------------------------------------------------------------------------------- /Source/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/Settings.cpp -------------------------------------------------------------------------------- /Source/Settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/Settings.hpp -------------------------------------------------------------------------------- /Source/Shaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/Shaders.cpp -------------------------------------------------------------------------------- /Source/Shaders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/Shaders.hpp -------------------------------------------------------------------------------- /Source/SmallFileCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/SmallFileCache.cpp -------------------------------------------------------------------------------- /Source/SmallFileCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/SmallFileCache.hpp -------------------------------------------------------------------------------- /Source/Streams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/Streams.cpp -------------------------------------------------------------------------------- /Source/Streams.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/Streams.hpp -------------------------------------------------------------------------------- /Source/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/Texture.cpp -------------------------------------------------------------------------------- /Source/Texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/Texture.hpp -------------------------------------------------------------------------------- /Source/Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/Time.cpp -------------------------------------------------------------------------------- /Source/Time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/Time.hpp -------------------------------------------------------------------------------- /Source/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/Source/packages.config -------------------------------------------------------------------------------- /ThirdParty/D3D12MemoryAllocator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/D3D12MemoryAllocator/README.md -------------------------------------------------------------------------------- /ThirdParty/IconFontCppHeaders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/IconFontCppHeaders/README.md -------------------------------------------------------------------------------- /ThirdParty/IconFontCppHeaders/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/IconFontCppHeaders/licence.txt -------------------------------------------------------------------------------- /ThirdParty/d3dx12/d3dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/d3dx12/d3dx12.h -------------------------------------------------------------------------------- /ThirdParty/dxc_2021_12_08/bin/x64/dxc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/dxc_2021_12_08/bin/x64/dxc.exe -------------------------------------------------------------------------------- /ThirdParty/dxc_2021_12_08/inc/dxcapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/dxc_2021_12_08/inc/dxcapi.h -------------------------------------------------------------------------------- /ThirdParty/glm/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/.appveyor.yml -------------------------------------------------------------------------------- /ThirdParty/glm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/.gitignore -------------------------------------------------------------------------------- /ThirdParty/glm/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/.travis.yml -------------------------------------------------------------------------------- /ThirdParty/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/glm/cmake/glm/glmConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/cmake/glm/glmConfig.cmake -------------------------------------------------------------------------------- /ThirdParty/glm/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/copying.txt -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00001_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00001_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00002_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00002_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00003_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00003_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00004_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00004_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00005_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00005_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00006_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00006_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00007.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00007.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00007_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00007_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00008.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00008.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00008_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00008_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00009.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00009.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00009_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00009_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00010.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00010.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00010_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00010_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00011.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00011.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00011_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00011_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00012.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00012.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00012_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00012_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00013.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00013.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00013_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00013_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00014.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00014.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00014_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00014_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00015.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00015.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00015_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00015_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00016.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00016.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00016_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00016_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00017.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00017.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00017_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00017_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00018.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00018.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00018_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00018_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00019_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00019_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00020_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00020_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00021.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00021.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00021_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00021_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00022.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00022.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00022_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00022_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00023.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00023.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00023_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00023_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00024.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00024.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00024_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00024_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00025.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00025_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00025_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00026.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00026.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00026_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00026_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00027.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00027.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00027_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00027_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00028.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00028.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00028_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00028_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00029.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00029.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00029_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00029_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00030.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00030.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00030_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00030_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00031.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00031.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00031_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00031_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00032.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00032.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00032_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00032_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00033.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00033.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00033_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00033_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00034.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00034.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00034_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00034_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00035_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00035_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00036.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00036.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00036_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00036_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00037.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00037.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00037_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00037_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00038.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00038.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00038_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00038_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00039.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00039.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00039_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00039_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00040.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00040.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00040_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00040_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00041.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00041.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00041_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00041_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00042.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00042.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00042_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00042_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00043.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00043.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00043_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00043_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00044.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00044.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00044_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00044_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00045.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00045.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00045_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00045_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00046.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00046.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00046_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00046_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00047_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00047_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00048.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00048.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00048_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00048_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00049.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00049.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00049_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00049_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00050.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00050.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00050_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00050_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00051.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00051.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00051_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00051_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00052.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00052.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00052_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00052_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00053.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00053.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00053_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00053_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00054.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00054.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00054_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00054_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00055.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00055.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00055_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00055_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00056.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00056.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00056_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00056_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00057.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00057.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00057_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00057_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00058.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00058.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00058_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00058_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00059.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00059.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00059_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00059_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00060.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00060.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00060_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00060_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00061.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00061.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00061_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00061_source.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00062.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00062.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00063.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00063.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00064.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00064.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00065.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00065.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00066.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00066.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00067.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00067.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00068.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00068.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00069.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00069.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00070.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00070.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00071.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00071.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00072.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00072.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00073.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00073.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00074.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00074.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00075.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00075.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00076.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00076.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00077.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00077.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00078.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00078.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00079.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00079.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00080.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00080.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00081.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00081.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00082.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00082.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00083.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00083.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00084.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00084.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00085.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00085.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00086.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00086.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00087.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00087.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00088.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00088.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00089.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00089.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00090.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00090.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00091.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00091.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00092.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00092.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00093.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00093.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00094.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00094.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00096.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00096.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00097.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00097.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00098.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00098.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00099.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00099.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00100.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00100.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00101.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00101.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00102.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00102.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00103.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00103.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00104.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00104.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00105.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00105.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00106.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00106.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00107.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00107.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00108.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00108.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00109.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00109.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00110.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00110.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00111.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00111.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00112.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00112.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00113.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00113.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00114.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00114.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00115.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00115.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00116.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00116.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00117.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00117.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00118.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00118.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00119.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00119.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00120.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00120.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00121.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00121.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00122.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00122.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00123.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00123.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00125.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00125.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00126.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00126.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00127.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00127.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00128.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00128.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00129.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00129.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00130.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00130.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00131.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00131.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00132.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00132.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00133.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00133.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00134.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00134.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00135.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00135.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00136.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00136.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00137.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00137.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00138.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00138.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00139.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00139.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00140.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00140.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00141.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00141.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00142.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00142.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00143.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00143.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00144.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00144.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00145.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00145.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00146.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00146.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00147.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00147.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00148.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00148.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00149.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00149.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00150.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00150.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00151.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00151.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00152.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00152.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00154.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00154.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00155.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00155.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00156.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00156.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00157.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00157.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00158.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00158.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00159.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00159.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00160.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00160.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00161.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00161.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00162.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00162.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00165.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00165.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00166.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00166.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00167.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00167.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00168.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00168.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00169.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00169.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00170.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00170.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00171.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00171.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00172.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00172.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00173.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00173.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00174.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00174.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00175.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00175.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00176.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00176.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00177.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00177.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00178.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00178.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00179.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00179.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00180.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00180.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00181.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00181.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00182.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00182.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00183.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00183.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00184.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00184.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00185.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00185.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00186.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00186.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00187.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00187.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00188.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00188.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00189.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00189.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00190.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00190.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00191.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00191.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00192.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00192.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00193.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00193.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00194.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00194.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00195.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00195.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00196.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00196.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00197.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00197.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00198.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00198.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00199.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00199.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00200.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00200.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00201.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00201.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00202.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00202.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00203.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00203.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00204.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00204.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00205.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00205.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00206.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00206.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00207.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00207.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00208.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00208.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00209.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00209.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00210.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00210.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00211.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00211.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00212.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00212.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00213.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00213.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00214.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00214.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00215.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00215.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00216.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00216.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00217.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00217.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00218.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00218.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00219.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00219.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00220.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00220.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00221.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00221.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00222.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00222.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00223.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00223.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00224.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00224.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00225.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00225.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00226.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00226.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00227.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00227.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00228.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00228.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00229.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00229.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00230.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00230.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00231.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00231.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00232.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00232.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00233.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00233.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00234.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00234.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00235.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00235.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00241.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00241.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00242.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00242.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00243.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00243.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00244.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00244.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00245.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00245.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00246.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00246.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00247.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00247.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00248.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00248.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00249.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00249.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00250.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00250.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00251.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00251.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00252.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00252.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00253.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00253.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00254.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00254.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00255.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00255.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00256.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00256.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00257.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00257.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00258.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00258.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00259.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00259.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00260.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00260.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00261.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00261.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00262.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00262.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00263.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00263.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00264.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00264.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00265.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00265.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00266.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00266.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00267.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00267.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00268.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00268.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00269.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00269.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00270.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00270.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00271.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00271.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00272.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00272.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00273.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00273.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00274.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00274.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00275.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00275.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00276.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00276.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00277.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00277.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00278.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00278.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00279.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00279.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00280.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00280.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00281.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00281.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00282.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00282.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00283.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00283.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00284.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00284.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00285.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00285.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00286.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00286.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00287.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00287.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00288.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00288.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00289.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00289.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00290.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00290.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00291.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00291.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00292.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00292.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00293.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00293.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00294.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00294.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00295.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00295.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00296.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00296.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00297.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00297.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00298.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00298.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00299.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00299.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00300.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00300.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00301.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00301.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00302.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00302.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00303.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00303.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00304.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00304.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00305.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00305.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00306.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00306.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00307.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00307.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00308.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00308.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00309.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00309.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00310.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00310.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00311.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00311.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00312.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00312.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00313.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00313.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00314.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00314.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00315.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00315.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00316.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00316.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00317.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00317.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00318.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00318.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00319.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00319.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00320.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00320.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00321.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00321.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00322.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00322.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00323.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00323.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00324.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00324.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00325.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00325.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00326.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00326.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00327.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00327.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00328.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00328.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00329.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00329.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00330.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00330.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00331.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00331.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00332.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00332.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00333.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00333.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00334.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00334.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00335.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00335.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00336.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00336.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00337.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00337.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00338.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00338.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00339.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00339.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00340.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00340.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00341.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00341.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00342.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00342.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00343.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00343.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00344.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00344.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00345.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00345.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00346.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00346.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00347.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00347.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00348.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00348.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00349.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00349.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00350.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00350.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00351.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00351.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00352.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00352.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00353.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00353.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00354.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00354.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00355.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00355.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00356.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00356.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00357.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00357.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00358.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00358.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00359.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00359.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00360.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00360.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00361.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00361.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00362.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00362.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00363.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00363.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00364.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00364.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00365.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00365.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00366.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00366.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00367.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00367.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00368.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00368.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00369.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00369.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00370.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00370.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00371.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00371.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00372.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00372.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00373.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00373.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/a00374.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/a00374.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/arrowdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/arrowdown.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/arrowright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/arrowright.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/bc_s.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/bdwn.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/closed.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/doc.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/doxygen.css -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/doxygen.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/dynsections.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/files.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/folderclosed.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/folderopen.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/index.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/jquery.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/logo-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/logo-mini.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/modules.html -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/nav_f.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/nav_g.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/nav_h.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/open.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/search/all_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/search/all_0.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/search/all_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/search/all_1.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/search/all_10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/search/all_10.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/search/all_11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/search/all_11.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/search/all_12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/search/all_12.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/search/all_13.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/search/all_13.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/search/all_14.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/search/all_14.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/search/all_15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/search/all_15.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/search/all_16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/search/all_16.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/search/all_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/search/all_2.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/search/all_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/search/all_3.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/search/all_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/search/all_4.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/search/all_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/search/all_5.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/search/all_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/search/all_6.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/search/all_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/search/all_7.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/search/all_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/search/all_8.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/search/all_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/search/all_9.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/search/all_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/search/all_a.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/search/all_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/search/all_b.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/search/all_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/search/all_c.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/search/all_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/search/all_d.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/search/all_e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/search/all_e.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/search/all_f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/search/all_f.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/search/close.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/search/search.js -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/splitbar.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/sync_off.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/sync_on.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/tab_a.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/tab_b.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/tab_h.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/tab_s.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/api/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/api/tabs.css -------------------------------------------------------------------------------- /ThirdParty/glm/doc/man.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/man.doxy -------------------------------------------------------------------------------- /ThirdParty/glm/doc/manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/manual.pdf -------------------------------------------------------------------------------- /ThirdParty/glm/doc/manual/g-truc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/manual/g-truc.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/manual/logo-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/manual/logo-mini.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/theme/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/theme/bc_s.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/theme/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/theme/bdwn.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/theme/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/theme/closed.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/theme/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/theme/doc.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/theme/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/theme/doxygen.css -------------------------------------------------------------------------------- /ThirdParty/glm/doc/theme/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/theme/doxygen.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/theme/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/theme/folderopen.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/theme/logo-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/theme/logo-mini.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/theme/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/theme/nav_f.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/theme/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/theme/nav_g.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/theme/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/theme/nav_h.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/theme/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/theme/open.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/theme/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/theme/splitbar.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/theme/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/theme/sync_off.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/theme/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/theme/sync_on.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/theme/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/theme/tab_a.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/theme/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/theme/tab_b.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/theme/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/theme/tab_h.png -------------------------------------------------------------------------------- /ThirdParty/glm/doc/theme/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/doc/theme/tab_s.png -------------------------------------------------------------------------------- /ThirdParty/glm/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/glm/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/common.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/detail/_features.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ThirdParty/glm/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/detail/glm.cpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/detail/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/detail/qualifier.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/detail/setup.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/detail/type_half.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/detail/type_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/detail/type_quat.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/detail/type_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/detail/type_quat.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/exponential.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/ext.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/ext/scalar_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ThirdParty/glm/glm/ext/scalar_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/ext/scalar_ulp.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/ext/scalar_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/ext/scalar_ulp.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/ext/vector_bool1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/ext/vector_bool1.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/ext/vector_bool2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/ext/vector_bool2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/ext/vector_bool3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/ext/vector_bool3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/ext/vector_bool4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/ext/vector_bool4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/ext/vector_int1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/ext/vector_int1.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/ext/vector_int2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/ext/vector_int2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/ext/vector_int3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/ext/vector_int3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/ext/vector_int4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/ext/vector_int4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/ext/vector_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ThirdParty/glm/glm/ext/vector_uint1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/ext/vector_uint1.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/ext/vector_uint2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/ext/vector_uint2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/ext/vector_uint3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/ext/vector_uint3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/ext/vector_uint4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/ext/vector_uint4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/ext/vector_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/ext/vector_ulp.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/ext/vector_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/ext/vector_ulp.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/geometric.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/glm.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/constants.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/integer.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/noise.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/packing.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/random.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/random.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/round.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/round.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/bit.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/common.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/common.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/easing.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/extend.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/functions.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/hash.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/integer.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/io.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/io.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/norm.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/normal.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/projection.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/range.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/spline.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/texture.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/transform.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /ThirdParty/glm/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/integer.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/mat2x2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/mat2x3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/mat2x4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/mat3x2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/mat3x3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/mat3x4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/mat4x2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/mat4x3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/mat4x4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/matrix.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/packing.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/simd/common.h -------------------------------------------------------------------------------- /ThirdParty/glm/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/simd/exponential.h -------------------------------------------------------------------------------- /ThirdParty/glm/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/simd/geometric.h -------------------------------------------------------------------------------- /ThirdParty/glm/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/simd/integer.h -------------------------------------------------------------------------------- /ThirdParty/glm/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/simd/matrix.h -------------------------------------------------------------------------------- /ThirdParty/glm/glm/simd/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/simd/neon.h -------------------------------------------------------------------------------- /ThirdParty/glm/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/simd/packing.h -------------------------------------------------------------------------------- /ThirdParty/glm/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/simd/platform.h -------------------------------------------------------------------------------- /ThirdParty/glm/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /ThirdParty/glm/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/trigonometric.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/vec2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/vec3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/glm/vec4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/manual.md -------------------------------------------------------------------------------- /ThirdParty/glm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/readme.md -------------------------------------------------------------------------------- /ThirdParty/glm/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/glm/test/bug/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | glmCreateTestGTC(bug_ms_vec_static) 2 | -------------------------------------------------------------------------------- /ThirdParty/glm/test/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/core/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/glm/test/ext/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/ext/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/glm/test/ext/ext_vec1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/ext/ext_vec1.cpp -------------------------------------------------------------------------------- /ThirdParty/glm/test/glm.cppcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/glm.cppcheck -------------------------------------------------------------------------------- /ThirdParty/glm/test/gtc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/gtc/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/glm/test/gtc/gtc_epsilon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/gtc/gtc_epsilon.cpp -------------------------------------------------------------------------------- /ThirdParty/glm/test/gtc/gtc_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/gtc/gtc_integer.cpp -------------------------------------------------------------------------------- /ThirdParty/glm/test/gtc/gtc_noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/gtc/gtc_noise.cpp -------------------------------------------------------------------------------- /ThirdParty/glm/test/gtc/gtc_packing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/gtc/gtc_packing.cpp -------------------------------------------------------------------------------- /ThirdParty/glm/test/gtc/gtc_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/gtc/gtc_random.cpp -------------------------------------------------------------------------------- /ThirdParty/glm/test/gtc/gtc_round.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/gtc/gtc_round.cpp -------------------------------------------------------------------------------- /ThirdParty/glm/test/gtc/gtc_ulp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/gtc/gtc_ulp.cpp -------------------------------------------------------------------------------- /ThirdParty/glm/test/gtc/gtc_vec1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/gtc/gtc_vec1.cpp -------------------------------------------------------------------------------- /ThirdParty/glm/test/gtx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/gtx/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/glm/test/gtx/gtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/gtx/gtx.cpp -------------------------------------------------------------------------------- /ThirdParty/glm/test/gtx/gtx_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/gtx/gtx_common.cpp -------------------------------------------------------------------------------- /ThirdParty/glm/test/gtx/gtx_easing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/gtx/gtx_easing.cpp -------------------------------------------------------------------------------- /ThirdParty/glm/test/gtx/gtx_extend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/gtx/gtx_extend.cpp -------------------------------------------------------------------------------- /ThirdParty/glm/test/gtx/gtx_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/gtx/gtx_integer.cpp -------------------------------------------------------------------------------- /ThirdParty/glm/test/gtx/gtx_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/gtx/gtx_io.cpp -------------------------------------------------------------------------------- /ThirdParty/glm/test/gtx/gtx_load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/gtx/gtx_load.cpp -------------------------------------------------------------------------------- /ThirdParty/glm/test/gtx/gtx_norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/gtx/gtx_norm.cpp -------------------------------------------------------------------------------- /ThirdParty/glm/test/gtx/gtx_normal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/gtx/gtx_normal.cpp -------------------------------------------------------------------------------- /ThirdParty/glm/test/gtx/gtx_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/gtx/gtx_random.cpp -------------------------------------------------------------------------------- /ThirdParty/glm/test/gtx/gtx_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/gtx/gtx_range.cpp -------------------------------------------------------------------------------- /ThirdParty/glm/test/gtx/gtx_spline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/gtx/gtx_spline.cpp -------------------------------------------------------------------------------- /ThirdParty/glm/test/gtx/gtx_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/gtx/gtx_texture.cpp -------------------------------------------------------------------------------- /ThirdParty/glm/test/gtx/gtx_wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/gtx/gtx_wrap.cpp -------------------------------------------------------------------------------- /ThirdParty/glm/test/perf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/test/perf/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/glm/util/autoexp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/util/autoexp.txt -------------------------------------------------------------------------------- /ThirdParty/glm/util/autoexp.vc2010.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/util/autoexp.vc2010.dat -------------------------------------------------------------------------------- /ThirdParty/glm/util/glm.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/util/glm.natvis -------------------------------------------------------------------------------- /ThirdParty/glm/util/usertype.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/glm/util/usertype.dat -------------------------------------------------------------------------------- /ThirdParty/imgui-1.87/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/imgui-1.87/.editorconfig -------------------------------------------------------------------------------- /ThirdParty/imgui-1.87/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/imgui-1.87/.gitattributes -------------------------------------------------------------------------------- /ThirdParty/imgui-1.87/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/imgui-1.87/.gitignore -------------------------------------------------------------------------------- /ThirdParty/imgui-1.87/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/imgui-1.87/LICENSE.txt -------------------------------------------------------------------------------- /ThirdParty/imgui-1.87/docs/BACKENDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/imgui-1.87/docs/BACKENDS.md -------------------------------------------------------------------------------- /ThirdParty/imgui-1.87/docs/EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/imgui-1.87/docs/EXAMPLES.md -------------------------------------------------------------------------------- /ThirdParty/imgui-1.87/docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/imgui-1.87/docs/FAQ.md -------------------------------------------------------------------------------- /ThirdParty/imgui-1.87/docs/FONTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/imgui-1.87/docs/FONTS.md -------------------------------------------------------------------------------- /ThirdParty/imgui-1.87/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/imgui-1.87/docs/README.md -------------------------------------------------------------------------------- /ThirdParty/imgui-1.87/docs/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/imgui-1.87/docs/TODO.txt -------------------------------------------------------------------------------- /ThirdParty/imgui-1.87/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/imgui-1.87/imconfig.h -------------------------------------------------------------------------------- /ThirdParty/imgui-1.87/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/imgui-1.87/imgui.cpp -------------------------------------------------------------------------------- /ThirdParty/imgui-1.87/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/imgui-1.87/imgui.h -------------------------------------------------------------------------------- /ThirdParty/imgui-1.87/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/imgui-1.87/imgui_demo.cpp -------------------------------------------------------------------------------- /ThirdParty/imgui-1.87/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/imgui-1.87/imgui_draw.cpp -------------------------------------------------------------------------------- /ThirdParty/imgui-1.87/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/imgui-1.87/imgui_internal.h -------------------------------------------------------------------------------- /ThirdParty/imgui-1.87/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/imgui-1.87/imgui_tables.cpp -------------------------------------------------------------------------------- /ThirdParty/imgui-1.87/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/imgui-1.87/imgui_widgets.cpp -------------------------------------------------------------------------------- /ThirdParty/imgui-1.87/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/imgui-1.87/imstb_rectpack.h -------------------------------------------------------------------------------- /ThirdParty/imgui-1.87/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/imgui-1.87/imstb_textedit.h -------------------------------------------------------------------------------- /ThirdParty/imgui-1.87/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/imgui-1.87/imstb_truetype.h -------------------------------------------------------------------------------- /ThirdParty/imgui-1.87/misc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/imgui-1.87/misc/README.txt -------------------------------------------------------------------------------- /ThirdParty/rapidjson/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/.gitattributes -------------------------------------------------------------------------------- /ThirdParty/rapidjson/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/.gitignore -------------------------------------------------------------------------------- /ThirdParty/rapidjson/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/.gitmodules -------------------------------------------------------------------------------- /ThirdParty/rapidjson/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/.travis.yml -------------------------------------------------------------------------------- /ThirdParty/rapidjson/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/CHANGELOG.md -------------------------------------------------------------------------------- /ThirdParty/rapidjson/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/rapidjson/RapidJSON.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/RapidJSON.pc.in -------------------------------------------------------------------------------- /ThirdParty/rapidjson/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/appveyor.yml -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/data/abcde.txt: -------------------------------------------------------------------------------- 1 | abcde -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/data/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/bin/data/menu.json -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail1.json: -------------------------------------------------------------------------------- 1 | "A JSON payload should be an object or array, not a string." -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail11.json: -------------------------------------------------------------------------------- 1 | {"Illegal expression": 1 + 2} -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail12.json: -------------------------------------------------------------------------------- 1 | {"Illegal invocation": alert()} -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail13.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot have leading zeroes": 013} -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail14.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot be hex": 0x14} -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail15.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \x15"] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail16.json: -------------------------------------------------------------------------------- 1 | [\naked] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail17.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \017"] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail19.json: -------------------------------------------------------------------------------- 1 | {"Missing colon" null} -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail2.json: -------------------------------------------------------------------------------- 1 | ["Unclosed array" -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail20.json: -------------------------------------------------------------------------------- 1 | {"Double colon":: null} -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail21.json: -------------------------------------------------------------------------------- 1 | {"Comma instead of colon", null} -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail22.json: -------------------------------------------------------------------------------- 1 | ["Colon instead of comma": false] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail23.json: -------------------------------------------------------------------------------- 1 | ["Bad value", truth] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail24.json: -------------------------------------------------------------------------------- 1 | ['single quote'] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail25.json: -------------------------------------------------------------------------------- 1 | [" tab character in string "] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail27.json: -------------------------------------------------------------------------------- 1 | ["line 2 | break"] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail28.json: -------------------------------------------------------------------------------- 1 | ["line\ 2 | break"] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail29.json: -------------------------------------------------------------------------------- 1 | [0e] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail30.json: -------------------------------------------------------------------------------- 1 | [0e+] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail31.json: -------------------------------------------------------------------------------- 1 | [0e+-1] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail32.json: -------------------------------------------------------------------------------- 1 | {"Comma instead if closing brace": true, -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail33.json: -------------------------------------------------------------------------------- 1 | ["mismatch"} -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail4.json: -------------------------------------------------------------------------------- 1 | ["extra comma",] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail5.json: -------------------------------------------------------------------------------- 1 | ["double extra comma",,] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail6.json: -------------------------------------------------------------------------------- 1 | [ , "<-- missing value"] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail7.json: -------------------------------------------------------------------------------- 1 | ["Comma after the close"], -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail8.json: -------------------------------------------------------------------------------- 1 | ["Extra close"]] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/bin/jsonchecker/fail9.json: -------------------------------------------------------------------------------- 1 | {"Extra comma": true,} -------------------------------------------------------------------------------- /ThirdParty/rapidjson/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/doc/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/rapidjson/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/doc/Doxyfile.in -------------------------------------------------------------------------------- /ThirdParty/rapidjson/doc/dom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/doc/dom.md -------------------------------------------------------------------------------- /ThirdParty/rapidjson/doc/dom.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/doc/dom.zh-cn.md -------------------------------------------------------------------------------- /ThirdParty/rapidjson/doc/encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/doc/encoding.md -------------------------------------------------------------------------------- /ThirdParty/rapidjson/doc/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/doc/faq.md -------------------------------------------------------------------------------- /ThirdParty/rapidjson/doc/faq.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/doc/faq.zh-cn.md -------------------------------------------------------------------------------- /ThirdParty/rapidjson/doc/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/doc/features.md -------------------------------------------------------------------------------- /ThirdParty/rapidjson/doc/internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/doc/internals.md -------------------------------------------------------------------------------- /ThirdParty/rapidjson/doc/npm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/doc/npm.md -------------------------------------------------------------------------------- /ThirdParty/rapidjson/doc/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/doc/performance.md -------------------------------------------------------------------------------- /ThirdParty/rapidjson/doc/pointer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/doc/pointer.md -------------------------------------------------------------------------------- /ThirdParty/rapidjson/doc/sax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/doc/sax.md -------------------------------------------------------------------------------- /ThirdParty/rapidjson/doc/sax.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/doc/sax.zh-cn.md -------------------------------------------------------------------------------- /ThirdParty/rapidjson/doc/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/doc/schema.md -------------------------------------------------------------------------------- /ThirdParty/rapidjson/doc/stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/doc/stream.md -------------------------------------------------------------------------------- /ThirdParty/rapidjson/doc/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/doc/tutorial.md -------------------------------------------------------------------------------- /ThirdParty/rapidjson/include_dirs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/include_dirs.js -------------------------------------------------------------------------------- /ThirdParty/rapidjson/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/library.json -------------------------------------------------------------------------------- /ThirdParty/rapidjson/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/license.txt -------------------------------------------------------------------------------- /ThirdParty/rapidjson/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/package.json -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson.autopkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/rapidjson.autopkg -------------------------------------------------------------------------------- /ThirdParty/rapidjson/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/readme.md -------------------------------------------------------------------------------- /ThirdParty/rapidjson/readme.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/readme.zh-cn.md -------------------------------------------------------------------------------- /ThirdParty/rapidjson/test/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/test/valgrind.supp -------------------------------------------------------------------------------- /ThirdParty/rapidjson/travis-doxygen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/rapidjson/travis-doxygen.sh -------------------------------------------------------------------------------- /ThirdParty/str_view/str_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/str_view/str_view.hpp -------------------------------------------------------------------------------- /ThirdParty/str_view/str_view.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/ThirdParty/str_view/str_view.natvis -------------------------------------------------------------------------------- /WorkingDir/Data/Fonts/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/WorkingDir/Data/Fonts/DroidSans.ttf -------------------------------------------------------------------------------- /WorkingDir/LoadSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/WorkingDir/LoadSettings.json -------------------------------------------------------------------------------- /WorkingDir/RuntimeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/WorkingDir/RuntimeSettings.json -------------------------------------------------------------------------------- /WorkingDir/Shaders/Ambient.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/WorkingDir/Shaders/Ambient.hlsl -------------------------------------------------------------------------------- /WorkingDir/Shaders/GBuffer.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/WorkingDir/Shaders/GBuffer.hlsl -------------------------------------------------------------------------------- /WorkingDir/Shaders/Include/Common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/WorkingDir/Shaders/Include/Common.hlsl -------------------------------------------------------------------------------- /WorkingDir/Shaders/Lighting.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/WorkingDir/Shaders/Lighting.hlsl -------------------------------------------------------------------------------- /WorkingDir/Shaders/Postprocessing.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/WorkingDir/Shaders/Postprocessing.hlsl -------------------------------------------------------------------------------- /WorkingDir/StartupSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/WorkingDir/StartupSettings.json -------------------------------------------------------------------------------- /WorkingDir/imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawickiap/RegEngine/HEAD/WorkingDir/imgui.ini --------------------------------------------------------------------------------