├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake └── modules │ ├── AddSubLibrary.cmake │ └── FindDependency.cmake ├── external ├── catch-1.1 │ ├── LICENSE_1_0.txt │ └── catch.hpp ├── fastdxt │ ├── 2dxt.cpp │ ├── dxt.cpp │ ├── dxt.h │ ├── intrinsic.cpp │ ├── libdxt.cpp │ ├── libdxt.h │ ├── util.cpp │ └── util.h ├── glbinding-2.0.0 │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── cginternals-logo.png │ ├── cmake │ │ ├── CompileOptions.cmake │ │ ├── ComponentInstall.cmake │ │ ├── Custom.cmake │ │ ├── FindGLEW.cmake │ │ ├── FindGLFW.cmake │ │ ├── GetGitRevisionDescription.cmake │ │ ├── GetGitRevisionDescription.cmake.in │ │ └── RuntimeDependencies.cmake │ ├── codegeneration │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── generate.sh │ │ ├── gl.revision │ │ ├── gl.xml │ │ ├── glbinding_features.h │ │ ├── patch.xml │ │ ├── queries.xlsx │ │ ├── scripts │ │ │ ├── .gitignore │ │ │ ├── binding.py │ │ │ ├── classes │ │ │ │ ├── .gitignore │ │ │ │ ├── Command.py │ │ │ │ ├── Enum.py │ │ │ │ ├── Extension.py │ │ │ │ ├── Feature.py │ │ │ │ ├── Type.py │ │ │ │ └── __init__.py │ │ │ ├── context.py │ │ │ ├── gen_bitfields.py │ │ │ ├── gen_booleans.py │ │ │ ├── gen_enums.py │ │ │ ├── gen_extensions.py │ │ │ ├── gen_features.py │ │ │ ├── gen_functions.py │ │ │ ├── gen_types.py │ │ │ ├── gen_values.py │ │ │ ├── generate.py │ │ │ ├── templates │ │ │ │ ├── AllVersions_test.cpp.tpl │ │ │ │ ├── Binding.h.tpl │ │ │ │ ├── Binding_list.cpp.tpl │ │ │ │ ├── Binding_objects.cpp.tpl │ │ │ │ ├── Meta.h.tpl │ │ │ │ ├── Meta_BitfieldsByString.cpp.tpl │ │ │ │ ├── Meta_BooleansByString.cpp.tpl │ │ │ │ ├── Meta_EnumsByString.cpp.tpl │ │ │ │ ├── Meta_ExtensionsByFunctionString.cpp.tpl │ │ │ │ ├── Meta_ExtensionsByString.cpp.tpl │ │ │ │ ├── Meta_FunctionStringsByExtension.cpp.tpl │ │ │ │ ├── Meta_Maps.h.tpl │ │ │ │ ├── Meta_ReqVersionsByExtension.cpp.tpl │ │ │ │ ├── Meta_StringsByBitfield.cpp.tpl │ │ │ │ ├── Meta_StringsByBoolean.cpp.tpl │ │ │ │ ├── Meta_StringsByEnum.cpp.tpl │ │ │ │ ├── Meta_StringsByExtension.cpp.tpl │ │ │ │ ├── Meta_getStringByBitfield.cpp.tpl │ │ │ │ ├── Version_ValidVersions.cpp.tpl │ │ │ │ ├── bitfield.h.tpl │ │ │ │ ├── bitfieldF.h.tpl │ │ │ │ ├── boolean.h.tpl │ │ │ │ ├── booleanF.h.tpl │ │ │ │ ├── enum.h.tpl │ │ │ │ ├── enumF.h.tpl │ │ │ │ ├── extension.h.tpl │ │ │ │ ├── functions.cpp.tpl │ │ │ │ ├── functions.h.tpl │ │ │ │ ├── functionsF.h.tpl │ │ │ │ ├── gl.h.tpl │ │ │ │ ├── glF.h.tpl │ │ │ │ ├── glrevision.h.tpl │ │ │ │ ├── partials │ │ │ │ │ ├── general_paramSignature.tpl │ │ │ │ │ ├── general_paramSignatureNs.tpl │ │ │ │ │ ├── general_params.tpl │ │ │ │ │ ├── general_type.tpl │ │ │ │ │ ├── general_typeNs.tpl │ │ │ │ │ ├── types_addable.cpp.tpl │ │ │ │ │ ├── types_addable.h.tpl │ │ │ │ │ ├── types_bitOperatable.cpp.tpl │ │ │ │ │ ├── types_bitOperatable.h.tpl │ │ │ │ │ ├── types_bitfieldStreamable.cpp.tpl │ │ │ │ │ ├── types_bitfieldStreamable.h.tpl │ │ │ │ │ ├── types_comparable.cpp.tpl │ │ │ │ │ ├── types_comparable.h.tpl │ │ │ │ │ ├── types_hashable.cpp.tpl │ │ │ │ │ ├── types_hashable.h.tpl │ │ │ │ │ ├── types_streamable.cpp.tpl │ │ │ │ │ └── types_streamable.h.tpl │ │ │ │ ├── types.cpp.tpl │ │ │ │ ├── types.h.tpl │ │ │ │ ├── typesF.h.tpl │ │ │ │ ├── values.h.tpl │ │ │ │ └── valuesF.h.tpl │ │ │ └── update.py │ │ └── update.sh │ ├── configure │ ├── glbinding-config.cmake │ ├── glbinding-logo.png │ ├── glbinding-logo.svg │ └── source │ │ ├── CMakeLists.txt │ │ ├── glbinding │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── glbinding │ │ │ │ ├── AbstractFunction.h │ │ │ │ ├── AbstractValue.h │ │ │ │ ├── Binding.h │ │ │ │ ├── CallbackMask.h │ │ │ │ ├── ContextHandle.h │ │ │ │ ├── ContextInfo.h │ │ │ │ ├── Function.h │ │ │ │ ├── Function.hpp │ │ │ │ ├── FunctionCall.h │ │ │ │ ├── Meta.h │ │ │ │ ├── ProcAddress.h │ │ │ │ ├── SharedBitfield.h │ │ │ │ ├── SharedBitfield.hpp │ │ │ │ ├── Value.h │ │ │ │ ├── Value.hpp │ │ │ │ ├── Version.h │ │ │ │ ├── callbacks.h │ │ │ │ ├── gl │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── extension.h │ │ │ │ ├── functions-patches.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl10 │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl10ext │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl11 │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl11ext │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl12 │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl12ext │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl13 │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl13ext │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl14 │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl14ext │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl15 │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl15ext │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl20 │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl20ext │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl21 │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl21ext │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl30 │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl30ext │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl31 │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl31ext │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl32 │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl32core │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl32ext │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl33 │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl33core │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl33ext │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl40 │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl40core │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl40ext │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl41 │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl41core │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl41ext │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl42 │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl42core │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl42ext │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl43 │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl43core │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl43ext │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl44 │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl44core │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl44ext │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl45 │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl45core │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── gl45ext │ │ │ │ ├── bitfield.h │ │ │ │ ├── boolean.h │ │ │ │ ├── enum.h │ │ │ │ ├── functions.h │ │ │ │ ├── gl.h │ │ │ │ ├── types.h │ │ │ │ └── values.h │ │ │ │ ├── logging.h │ │ │ │ └── nogl.h │ │ └── source │ │ │ ├── AbstractFunction.cpp │ │ │ ├── AbstractValue.cpp │ │ │ ├── Binding.cpp │ │ │ ├── Binding_list.cpp │ │ │ ├── Binding_objects_0.cpp │ │ │ ├── Binding_objects_a.cpp │ │ │ ├── Binding_objects_b.cpp │ │ │ ├── Binding_objects_c.cpp │ │ │ ├── Binding_objects_d.cpp │ │ │ ├── Binding_objects_e.cpp │ │ │ ├── Binding_objects_f.cpp │ │ │ ├── Binding_objects_g.cpp │ │ │ ├── Binding_objects_h.cpp │ │ │ ├── Binding_objects_i.cpp │ │ │ ├── Binding_objects_j.cpp │ │ │ ├── Binding_objects_k.cpp │ │ │ ├── Binding_objects_l.cpp │ │ │ ├── Binding_objects_m.cpp │ │ │ ├── Binding_objects_n.cpp │ │ │ ├── Binding_objects_o.cpp │ │ │ ├── Binding_objects_p.cpp │ │ │ ├── Binding_objects_q.cpp │ │ │ ├── Binding_objects_r.cpp │ │ │ ├── Binding_objects_s.cpp │ │ │ ├── Binding_objects_t.cpp │ │ │ ├── Binding_objects_u.cpp │ │ │ ├── Binding_objects_v.cpp │ │ │ ├── Binding_objects_w.cpp │ │ │ ├── Binding_objects_x.cpp │ │ │ ├── Binding_objects_y.cpp │ │ │ ├── Binding_objects_z.cpp │ │ │ ├── Binding_pch.cpp │ │ │ ├── Binding_pch.h │ │ │ ├── CallbackMask.cpp │ │ │ ├── ContextHandle.cpp │ │ │ ├── ContextInfo.cpp │ │ │ ├── FunctionCall.cpp │ │ │ ├── Meta.cpp │ │ │ ├── Meta_BitfieldsByString.cpp │ │ │ ├── Meta_BooleansByString.cpp │ │ │ ├── Meta_EnumsByString.cpp │ │ │ ├── Meta_ExtensionsByFunctionString.cpp │ │ │ ├── Meta_ExtensionsByString.cpp │ │ │ ├── Meta_FunctionStringsByExtension.cpp │ │ │ ├── Meta_Maps.h │ │ │ ├── Meta_ReqVersionsByExtension.cpp │ │ │ ├── Meta_StringsByBitfield.cpp │ │ │ ├── Meta_StringsByBoolean.cpp │ │ │ ├── Meta_StringsByEnum.cpp │ │ │ ├── Meta_StringsByExtension.cpp │ │ │ ├── Meta_getStringByBitfield.cpp │ │ │ ├── ProcAddress.cpp │ │ │ ├── RingBuffer.h │ │ │ ├── RingBuffer.hpp │ │ │ ├── Value.cpp │ │ │ ├── Version.cpp │ │ │ ├── Version_ValidVersions.cpp │ │ │ ├── callbacks.cpp │ │ │ ├── callbacks_private.h │ │ │ ├── gl │ │ │ ├── functions-patches.cpp │ │ │ ├── functions_0.cpp │ │ │ ├── functions_a.cpp │ │ │ ├── functions_b.cpp │ │ │ ├── functions_c.cpp │ │ │ ├── functions_d.cpp │ │ │ ├── functions_e.cpp │ │ │ ├── functions_f.cpp │ │ │ ├── functions_g.cpp │ │ │ ├── functions_h.cpp │ │ │ ├── functions_i.cpp │ │ │ ├── functions_j.cpp │ │ │ ├── functions_k.cpp │ │ │ ├── functions_l.cpp │ │ │ ├── functions_m.cpp │ │ │ ├── functions_n.cpp │ │ │ ├── functions_o.cpp │ │ │ ├── functions_p.cpp │ │ │ ├── functions_q.cpp │ │ │ ├── functions_r.cpp │ │ │ ├── functions_s.cpp │ │ │ ├── functions_t.cpp │ │ │ ├── functions_u.cpp │ │ │ ├── functions_v.cpp │ │ │ ├── functions_w.cpp │ │ │ ├── functions_x.cpp │ │ │ ├── functions_y.cpp │ │ │ ├── functions_z.cpp │ │ │ └── types.cpp │ │ │ ├── gles1 │ │ │ └── .gitkeep │ │ │ ├── gles2 │ │ │ └── .gitkeep │ │ │ ├── glrevision.h │ │ │ ├── logging.cpp │ │ │ └── logging_private.h │ │ └── version.h.in ├── glfw-3.0.3 │ ├── .gitignore │ ├── CMake │ │ ├── amd64-mingw32msvc.cmake │ │ ├── i586-mingw32msvc.cmake │ │ ├── i686-pc-mingw32.cmake │ │ ├── i686-w64-mingw32.cmake │ │ ├── modules │ │ │ ├── FindEGL.cmake │ │ │ ├── FindGLESv1.cmake │ │ │ └── FindGLESv2.cmake │ │ └── x86_64-w64-mingw32.cmake │ ├── CMakeLists.txt │ ├── COPYING.txt │ ├── README.md │ ├── cmake_uninstall.cmake.in │ ├── deps │ │ ├── EGL │ │ │ └── eglext.h │ │ ├── GL │ │ │ ├── glext.h │ │ │ ├── glxext.h │ │ │ └── wglext.h │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── tinycthread.c │ │ └── tinycthread.h │ ├── docs │ │ ├── CMakeLists.txt │ │ ├── Doxyfile.in │ │ ├── build.dox │ │ ├── compat.dox │ │ ├── context.dox │ │ ├── internal.dox │ │ ├── main.dox │ │ ├── monitor.dox │ │ ├── moving.dox │ │ ├── news.dox │ │ ├── quick.dox │ │ └── window.dox │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── boing.c │ │ ├── gears.c │ │ ├── heightmap.c │ │ ├── simple.c │ │ ├── splitview.c │ │ └── wave.c │ ├── include │ │ └── GLFW │ │ │ ├── glfw3.h │ │ │ └── glfw3native.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── clipboard.c │ │ ├── cocoa_clipboard.m │ │ ├── cocoa_gamma.c │ │ ├── cocoa_init.m │ │ ├── cocoa_joystick.m │ │ ├── cocoa_monitor.m │ │ ├── cocoa_platform.h │ │ ├── cocoa_time.c │ │ ├── cocoa_window.m │ │ ├── config.h.in │ │ ├── context.c │ │ ├── egl_context.c │ │ ├── egl_platform.h │ │ ├── gamma.c │ │ ├── glfw3.pc.in │ │ ├── glfwConfig.cmake.in │ │ ├── glfwConfigVersion.cmake.in │ │ ├── glx_context.c │ │ ├── glx_platform.h │ │ ├── init.c │ │ ├── input.c │ │ ├── internal.h │ │ ├── joystick.c │ │ ├── monitor.c │ │ ├── nsgl_context.m │ │ ├── nsgl_platform.h │ │ ├── time.c │ │ ├── wgl_context.c │ │ ├── wgl_platform.h │ │ ├── win32_clipboard.c │ │ ├── win32_gamma.c │ │ ├── win32_init.c │ │ ├── win32_joystick.c │ │ ├── win32_monitor.c │ │ ├── win32_platform.h │ │ ├── win32_time.c │ │ ├── win32_window.c │ │ ├── window.c │ │ ├── x11_clipboard.c │ │ ├── x11_gamma.c │ │ ├── x11_init.c │ │ ├── x11_joystick.c │ │ ├── x11_monitor.c │ │ ├── x11_platform.h │ │ ├── x11_time.c │ │ ├── x11_unicode.c │ │ └── x11_window.c │ └── tests │ │ ├── CMakeLists.txt │ │ ├── accuracy.c │ │ ├── clipboard.c │ │ ├── defaults.c │ │ ├── events.c │ │ ├── fsaa.c │ │ ├── gamma.c │ │ ├── glfwinfo.c │ │ ├── iconify.c │ │ ├── joysticks.c │ │ ├── modes.c │ │ ├── peter.c │ │ ├── reopen.c │ │ ├── sharing.c │ │ ├── tearing.c │ │ ├── threads.c │ │ ├── title.c │ │ └── windows.c ├── glm-0.9.5.3 │ ├── CMakeLists.txt │ ├── CTestConfig.cmake │ ├── copying.txt │ ├── doc │ │ ├── api │ │ │ ├── a00002.html │ │ │ ├── a00004_source.html │ │ │ ├── a00005_source.html │ │ │ ├── a00006_source.html │ │ │ ├── a00007.html │ │ │ ├── a00007_source.html │ │ │ ├── a00008_source.html │ │ │ ├── a00009_source.html │ │ │ ├── a00010_source.html │ │ │ ├── a00011.html │ │ │ ├── a00011_source.html │ │ │ ├── a00012.html │ │ │ ├── a00012_source.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.html │ │ │ ├── a00019_source.html │ │ │ ├── a00020_source.html │ │ │ ├── a00021.html │ │ │ ├── a00021_source.html │ │ │ ├── a00022.html │ │ │ ├── a00022_source.html │ │ │ ├── a00023_source.html │ │ │ ├── a00024.html │ │ │ ├── a00024_source.html │ │ │ ├── a00025.html │ │ │ ├── a00025_source.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_source.html │ │ │ ├── a00033_source.html │ │ │ ├── a00034_source.html │ │ │ ├── a00035_source.html │ │ │ ├── a00036_source.html │ │ │ ├── a00037_source.html │ │ │ ├── a00038_source.html │ │ │ ├── a00039_source.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_source.html │ │ │ ├── a00047.html │ │ │ ├── a00047_source.html │ │ │ ├── a00048_source.html │ │ │ ├── a00049.html │ │ │ ├── a00049_source.html │ │ │ ├── a00050.html │ │ │ ├── a00050_source.html │ │ │ ├── a00051.html │ │ │ ├── a00051_source.html │ │ │ ├── a00052_source.html │ │ │ ├── a00053_source.html │ │ │ ├── a00054_source.html │ │ │ ├── a00055_source.html │ │ │ ├── a00056_source.html │ │ │ ├── a00057_source.html │ │ │ ├── a00058_source.html │ │ │ ├── a00059.html │ │ │ ├── a00059_source.html │ │ │ ├── a00060.html │ │ │ ├── a00060_source.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_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_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_source.html │ │ │ ├── a00094.html │ │ │ ├── a00094_source.html │ │ │ ├── a00095.html │ │ │ ├── a00095_source.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_source.html │ │ │ ├── a00102.html │ │ │ ├── a00102_source.html │ │ │ ├── a00103.html │ │ │ ├── a00103_source.html │ │ │ ├── a00104_source.html │ │ │ ├── a00105.html │ │ │ ├── a00105_source.html │ │ │ ├── a00106.html │ │ │ ├── a00106_source.html │ │ │ ├── a00107.html │ │ │ ├── a00107_source.html │ │ │ ├── a00108_source.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_source.html │ │ │ ├── a00119_source.html │ │ │ ├── a00120_source.html │ │ │ ├── a00121_source.html │ │ │ ├── a00122_source.html │ │ │ ├── a00123_source.html │ │ │ ├── a00124_source.html │ │ │ ├── a00125_source.html │ │ │ ├── a00126_source.html │ │ │ ├── a00127_source.html │ │ │ ├── a00128_source.html │ │ │ ├── a00129_source.html │ │ │ ├── a00130_source.html │ │ │ ├── a00131_source.html │ │ │ ├── a00132.html │ │ │ ├── a00132_source.html │ │ │ ├── a00133.html │ │ │ ├── a00133_source.html │ │ │ ├── a00134_source.html │ │ │ ├── a00135_source.html │ │ │ ├── a00136_source.html │ │ │ ├── a00137_source.html │ │ │ ├── a00138_source.html │ │ │ ├── a00139.html │ │ │ ├── a00139_source.html │ │ │ ├── a00140_source.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 │ │ │ ├── a00155.html │ │ │ ├── a00156.html │ │ │ ├── a00157.html │ │ │ ├── a00158.html │ │ │ ├── a00159.html │ │ │ ├── a00160.html │ │ │ ├── a00161.html │ │ │ ├── a00162.html │ │ │ ├── a00163.html │ │ │ ├── a00164.html │ │ │ ├── a00165.html │ │ │ ├── a00166.html │ │ │ ├── a00167.html │ │ │ ├── a00168.html │ │ │ ├── a00169.html │ │ │ ├── a00170.html │ │ │ ├── a00171.html │ │ │ ├── a00172.html │ │ │ ├── a00173.html │ │ │ ├── a00174.html │ │ │ ├── a00175.html │ │ │ ├── a00176.html │ │ │ ├── a00177.html │ │ │ ├── a00178.html │ │ │ ├── a00179.html │ │ │ ├── a00180.html │ │ │ ├── a00181.html │ │ │ ├── a00182.html │ │ │ ├── a00183.html │ │ │ ├── a00184.html │ │ │ ├── a00185.html │ │ │ ├── a00186.html │ │ │ ├── a00187.html │ │ │ ├── a00188.html │ │ │ ├── a00189.html │ │ │ ├── a00190.html │ │ │ ├── a00191.html │ │ │ ├── a00192.html │ │ │ ├── a00193.html │ │ │ ├── a00194.html │ │ │ ├── a00195.html │ │ │ ├── a00196.html │ │ │ ├── a00197.html │ │ │ ├── a00198.html │ │ │ ├── a00199.html │ │ │ ├── a00200.html │ │ │ ├── a00201.html │ │ │ ├── a00202.html │ │ │ ├── a00203.html │ │ │ ├── a00204.html │ │ │ ├── a00205.html │ │ │ ├── a00206.html │ │ │ ├── a00207.html │ │ │ ├── a00208.html │ │ │ ├── a00209.html │ │ │ ├── a00210.html │ │ │ ├── a00211.html │ │ │ ├── a00212.html │ │ │ ├── a00213.html │ │ │ ├── a00214.html │ │ │ ├── a00215.html │ │ │ ├── a00216.html │ │ │ ├── a00217.html │ │ │ ├── a00218.html │ │ │ ├── a00219.html │ │ │ ├── a00220.html │ │ │ ├── a00221.html │ │ │ ├── a00222.html │ │ │ ├── a00223.html │ │ │ ├── a00224.html │ │ │ ├── a00225.html │ │ │ ├── a00226.html │ │ │ ├── a00227.html │ │ │ ├── a00228.html │ │ │ ├── a00229.html │ │ │ ├── a00230.html │ │ │ ├── a00231.html │ │ │ ├── a00232.html │ │ │ ├── a00233.html │ │ │ ├── a00234.html │ │ │ ├── a00235.html │ │ │ ├── a00236.html │ │ │ ├── a00237.html │ │ │ ├── a00238.html │ │ │ ├── a00240.html │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── closed.png │ │ │ ├── dir_04e4a28b8d58785d7769817294d623f5.html │ │ │ ├── dir_4d1ca7e3aefdd5b86b5dba8da1c3d503.html │ │ │ ├── dir_6e418c18ca640a0404613de005739e2e.html │ │ │ ├── dir_89daaa151958d75313fcd89dd5f4bdb8.html │ │ │ ├── dir_8ceffd4ee35c3518d4e8bdc7e638efe8.html │ │ │ ├── dir_968fb7988749a6351e7b3d0c1783dec4.html │ │ │ ├── dir_a8d99eddac27b2368ab5252ce80ded11.html │ │ │ ├── dir_e3ecd7863bd215c92a17f47e2ae3be43.html │ │ │ ├── dir_e50778361fd4ab4de52181ed9eb2b726.html │ │ │ ├── dir_edf753475b928be648c1cf1c6443cf63.html │ │ │ ├── dir_f7324829a002c536307b42a892c06451.html │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── files.html │ │ │ ├── ftv2blank.png │ │ │ ├── ftv2cl.png │ │ │ ├── ftv2doc.png │ │ │ ├── ftv2folderclosed.png │ │ │ ├── ftv2folderopen.png │ │ │ ├── ftv2lastnode.png │ │ │ ├── ftv2link.png │ │ │ ├── ftv2mlastnode.png │ │ │ ├── ftv2mnode.png │ │ │ ├── ftv2mo.png │ │ │ ├── ftv2node.png │ │ │ ├── ftv2ns.png │ │ │ ├── ftv2plastnode.png │ │ │ ├── ftv2pnode.png │ │ │ ├── ftv2splitbar.png │ │ │ ├── ftv2vertline.png │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── modules.html │ │ │ ├── namespacemembers.html │ │ │ ├── namespacemembers_0x62.html │ │ │ ├── namespacemembers_0x63.html │ │ │ ├── namespacemembers_0x64.html │ │ │ ├── namespacemembers_0x65.html │ │ │ ├── namespacemembers_0x66.html │ │ │ ├── namespacemembers_0x67.html │ │ │ ├── namespacemembers_0x68.html │ │ │ ├── namespacemembers_0x69.html │ │ │ ├── namespacemembers_0x6c.html │ │ │ ├── namespacemembers_0x6d.html │ │ │ ├── namespacemembers_0x6e.html │ │ │ ├── namespacemembers_0x6f.html │ │ │ ├── namespacemembers_0x70.html │ │ │ ├── namespacemembers_0x71.html │ │ │ ├── namespacemembers_0x72.html │ │ │ ├── namespacemembers_0x73.html │ │ │ ├── namespacemembers_0x74.html │ │ │ ├── namespacemembers_0x75.html │ │ │ ├── namespacemembers_0x76.html │ │ │ ├── namespacemembers_0x77.html │ │ │ ├── namespacemembers_0x79.html │ │ │ ├── namespacemembers_0x7a.html │ │ │ ├── namespacemembers_func.html │ │ │ ├── namespacemembers_func_0x62.html │ │ │ ├── namespacemembers_func_0x63.html │ │ │ ├── namespacemembers_func_0x64.html │ │ │ ├── namespacemembers_func_0x65.html │ │ │ ├── namespacemembers_func_0x66.html │ │ │ ├── namespacemembers_func_0x67.html │ │ │ ├── namespacemembers_func_0x68.html │ │ │ ├── namespacemembers_func_0x69.html │ │ │ ├── namespacemembers_func_0x6c.html │ │ │ ├── namespacemembers_func_0x6d.html │ │ │ ├── namespacemembers_func_0x6e.html │ │ │ ├── namespacemembers_func_0x6f.html │ │ │ ├── namespacemembers_func_0x70.html │ │ │ ├── namespacemembers_func_0x71.html │ │ │ ├── namespacemembers_func_0x72.html │ │ │ ├── namespacemembers_func_0x73.html │ │ │ ├── namespacemembers_func_0x74.html │ │ │ ├── namespacemembers_func_0x75.html │ │ │ ├── namespacemembers_func_0x76.html │ │ │ ├── namespacemembers_func_0x79.html │ │ │ ├── namespacemembers_func_0x7a.html │ │ │ ├── namespacemembers_type.html │ │ │ ├── namespacemembers_type_0x64.html │ │ │ ├── namespacemembers_type_0x66.html │ │ │ ├── namespacemembers_type_0x68.html │ │ │ ├── namespacemembers_type_0x69.html │ │ │ ├── namespacemembers_type_0x6c.html │ │ │ ├── namespacemembers_type_0x6d.html │ │ │ ├── namespacemembers_type_0x71.html │ │ │ ├── namespacemembers_type_0x73.html │ │ │ ├── namespacemembers_type_0x75.html │ │ │ ├── namespacemembers_type_0x76.html │ │ │ ├── namespacemembers_type_0x77.html │ │ │ ├── namespaces.html │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── open.png │ │ │ ├── pages.html │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ └── tabs.css │ │ ├── glm.docx │ │ ├── glm.pdf │ │ ├── logo.png │ │ ├── man.doxy │ │ ├── pages.doxy │ │ └── theme │ │ │ ├── doxygen.css │ │ │ └── tabs.css │ ├── glm │ │ ├── CMakeLists.txt │ │ ├── common.hpp │ │ ├── detail │ │ │ ├── _features.hpp │ │ │ ├── _fixes.hpp │ │ │ ├── _literals.hpp │ │ │ ├── _noise.hpp │ │ │ ├── _swizzle.hpp │ │ │ ├── _swizzle_func.hpp │ │ │ ├── _vectorize.hpp │ │ │ ├── dummy.cpp │ │ │ ├── func_common.hpp │ │ │ ├── func_common.inl │ │ │ ├── func_exponential.hpp │ │ │ ├── func_exponential.inl │ │ │ ├── func_geometric.hpp │ │ │ ├── func_geometric.inl │ │ │ ├── func_integer.hpp │ │ │ ├── func_integer.inl │ │ │ ├── func_matrix.hpp │ │ │ ├── func_matrix.inl │ │ │ ├── func_noise.hpp │ │ │ ├── func_noise.inl │ │ │ ├── func_packing.hpp │ │ │ ├── func_packing.inl │ │ │ ├── func_trigonometric.hpp │ │ │ ├── func_trigonometric.inl │ │ │ ├── func_vector_relational.hpp │ │ │ ├── func_vector_relational.inl │ │ │ ├── glm.cpp │ │ │ ├── hint.hpp │ │ │ ├── intrinsic_common.hpp │ │ │ ├── intrinsic_common.inl │ │ │ ├── intrinsic_exponential.hpp │ │ │ ├── intrinsic_exponential.inl │ │ │ ├── intrinsic_geometric.hpp │ │ │ ├── intrinsic_geometric.inl │ │ │ ├── intrinsic_integer.hpp │ │ │ ├── intrinsic_integer.inl │ │ │ ├── intrinsic_matrix.hpp │ │ │ ├── intrinsic_matrix.inl │ │ │ ├── intrinsic_trigonometric.hpp │ │ │ ├── intrinsic_trigonometric.inl │ │ │ ├── intrinsic_vector_relational.hpp │ │ │ ├── intrinsic_vector_relational.inl │ │ │ ├── precision.hpp │ │ │ ├── precision.inl │ │ │ ├── setup.hpp │ │ │ ├── type_float.hpp │ │ │ ├── type_gentype.hpp │ │ │ ├── type_gentype.inl │ │ │ ├── type_half.hpp │ │ │ ├── type_half.inl │ │ │ ├── type_int.hpp │ │ │ ├── type_mat.hpp │ │ │ ├── type_mat.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_vec.hpp │ │ │ ├── type_vec.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 │ │ ├── exponential.hpp │ │ ├── ext.hpp │ │ ├── fwd.hpp │ │ ├── geometric.hpp │ │ ├── glm.hpp │ │ ├── gtc │ │ │ ├── constants.hpp │ │ │ ├── constants.inl │ │ │ ├── epsilon.hpp │ │ │ ├── epsilon.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 │ │ │ ├── random.hpp │ │ │ ├── random.inl │ │ │ ├── reciprocal.hpp │ │ │ ├── reciprocal.inl │ │ │ ├── type_precision.hpp │ │ │ ├── type_precision.inl │ │ │ ├── type_ptr.hpp │ │ │ ├── type_ptr.inl │ │ │ ├── ulp.hpp │ │ │ └── ulp.inl │ │ ├── gtx │ │ │ ├── associated_min_max.hpp │ │ │ ├── associated_min_max.inl │ │ │ ├── bit.hpp │ │ │ ├── bit.inl │ │ │ ├── closest_point.hpp │ │ │ ├── closest_point.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── color_space_YCoCg.hpp │ │ │ ├── color_space_YCoCg.inl │ │ │ ├── compatibility.hpp │ │ │ ├── compatibility.inl │ │ │ ├── component_wise.hpp │ │ │ ├── component_wise.inl │ │ │ ├── constants.hpp │ │ │ ├── dual_quaternion.hpp │ │ │ ├── dual_quaternion.inl │ │ │ ├── epsilon.hpp │ │ │ ├── euler_angles.hpp │ │ │ ├── euler_angles.inl │ │ │ ├── extend.hpp │ │ │ ├── extend.inl │ │ │ ├── extented_min_max.hpp │ │ │ ├── extented_min_max.inl │ │ │ ├── fast_exponential.hpp │ │ │ ├── fast_exponential.inl │ │ │ ├── fast_square_root.hpp │ │ │ ├── fast_square_root.inl │ │ │ ├── fast_trigonometry.hpp │ │ │ ├── fast_trigonometry.inl │ │ │ ├── gradient_paint.hpp │ │ │ ├── gradient_paint.inl │ │ │ ├── handed_coordinate_space.hpp │ │ │ ├── handed_coordinate_space.inl │ │ │ ├── inertia.hpp │ │ │ ├── inertia.inl │ │ │ ├── int_10_10_10_2.hpp │ │ │ ├── int_10_10_10_2.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_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 │ │ │ ├── mixed_product.hpp │ │ │ ├── mixed_product.inl │ │ │ ├── multiple.hpp │ │ │ ├── multiple.inl │ │ │ ├── noise.hpp │ │ │ ├── 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 │ │ │ ├── random.hpp │ │ │ ├── raw_data.hpp │ │ │ ├── raw_data.inl │ │ │ ├── reciprocal.hpp │ │ │ ├── rotate_normalized_axis.hpp │ │ │ ├── rotate_normalized_axis.inl │ │ │ ├── rotate_vector.hpp │ │ │ ├── rotate_vector.inl │ │ │ ├── scalar_relational.hpp │ │ │ ├── scalar_relational.inl │ │ │ ├── simd_mat4.hpp │ │ │ ├── simd_mat4.inl │ │ │ ├── simd_quat.hpp │ │ │ ├── simd_quat.inl │ │ │ ├── simd_vec4.hpp │ │ │ ├── simd_vec4.inl │ │ │ ├── spline.hpp │ │ │ ├── spline.inl │ │ │ ├── std_based_type.hpp │ │ │ ├── std_based_type.inl │ │ │ ├── string_cast.hpp │ │ │ ├── string_cast.inl │ │ │ ├── transform.hpp │ │ │ ├── transform.inl │ │ │ ├── transform2.hpp │ │ │ ├── transform2.inl │ │ │ ├── ulp.hpp │ │ │ ├── unsigned_int.hpp │ │ │ ├── unsigned_int.inl │ │ │ ├── vec1.hpp │ │ │ ├── vec1.inl │ │ │ ├── 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 │ │ ├── trigonometric.hpp │ │ ├── vec2.hpp │ │ ├── vec3.hpp │ │ ├── vec4.hpp │ │ ├── vector_relational.hpp │ │ └── virtrev │ │ │ └── xstream.hpp │ ├── readme.txt │ ├── test │ │ ├── CMakeLists.txt │ │ ├── bug │ │ │ └── CMakeLists.txt │ │ ├── core │ │ │ ├── CMakeLists.txt │ │ │ ├── core_func_common.cpp │ │ │ ├── core_func_exponential.cpp │ │ │ ├── core_func_geometric.cpp │ │ │ ├── core_func_integer.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_message.cpp │ │ │ ├── core_setup_precision.cpp │ │ │ ├── core_type_cast.cpp │ │ │ ├── core_type_float.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 │ │ ├── external │ │ │ └── gli │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── core │ │ │ │ ├── dummy.cpp │ │ │ │ ├── generate_mipmaps.hpp │ │ │ │ ├── generate_mipmaps.inl │ │ │ │ ├── image2d.hpp │ │ │ │ ├── image2d.inl │ │ │ │ ├── operation.hpp │ │ │ │ ├── operation.inl │ │ │ │ ├── operator.hpp │ │ │ │ ├── operator.inl │ │ │ │ ├── shared_array.hpp │ │ │ │ ├── shared_array.inl │ │ │ │ ├── shared_ptr.hpp │ │ │ │ ├── shared_ptr.inl │ │ │ │ ├── size.hpp │ │ │ │ ├── size.inl │ │ │ │ ├── texture2d.hpp │ │ │ │ ├── texture2d.inl │ │ │ │ ├── texture2d_array.hpp │ │ │ │ ├── texture2d_array.inl │ │ │ │ ├── texture_cube.hpp │ │ │ │ ├── texture_cube.inl │ │ │ │ ├── texture_cube_array.hpp │ │ │ │ └── texture_cube_array.inl │ │ │ │ ├── gli.hpp │ │ │ │ └── gtx │ │ │ │ ├── compression.hpp │ │ │ │ ├── compression.inl │ │ │ │ ├── fetch.hpp │ │ │ │ ├── fetch.inl │ │ │ │ ├── gl_texture2d.hpp │ │ │ │ ├── gl_texture2d.inl │ │ │ │ ├── gradient.hpp │ │ │ │ ├── gradient.inl │ │ │ │ ├── loader.hpp │ │ │ │ ├── loader.inl │ │ │ │ ├── loader_dds10.hpp │ │ │ │ ├── loader_dds10.inl │ │ │ │ ├── loader_dds9.hpp │ │ │ │ ├── loader_dds9.inl │ │ │ │ ├── loader_tga.hpp │ │ │ │ ├── loader_tga.inl │ │ │ │ ├── wavelet.hpp │ │ │ │ └── wavelet.inl │ │ ├── glm.cppcheck │ │ ├── gtc │ │ │ ├── CMakeLists.txt │ │ │ ├── gtc_constants.cpp │ │ │ ├── gtc_epsilon.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_type_precision.cpp │ │ │ ├── gtc_type_ptr.cpp │ │ │ └── gtc_ulp.cpp │ │ └── gtx │ │ │ ├── CMakeLists.txt │ │ │ ├── gtx_associated_min_max.cpp │ │ │ ├── gtx_bit.cpp │ │ │ ├── gtx_closest_point.cpp │ │ │ ├── gtx_color_space.cpp │ │ │ ├── gtx_color_space_YCoCg.cpp │ │ │ ├── gtx_compatibility.cpp │ │ │ ├── gtx_component_wise.cpp │ │ │ ├── gtx_dual_quaternion.cpp │ │ │ ├── gtx_euler_angle.cpp │ │ │ ├── gtx_extend.cpp │ │ │ ├── gtx_extented_min_max.cpp │ │ │ ├── gtx_fast_exponential.cpp │ │ │ ├── gtx_fast_square_root.cpp │ │ │ ├── gtx_fast_trigonometry.cpp │ │ │ ├── gtx_gradient_paint.cpp │ │ │ ├── gtx_handed_coordinate_space.cpp │ │ │ ├── gtx_inertia.cpp │ │ │ ├── gtx_int_10_10_10_2.cpp │ │ │ ├── gtx_integer.cpp │ │ │ ├── gtx_intersect.cpp │ │ │ ├── gtx_io.cpp │ │ │ ├── gtx_log_base.cpp │ │ │ ├── gtx_matrix_cross_product.cpp │ │ │ ├── gtx_matrix_interpolation.cpp │ │ │ ├── gtx_matrix_major_storage.cpp │ │ │ ├── gtx_matrix_operation.cpp │ │ │ ├── gtx_matrix_query.cpp │ │ │ ├── gtx_mixed_product.cpp │ │ │ ├── gtx_multiple.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_rotate_normalized_axis.cpp │ │ │ ├── gtx_rotate_vector.cpp │ │ │ ├── gtx_scalar_relational.cpp │ │ │ ├── gtx_simd_mat4.cpp │ │ │ ├── gtx_simd_vec4.cpp │ │ │ ├── gtx_spline.cpp │ │ │ ├── gtx_string_cast.cpp │ │ │ ├── gtx_vector_angle.cpp │ │ │ └── gtx_vector_query.cpp │ └── util │ │ ├── FindGLM.cmake │ │ ├── autoexp.txt │ │ ├── autoexp.vc2010.dat │ │ ├── glm.natvis │ │ └── usertype.dat ├── globjects-0.5.0 │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── cmake │ │ ├── CompileOptions.cmake │ │ ├── ComponentInstall.cmake │ │ ├── Custom.cmake │ │ ├── FindGLFW.cmake │ │ ├── FindGLM.cmake │ │ ├── GetGitRevisionDescription.cmake │ │ ├── GetGitRevisionDescription.cmake.in │ │ └── RuntimeDependencies.cmake │ ├── codegeneration │ │ └── globjects_features.h │ ├── configure │ ├── globjects-config.cmake │ ├── globjects-logo.png │ ├── globjects-logo.svg │ └── source │ │ ├── CMakeLists.txt │ │ ├── globjects │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── globjects │ │ │ │ ├── AbstractState.h │ │ │ │ ├── AbstractState.hpp │ │ │ │ ├── AbstractUniform.h │ │ │ │ ├── AbstractUniform.hpp │ │ │ │ ├── AttachedRenderbuffer.h │ │ │ │ ├── AttachedTexture.h │ │ │ │ ├── Buffer.h │ │ │ │ ├── Buffer.hpp │ │ │ │ ├── Capability.h │ │ │ │ ├── DebugMessage.h │ │ │ │ ├── Error.h │ │ │ │ ├── Framebuffer.h │ │ │ │ ├── FramebufferAttachment.h │ │ │ │ ├── LocationIdentity.h │ │ │ │ ├── NamedString.h │ │ │ │ ├── Object.h │ │ │ │ ├── ObjectVisitor.h │ │ │ │ ├── Program.h │ │ │ │ ├── Program.hpp │ │ │ │ ├── ProgramBinary.h │ │ │ │ ├── ProgramPipeline.h │ │ │ │ ├── Query.h │ │ │ │ ├── Renderbuffer.h │ │ │ │ ├── Sampler.h │ │ │ │ ├── Shader.h │ │ │ │ ├── State.h │ │ │ │ ├── StateSetting.h │ │ │ │ ├── StateSetting.hpp │ │ │ │ ├── Sync.h │ │ │ │ ├── Texture.h │ │ │ │ ├── TextureHandle.h │ │ │ │ ├── TransformFeedback.h │ │ │ │ ├── TransformFeedback.hpp │ │ │ │ ├── Uniform.h │ │ │ │ ├── Uniform.hpp │ │ │ │ ├── UniformBlock.h │ │ │ │ ├── VertexArray.h │ │ │ │ ├── VertexAttributeBinding.h │ │ │ │ ├── base │ │ │ │ ├── AbstractFunctionCall.h │ │ │ │ ├── AbstractLogHandler.h │ │ │ │ ├── AbstractStringSource.h │ │ │ │ ├── ChangeListener.h │ │ │ │ ├── Changeable.h │ │ │ │ ├── CompositeStringSource.h │ │ │ │ ├── ConsoleLogger.h │ │ │ │ ├── File.h │ │ │ │ ├── FunctionCall.h │ │ │ │ ├── FunctionCall.hpp │ │ │ │ ├── HeapOnly.h │ │ │ │ ├── LogMessage.h │ │ │ │ ├── LogMessageBuilder.h │ │ │ │ ├── LogMessageBuilder.hpp │ │ │ │ ├── LogMessageLevel.h │ │ │ │ ├── Referenced.h │ │ │ │ ├── Singleton.h │ │ │ │ ├── Singleton.hpp │ │ │ │ ├── StaticStringSource.h │ │ │ │ ├── StringSourceDecorator.h │ │ │ │ ├── StringTemplate.h │ │ │ │ ├── baselogging.h │ │ │ │ ├── baselogging.hpp │ │ │ │ ├── formatString.h │ │ │ │ ├── formatString.hpp │ │ │ │ ├── ref_ptr.h │ │ │ │ └── ref_ptr.hpp │ │ │ │ ├── glbindinglogging.h │ │ │ │ ├── glmlogging.h │ │ │ │ ├── globjects.h │ │ │ │ ├── globjects.hpp │ │ │ │ ├── logging.h │ │ │ │ ├── objectlogging.h │ │ │ │ └── objectlogging.hpp │ │ └── source │ │ │ ├── AbstractState.cpp │ │ │ ├── AbstractUniform.cpp │ │ │ ├── AttachedRenderbuffer.cpp │ │ │ ├── AttachedTexture.cpp │ │ │ ├── Buffer.cpp │ │ │ ├── Capability.cpp │ │ │ ├── DebugMessage.cpp │ │ │ ├── Error.cpp │ │ │ ├── Framebuffer.cpp │ │ │ ├── FramebufferAttachment.cpp │ │ │ ├── IncludeProcessor.cpp │ │ │ ├── IncludeProcessor.h │ │ │ ├── LocationIdentity.cpp │ │ │ ├── NamedString.cpp │ │ │ ├── Object.cpp │ │ │ ├── ObjectVisitor.cpp │ │ │ ├── Program.cpp │ │ │ ├── ProgramBinary.cpp │ │ │ ├── ProgramPipeline.cpp │ │ │ ├── Query.cpp │ │ │ ├── Renderbuffer.cpp │ │ │ ├── Resource.cpp │ │ │ ├── Resource.h │ │ │ ├── Sampler.cpp │ │ │ ├── Shader.cpp │ │ │ ├── State.cpp │ │ │ ├── StateSetting.cpp │ │ │ ├── Sync.cpp │ │ │ ├── Texture.cpp │ │ │ ├── TextureHandle.cpp │ │ │ ├── TransformFeedback.cpp │ │ │ ├── UniformBlock.cpp │ │ │ ├── VertexArray.cpp │ │ │ ├── VertexAttributeBinding.cpp │ │ │ ├── base │ │ │ ├── AbstractFunctionCall.cpp │ │ │ ├── AbstractStringSource.cpp │ │ │ ├── ChangeListener.cpp │ │ │ ├── Changeable.cpp │ │ │ ├── CompositeStringSource.cpp │ │ │ ├── ConsoleLogger.cpp │ │ │ ├── File.cpp │ │ │ ├── FileRegistry.cpp │ │ │ ├── FileRegistry.h │ │ │ ├── HeapOnly.cpp │ │ │ ├── LogMessage.cpp │ │ │ ├── LogMessageBuilder.cpp │ │ │ ├── Referenced.cpp │ │ │ ├── StaticStringSource.cpp │ │ │ ├── StringSourceDecorator.cpp │ │ │ ├── StringTemplate.cpp │ │ │ ├── baselogging.cpp │ │ │ └── formatString.cpp │ │ │ ├── container_helpers.hpp │ │ │ ├── glbindinglogging.cpp │ │ │ ├── glmlogging.cpp │ │ │ ├── globjects.cpp │ │ │ ├── implementations │ │ │ ├── AbstractBufferImplementation.cpp │ │ │ ├── AbstractBufferImplementation.h │ │ │ ├── AbstractDebugImplementation.cpp │ │ │ ├── AbstractDebugImplementation.h │ │ │ ├── AbstractFramebufferImplementation.cpp │ │ │ ├── AbstractFramebufferImplementation.h │ │ │ ├── AbstractObjectNameImplementation.cpp │ │ │ ├── AbstractObjectNameImplementation.h │ │ │ ├── AbstractProgramBinaryImplementation.cpp │ │ │ ├── AbstractProgramBinaryImplementation.h │ │ │ ├── AbstractShadingLanguageIncludeImplementation.cpp │ │ │ ├── AbstractShadingLanguageIncludeImplementation.h │ │ │ ├── AbstractTextureImplementation.cpp │ │ │ ├── AbstractTextureImplementation.h │ │ │ ├── AbstractTextureStorageImplementation.cpp │ │ │ ├── AbstractTextureStorageImplementation.h │ │ │ ├── AbstractUniformImplementation.cpp │ │ │ ├── AbstractUniformImplementation.h │ │ │ ├── AbstractVertexAttributeBindingImplementation.cpp │ │ │ ├── AbstractVertexAttributeBindingImplementation.h │ │ │ ├── BufferImplementation_DirectStateAccessARB.cpp │ │ │ ├── BufferImplementation_DirectStateAccessARB.h │ │ │ ├── BufferImplementation_DirectStateAccessEXT.cpp │ │ │ ├── BufferImplementation_DirectStateAccessEXT.h │ │ │ ├── BufferImplementation_Legacy.cpp │ │ │ ├── BufferImplementation_Legacy.h │ │ │ ├── DebugImplementation_DebugKHR.cpp │ │ │ ├── DebugImplementation_DebugKHR.h │ │ │ ├── DebugImplementation_Legacy.cpp │ │ │ ├── DebugImplementation_Legacy.h │ │ │ ├── FramebufferImplementation_DirectStateAccessARB.cpp │ │ │ ├── FramebufferImplementation_DirectStateAccessARB.h │ │ │ ├── FramebufferImplementation_DirectStateAccessEXT.cpp │ │ │ ├── FramebufferImplementation_DirectStateAccessEXT.h │ │ │ ├── FramebufferImplementation_Legacy.cpp │ │ │ ├── FramebufferImplementation_Legacy.h │ │ │ ├── ObjectNameImplementation_KHR_debug.cpp │ │ │ ├── ObjectNameImplementation_KHR_debug.h │ │ │ ├── ObjectNameImplementation_Legacy.cpp │ │ │ ├── ObjectNameImplementation_Legacy.h │ │ │ ├── ProgramBinaryImplementation_GetProgramBinaryARB.cpp │ │ │ ├── ProgramBinaryImplementation_GetProgramBinaryARB.h │ │ │ ├── ProgramBinaryImplementation_None.cpp │ │ │ ├── ProgramBinaryImplementation_None.h │ │ │ ├── ShadingLanguageIncludeImplementation_ARB.cpp │ │ │ ├── ShadingLanguageIncludeImplementation_ARB.h │ │ │ ├── ShadingLanguageIncludeImplementation_Fallback.cpp │ │ │ ├── ShadingLanguageIncludeImplementation_Fallback.h │ │ │ ├── TextureImplementation_DirectStateAccessARB.cpp │ │ │ ├── TextureImplementation_DirectStateAccessARB.h │ │ │ ├── TextureImplementation_DirectStateAccessEXT.cpp │ │ │ ├── TextureImplementation_DirectStateAccessEXT.h │ │ │ ├── TextureImplementation_Legacy.cpp │ │ │ ├── TextureImplementation_Legacy.h │ │ │ ├── TextureStorageImplementation_DirectStateAccessARB.cpp │ │ │ ├── TextureStorageImplementation_DirectStateAccessARB.h │ │ │ ├── TextureStorageImplementation_DirectStateAccessEXT.cpp │ │ │ ├── TextureStorageImplementation_DirectStateAccessEXT.h │ │ │ ├── TextureStorageImplementation_Fallback.cpp │ │ │ ├── TextureStorageImplementation_Fallback.h │ │ │ ├── TextureStorageImplementation_Legacy.cpp │ │ │ ├── TextureStorageImplementation_Legacy.h │ │ │ ├── UniformImplementation_Legacy.cpp │ │ │ ├── UniformImplementation_Legacy.h │ │ │ ├── UniformImplementation_SeparateShaderObjectsARB.cpp │ │ │ ├── UniformImplementation_SeparateShaderObjectsARB.h │ │ │ ├── VertexAttributeBindingImplementation_DirectStateAccessARB.cpp │ │ │ ├── VertexAttributeBindingImplementation_DirectStateAccessARB.h │ │ │ ├── VertexAttributeBindingImplementation_Legacy.cpp │ │ │ ├── VertexAttributeBindingImplementation_Legacy.h │ │ │ ├── VertexAttributeBindingImplementation_VertexAttribBindingARB.cpp │ │ │ └── VertexAttributeBindingImplementation_VertexAttribBindingARB.h │ │ │ ├── objectlogging.cpp │ │ │ ├── pixelformat.cpp │ │ │ ├── pixelformat.h │ │ │ └── registry │ │ │ ├── ExtensionRegistry.cpp │ │ │ ├── ExtensionRegistry.h │ │ │ ├── ImplementationRegistry.cpp │ │ │ ├── ImplementationRegistry.h │ │ │ ├── NamedStringRegistry.cpp │ │ │ ├── NamedStringRegistry.h │ │ │ ├── ObjectRegistry.cpp │ │ │ ├── ObjectRegistry.h │ │ │ ├── Registry.cpp │ │ │ └── Registry.h │ │ └── version.h.in ├── gloost │ ├── BitMask.cpp │ ├── BitMask.h │ ├── BoundingBox.cpp │ ├── BoundingBox.h │ ├── BoundingVolume.cpp │ ├── BoundingVolume.h │ ├── Camera.cpp │ ├── Camera.h │ ├── Face.cpp │ ├── Face.h │ ├── Frustum.cpp │ ├── Frustum.h │ ├── Material.cpp │ ├── Material.h │ ├── Matrix.cpp │ ├── Matrix.h │ ├── MultiGlContext.cpp │ ├── MultiGlContext.h │ ├── Obj.cpp │ ├── Obj.h │ ├── ObjMatFile.cpp │ ├── ObjMatFile.h │ ├── PerspectiveCamera.cpp │ ├── PerspectiveCamera.h │ ├── Plane.cpp │ ├── Plane.h │ ├── Point3.cpp │ ├── Point3.h │ ├── Ray.cpp │ ├── Ray.h │ ├── ScreenCamera.cpp │ ├── ScreenCamera.h │ ├── Shader.cpp │ ├── Shader.h │ ├── SharedResource.cpp │ ├── SharedResource.h │ ├── StereoCamera.cpp │ ├── StereoCamera.h │ ├── Texcoord.cpp │ ├── Texcoord.h │ ├── Texture.cpp │ ├── Texture.h │ ├── TextureManager.cpp │ ├── TextureManager.h │ ├── TextureText.cpp │ ├── TextureText.h │ ├── UniformSet.cpp │ ├── UniformSet.h │ ├── UniformTypes.cpp │ ├── UniformTypes.h │ ├── Vector2.cpp │ ├── Vector2.h │ ├── Vector3.cpp │ ├── Vector3.h │ ├── Viewport.cpp │ ├── Viewport.h │ ├── glErrorUtil.cpp │ ├── glErrorUtil.h │ ├── gloostConfig.h │ ├── gloostHelper.h │ ├── gloostMath.h │ └── gloostRenderGoodies.h ├── imgui-1.49 │ ├── LICENSE │ ├── README.md │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_draw.cpp │ ├── imgui_impl_glfw_glb.cpp │ ├── imgui_impl_glfw_glb.h │ ├── imgui_internal.h │ ├── stb_rect_pack.h │ ├── stb_textedit.h │ └── stb_truetype.h ├── squish │ ├── CMakeLists.txt │ ├── README │ ├── alpha.cpp │ ├── alpha.h │ ├── clusterfit.cpp │ ├── clusterfit.h │ ├── colourblock.cpp │ ├── colourblock.h │ ├── colourfit.cpp │ ├── colourfit.h │ ├── colourset.cpp │ ├── colourset.h │ ├── config │ ├── config.h │ ├── maths.cpp │ ├── maths.h │ ├── rangefit.cpp │ ├── rangefit.h │ ├── simd.h │ ├── simd_float.h │ ├── simd_sse.h │ ├── simd_ve.h │ ├── singlecolourfit.cpp │ ├── singlecolourfit.h │ ├── singlecolourlookup.inl │ ├── sources.pro │ ├── squish.cpp │ └── squish.h └── svg │ ├── svgdocument.cpp │ ├── svgdocument.h │ ├── svgelementstyle.cpp │ ├── svgelementstyle.h │ ├── svggroup.cpp │ ├── svggroup.h │ ├── svgimage.cpp │ ├── svgimage.h │ ├── svgline.cpp │ ├── svgline.h │ ├── svgpolyline.cpp │ ├── svgpolyline.h │ ├── svgrect.cpp │ ├── svgrect.h │ ├── svgtextspan.cpp │ ├── svgtextspan.h │ ├── xmlattribute.cpp │ ├── xmlattribute.h │ ├── xmldocument.cpp │ ├── xmldocument.h │ ├── xmlelement.cpp │ └── xmlelement.h ├── framework ├── CMakeLists.txt ├── DataTypes.cpp ├── DataTypes.h ├── NaturalNeighbourInterpolator.cpp ├── NaturalNeighbourInterpolator.h ├── NetKinectArray.cpp ├── NetKinectArray.h ├── Smoother.cpp ├── Smoother.h ├── calibration │ ├── CalibVolumes.cpp │ ├── CalibVolumes.hpp │ ├── KinectCalibrationFile.cpp │ ├── KinectCalibrationFile.h │ ├── calibration_files.cpp │ ├── calibration_files.hpp │ ├── calibration_inverter.cpp │ ├── calibration_inverter.hpp │ ├── calibration_volume.hpp │ ├── frustum.cpp │ ├── frustum.hpp │ ├── nearest_neighbour_search.cpp │ └── nearest_neighbour_search.hpp ├── double_buffer.hpp ├── double_pixel_buffer.cpp ├── double_pixel_buffer.hpp ├── io │ ├── CMDParser.cpp │ ├── CMDParser.h │ ├── DXTCompressor.cpp │ ├── DXTCompressor.h │ ├── FeedbackReceiver.cpp │ ├── FeedbackReceiver.h │ ├── FileBuffer.cpp │ ├── FileBuffer.h │ ├── FileValue.cpp │ ├── FileValue.h │ ├── configurator.cpp │ └── configurator.hpp ├── measurement │ ├── GPUTimer.cpp │ ├── GPUTimer.h │ ├── Statistics.cpp │ ├── Statistics.h │ ├── Timer.cpp │ ├── Timer.h │ ├── clock.cpp │ ├── clock.h │ ├── timevalue.cpp │ └── timevalue.h ├── navigation │ ├── CameraNavigator.cpp │ ├── CameraNavigator.h │ ├── arcball.hpp │ ├── matrix.hpp │ ├── quaternion.hpp │ └── vectors.hpp ├── reconstruction │ ├── recon_calibs.cpp │ ├── recon_calibs.hpp │ ├── recon_integration.cpp │ ├── recon_integration.hpp │ ├── recon_mvt.cpp │ ├── recon_mvt.hpp │ ├── recon_points.cpp │ ├── recon_points.hpp │ ├── recon_trigrid.cpp │ ├── recon_trigrid.hpp │ ├── reconstruction.cpp │ └── reconstruction.hpp └── rendering │ ├── TextureArray.cpp │ ├── TextureArray.h │ ├── ViewArray.cpp │ ├── ViewArray.h │ ├── screen_quad.cpp │ ├── screen_quad.hpp │ ├── texture_blitter.cpp │ ├── texture_blitter.hpp │ ├── timer_database.cpp │ ├── timer_database.hpp │ ├── timer_gpu.cpp │ ├── timer_gpu.hpp │ ├── unit_cube.cpp │ ├── unit_cube.hpp │ ├── view.cpp │ ├── view.hpp │ ├── view_lod.cpp │ ├── view_lod.hpp │ ├── volume_sampler.cpp │ └── volume_sampler.hpp ├── glsl ├── bricks.fs ├── bricks.gs ├── bricks.vs ├── calib_sample.vs ├── calib_vis.fs ├── calib_vis.vs ├── framebuffer_transfer.fs ├── gauss.png ├── inc_bbox_test.glsl ├── inc_bricks.glsl ├── inc_color.glsl ├── mvt_accum.fs ├── mvt_accum.gs ├── mvt_accum.vs ├── points.fs ├── points.gs ├── points.vs ├── pre_background.fs ├── pre_boundary.fs ├── pre_depth.fs ├── pre_morph.fs ├── pre_normal.fs ├── pre_quality.fs ├── shading.glsl ├── solid.fs ├── solid.vs ├── texture_passthrough.fs ├── texture_passthrough.vs ├── trigrid_accum.fs ├── trigrid_accum.gs ├── trigrid_accum.vs ├── trigrid_normalize.fs ├── trigrid_normalize.vs ├── tsdf_colorfill.fs ├── tsdf_inpaint.fs ├── tsdf_integration.vs ├── tsdf_raymarch.fs └── tsdf_raymarch.vs ├── source ├── .nfs000000000e621e980000000d ├── CMakeLists.txt ├── README_kinect_client.txt ├── calib_inverter.cpp └── kinect_client.cpp └── utils ├── dependencies.txt └── rgbdr.sublime-project /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/README.md -------------------------------------------------------------------------------- /cmake/modules/AddSubLibrary.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/cmake/modules/AddSubLibrary.cmake -------------------------------------------------------------------------------- /cmake/modules/FindDependency.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/cmake/modules/FindDependency.cmake -------------------------------------------------------------------------------- /external/catch-1.1/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/catch-1.1/LICENSE_1_0.txt -------------------------------------------------------------------------------- /external/catch-1.1/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/catch-1.1/catch.hpp -------------------------------------------------------------------------------- /external/fastdxt/2dxt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/fastdxt/2dxt.cpp -------------------------------------------------------------------------------- /external/fastdxt/dxt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/fastdxt/dxt.cpp -------------------------------------------------------------------------------- /external/fastdxt/dxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/fastdxt/dxt.h -------------------------------------------------------------------------------- /external/fastdxt/intrinsic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/fastdxt/intrinsic.cpp -------------------------------------------------------------------------------- /external/fastdxt/libdxt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/fastdxt/libdxt.cpp -------------------------------------------------------------------------------- /external/fastdxt/libdxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/fastdxt/libdxt.h -------------------------------------------------------------------------------- /external/fastdxt/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/fastdxt/util.cpp -------------------------------------------------------------------------------- /external/fastdxt/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/fastdxt/util.h -------------------------------------------------------------------------------- /external/glbinding-2.0.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glbinding-2.0.0/.gitignore -------------------------------------------------------------------------------- /external/glbinding-2.0.0/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glbinding-2.0.0/.travis.yml -------------------------------------------------------------------------------- /external/glbinding-2.0.0/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glbinding-2.0.0/AUTHORS -------------------------------------------------------------------------------- /external/glbinding-2.0.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glbinding-2.0.0/CMakeLists.txt -------------------------------------------------------------------------------- /external/glbinding-2.0.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glbinding-2.0.0/LICENSE -------------------------------------------------------------------------------- /external/glbinding-2.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glbinding-2.0.0/README.md -------------------------------------------------------------------------------- /external/glbinding-2.0.0/cginternals-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glbinding-2.0.0/cginternals-logo.png -------------------------------------------------------------------------------- /external/glbinding-2.0.0/cmake/Custom.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glbinding-2.0.0/cmake/Custom.cmake -------------------------------------------------------------------------------- /external/glbinding-2.0.0/cmake/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glbinding-2.0.0/cmake/FindGLEW.cmake -------------------------------------------------------------------------------- /external/glbinding-2.0.0/cmake/FindGLFW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glbinding-2.0.0/cmake/FindGLFW.cmake -------------------------------------------------------------------------------- /external/glbinding-2.0.0/codegeneration/.gitignore: -------------------------------------------------------------------------------- 1 | generated/ -------------------------------------------------------------------------------- /external/glbinding-2.0.0/codegeneration/gl.revision: -------------------------------------------------------------------------------- 1 | 32518 -------------------------------------------------------------------------------- /external/glbinding-2.0.0/codegeneration/gl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glbinding-2.0.0/codegeneration/gl.xml -------------------------------------------------------------------------------- /external/glbinding-2.0.0/codegeneration/scripts/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc -------------------------------------------------------------------------------- /external/glbinding-2.0.0/codegeneration/scripts/classes/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc -------------------------------------------------------------------------------- /external/glbinding-2.0.0/codegeneration/scripts/classes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/glbinding-2.0.0/codegeneration/scripts/templates/partials/types_hashable.cpp.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/glbinding-2.0.0/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glbinding-2.0.0/configure -------------------------------------------------------------------------------- /external/glbinding-2.0.0/glbinding-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glbinding-2.0.0/glbinding-config.cmake -------------------------------------------------------------------------------- /external/glbinding-2.0.0/glbinding-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glbinding-2.0.0/glbinding-logo.png -------------------------------------------------------------------------------- /external/glbinding-2.0.0/glbinding-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glbinding-2.0.0/glbinding-logo.svg -------------------------------------------------------------------------------- /external/glbinding-2.0.0/source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glbinding-2.0.0/source/CMakeLists.txt -------------------------------------------------------------------------------- /external/glbinding-2.0.0/source/glbinding/source/Binding_pch.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "Binding_pch.h" 3 | -------------------------------------------------------------------------------- /external/glbinding-2.0.0/source/glbinding/source/gles1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/glbinding-2.0.0/source/glbinding/source/gles2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/glbinding-2.0.0/source/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glbinding-2.0.0/source/version.h.in -------------------------------------------------------------------------------- /external/glfw-3.0.3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/.gitignore -------------------------------------------------------------------------------- /external/glfw-3.0.3/CMake/i586-mingw32msvc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/CMake/i586-mingw32msvc.cmake -------------------------------------------------------------------------------- /external/glfw-3.0.3/CMake/i686-pc-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/CMake/i686-pc-mingw32.cmake -------------------------------------------------------------------------------- /external/glfw-3.0.3/CMake/i686-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/CMake/i686-w64-mingw32.cmake -------------------------------------------------------------------------------- /external/glfw-3.0.3/CMake/modules/FindEGL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/CMake/modules/FindEGL.cmake -------------------------------------------------------------------------------- /external/glfw-3.0.3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/CMakeLists.txt -------------------------------------------------------------------------------- /external/glfw-3.0.3/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/COPYING.txt -------------------------------------------------------------------------------- /external/glfw-3.0.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/README.md -------------------------------------------------------------------------------- /external/glfw-3.0.3/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /external/glfw-3.0.3/deps/EGL/eglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/deps/EGL/eglext.h -------------------------------------------------------------------------------- /external/glfw-3.0.3/deps/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/deps/GL/glext.h -------------------------------------------------------------------------------- /external/glfw-3.0.3/deps/GL/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/deps/GL/glxext.h -------------------------------------------------------------------------------- /external/glfw-3.0.3/deps/GL/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/deps/GL/wglext.h -------------------------------------------------------------------------------- /external/glfw-3.0.3/deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/deps/getopt.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/deps/getopt.h -------------------------------------------------------------------------------- /external/glfw-3.0.3/deps/tinycthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/deps/tinycthread.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/deps/tinycthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/deps/tinycthread.h -------------------------------------------------------------------------------- /external/glfw-3.0.3/docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/docs/CMakeLists.txt -------------------------------------------------------------------------------- /external/glfw-3.0.3/docs/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/docs/Doxyfile.in -------------------------------------------------------------------------------- /external/glfw-3.0.3/docs/build.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/docs/build.dox -------------------------------------------------------------------------------- /external/glfw-3.0.3/docs/compat.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/docs/compat.dox -------------------------------------------------------------------------------- /external/glfw-3.0.3/docs/context.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/docs/context.dox -------------------------------------------------------------------------------- /external/glfw-3.0.3/docs/internal.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/docs/internal.dox -------------------------------------------------------------------------------- /external/glfw-3.0.3/docs/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/docs/main.dox -------------------------------------------------------------------------------- /external/glfw-3.0.3/docs/monitor.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/docs/monitor.dox -------------------------------------------------------------------------------- /external/glfw-3.0.3/docs/moving.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/docs/moving.dox -------------------------------------------------------------------------------- /external/glfw-3.0.3/docs/news.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/docs/news.dox -------------------------------------------------------------------------------- /external/glfw-3.0.3/docs/quick.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/docs/quick.dox -------------------------------------------------------------------------------- /external/glfw-3.0.3/docs/window.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/docs/window.dox -------------------------------------------------------------------------------- /external/glfw-3.0.3/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/examples/CMakeLists.txt -------------------------------------------------------------------------------- /external/glfw-3.0.3/examples/boing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/examples/boing.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/examples/gears.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/examples/gears.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/examples/heightmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/examples/heightmap.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/examples/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/examples/simple.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/examples/splitview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/examples/splitview.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/examples/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/examples/wave.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /external/glfw-3.0.3/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/CMakeLists.txt -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/clipboard.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/cocoa_clipboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/cocoa_clipboard.m -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/cocoa_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/cocoa_gamma.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/cocoa_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/cocoa_init.m -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/cocoa_joystick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/cocoa_joystick.m -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/cocoa_monitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/cocoa_monitor.m -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/cocoa_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/cocoa_platform.h -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/cocoa_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/cocoa_time.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/cocoa_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/cocoa_window.m -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/config.h.in -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/context.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/egl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/egl_context.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/egl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/egl_platform.h -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/gamma.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/glfw3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/glfw3.pc.in -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/glfwConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/glfwConfig.cmake.in -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/glx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/glx_context.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/glx_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/glx_platform.h -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/init.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/input.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/internal.h -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/joystick.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/monitor.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/nsgl_context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/nsgl_context.m -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/nsgl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/nsgl_platform.h -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/time.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/wgl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/wgl_context.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/wgl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/wgl_platform.h -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/win32_clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/win32_clipboard.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/win32_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/win32_gamma.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/win32_init.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/win32_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/win32_joystick.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/win32_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/win32_monitor.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/win32_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/win32_platform.h -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/win32_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/win32_time.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/win32_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/win32_window.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/window.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/x11_clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/x11_clipboard.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/x11_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/x11_gamma.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/x11_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/x11_init.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/x11_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/x11_joystick.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/x11_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/x11_monitor.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/x11_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/x11_platform.h -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/x11_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/x11_time.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/x11_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/x11_unicode.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/src/x11_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/src/x11_window.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/tests/CMakeLists.txt -------------------------------------------------------------------------------- /external/glfw-3.0.3/tests/accuracy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/tests/accuracy.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/tests/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/tests/clipboard.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/tests/defaults.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/tests/defaults.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/tests/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/tests/events.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/tests/fsaa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/tests/fsaa.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/tests/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/tests/gamma.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/tests/glfwinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/tests/glfwinfo.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/tests/iconify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/tests/iconify.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/tests/joysticks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/tests/joysticks.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/tests/modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/tests/modes.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/tests/peter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/tests/peter.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/tests/reopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/tests/reopen.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/tests/sharing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/tests/sharing.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/tests/tearing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/tests/tearing.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/tests/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/tests/threads.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/tests/title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/tests/title.c -------------------------------------------------------------------------------- /external/glfw-3.0.3/tests/windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glfw-3.0.3/tests/windows.c -------------------------------------------------------------------------------- /external/glm-0.9.5.3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/CMakeLists.txt -------------------------------------------------------------------------------- /external/glm-0.9.5.3/CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/CTestConfig.cmake -------------------------------------------------------------------------------- /external/glm-0.9.5.3/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/copying.txt -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00002.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00002.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00004_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00004_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00005_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00005_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00006_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00006_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00007.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00007.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00007_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00007_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00008_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00008_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00009_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00009_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00010_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00010_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00011.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00011.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00011_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00011_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00012.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00012.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00012_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00012_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00013_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00013_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00014.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00014.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00014_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00014_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00015.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00015.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00015_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00015_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00016.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00016.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00016_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00016_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00017.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00017.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00017_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00017_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00018.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00018.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00018_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00018_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00019.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00019.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00019_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00019_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00020_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00020_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00021.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00021.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00021_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00021_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00022.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00022.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00022_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00022_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00023_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00023_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00024.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00024.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00024_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00024_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00025.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00025_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00025_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00026_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00026_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00027.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00027.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00027_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00027_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00028.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00028.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00028_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00028_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00029.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00029.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00029_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00029_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00030.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00030.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00030_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00030_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00031.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00031.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00031_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00031_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00032_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00032_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00033_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00033_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00034_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00034_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00035_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00035_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00036_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00036_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00037_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00037_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00038_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00038_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00039_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00039_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00040_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00040_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00041.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00041.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00041_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00041_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00042.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00042.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00042_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00042_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00043.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00043.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00043_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00043_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00044.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00044.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00044_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00044_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00045.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00045.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00045_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00045_source.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00047.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00047.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00049.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00049.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00050.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00050.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00051.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00051.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00059.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00059.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00060.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00060.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00062.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00062.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00063.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00063.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00064.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00064.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00065.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00065.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00066.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00066.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00067.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00067.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00068.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00068.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00070.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00070.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00071.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00071.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00072.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00072.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00073.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00073.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00074.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00074.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00075.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00075.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00076.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00076.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00077.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00077.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00078.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00078.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00079.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00079.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00080.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00080.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00081.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00081.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00082.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00082.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00083.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00083.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00085.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00085.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00086.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00086.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00087.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00087.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00088.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00088.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00089.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00089.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00090.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00090.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00091.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00091.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00092.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00092.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00094.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00094.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00095.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00095.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00097.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00097.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00098.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00098.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00099.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00099.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00100.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00100.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00102.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00102.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00103.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00103.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00105.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00105.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00106.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00106.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00107.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00107.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00110.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00110.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00111.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00111.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00112.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00112.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00113.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00113.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00114.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00114.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00115.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00115.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00116.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00116.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00117.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00117.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00132.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00132.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00133.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00133.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00139.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00139.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00142.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00142.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00143.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00143.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00144.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00144.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00145.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00145.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00146.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00146.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00147.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00147.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00148.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00148.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00149.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00149.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00150.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00150.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00151.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00151.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00155.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00155.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00156.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00156.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00157.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00157.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00158.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00158.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00159.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00159.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00160.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00160.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00161.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00161.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00162.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00162.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00163.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00163.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00164.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00164.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00165.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00165.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00166.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00166.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00167.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00167.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00168.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00168.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00169.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00169.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00170.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00170.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00171.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00171.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00172.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00172.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00173.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00173.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00174.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00174.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00175.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00175.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00176.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00176.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00177.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00177.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00178.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00178.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00179.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00179.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00180.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00180.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00181.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00181.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00182.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00182.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00183.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00183.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00184.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00184.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00185.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00185.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00186.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00186.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00187.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00187.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00188.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00188.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00189.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00189.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00190.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00190.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00191.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00191.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00192.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00192.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00193.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00193.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00194.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00194.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00195.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00195.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00196.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00196.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00197.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00197.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00198.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00198.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00199.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00199.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00200.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00200.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00201.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00201.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00202.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00202.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00203.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00203.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00204.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00204.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00205.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00205.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00206.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00206.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00207.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00207.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00208.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00208.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00209.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00209.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00210.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00210.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00211.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00211.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00212.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00212.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00213.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00213.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00214.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00214.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00215.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00215.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00216.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00216.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00217.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00217.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00218.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00218.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00219.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00219.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00220.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00220.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00221.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00221.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00222.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00222.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00223.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00223.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00224.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00224.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00225.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00225.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00226.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00226.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00227.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00227.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00228.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00228.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00229.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00229.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00230.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00230.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00231.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00231.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00232.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00232.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00233.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00233.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00234.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00234.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00235.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00235.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00236.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00236.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00237.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00237.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00238.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00238.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/a00240.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/a00240.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/bc_s.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/bdwn.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/closed.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/doxygen.css -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/doxygen.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/dynsections.js -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/files.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/ftv2blank.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/ftv2cl.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/ftv2doc.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/ftv2lastnode.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/ftv2link.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/ftv2mnode.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/ftv2mo.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/ftv2node.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/ftv2ns.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/ftv2pnode.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/ftv2splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/ftv2splitbar.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/ftv2vertline.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/index.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/jquery.js -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/modules.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/namespaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/namespaces.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/nav_f.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/nav_g.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/nav_h.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/open.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/pages.html -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/sync_off.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/sync_on.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/tab_a.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/tab_b.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/tab_h.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/tab_s.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/api/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/api/tabs.css -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/glm.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/glm.docx -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/glm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/glm.pdf -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/logo.png -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/man.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/man.doxy -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/pages.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/pages.doxy -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/theme/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/theme/doxygen.css -------------------------------------------------------------------------------- /external/glm-0.9.5.3/doc/theme/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/doc/theme/tabs.css -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/CMakeLists.txt -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/common.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/detail/_features.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/_literals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/detail/_literals.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/detail/dummy.cpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/detail/glm.cpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/hint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/detail/hint.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/detail/precision.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/precision.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/detail/setup.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/detail/type_half.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/type_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/detail/type_int.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/type_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/detail/type_mat.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/detail/type_mat.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/type_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/detail/type_vec.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/detail/type_vec.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/exponential.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/ext.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/fwd.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/geometric.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/glm.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtc/constants.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtc/noise.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtc/packing.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtc/random.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtc/random.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/bit.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/constants.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/epsilon.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/extend.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/inertia.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/inertia.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/inertia.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/inertia.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/integer.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/io.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/io.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/multiple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/multiple.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/multiple.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/multiple.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/noise.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/norm.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/normal.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/projection.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/random.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/reciprocal.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/simd_mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/simd_mat4.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/simd_mat4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/simd_mat4.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/simd_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/simd_quat.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/simd_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/simd_quat.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/simd_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/simd_vec4.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/simd_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/simd_vec4.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/spline.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/transform.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/ulp.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/unsigned_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/unsigned_int.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/unsigned_int.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/unsigned_int.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/vec1.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/vec1.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/integer.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/mat2x2.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/mat2x3.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/mat2x4.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/mat3x2.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/mat3x3.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/mat3x4.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/mat4x2.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/mat4x3.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/mat4x4.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/matrix.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/packing.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/trigonometric.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/vec2.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/vec3.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/vec4.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/glm/virtrev/xstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/glm/virtrev/xstream.hpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/readme.txt -------------------------------------------------------------------------------- /external/glm-0.9.5.3/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/test/CMakeLists.txt -------------------------------------------------------------------------------- /external/glm-0.9.5.3/test/bug/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/glm-0.9.5.3/test/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/test/core/CMakeLists.txt -------------------------------------------------------------------------------- /external/glm-0.9.5.3/test/external/gli/core/dummy.cpp: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /external/glm-0.9.5.3/test/glm.cppcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/test/glm.cppcheck -------------------------------------------------------------------------------- /external/glm-0.9.5.3/test/gtc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/test/gtc/CMakeLists.txt -------------------------------------------------------------------------------- /external/glm-0.9.5.3/test/gtc/gtc_epsilon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/test/gtc/gtc_epsilon.cpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/test/gtc/gtc_noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/test/gtc/gtc_noise.cpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/test/gtc/gtc_packing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/test/gtc/gtc_packing.cpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/test/gtc/gtc_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/test/gtc/gtc_random.cpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/test/gtc/gtc_ulp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/test/gtc/gtc_ulp.cpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/test/gtx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/test/gtx/CMakeLists.txt -------------------------------------------------------------------------------- /external/glm-0.9.5.3/test/gtx/gtx_bit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/test/gtx/gtx_bit.cpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/test/gtx/gtx_extend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/test/gtx/gtx_extend.cpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/test/gtx/gtx_inertia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/test/gtx/gtx_inertia.cpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/test/gtx/gtx_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/test/gtx/gtx_integer.cpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/test/gtx/gtx_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/test/gtx/gtx_io.cpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/test/gtx/gtx_norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/test/gtx/gtx_norm.cpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/test/gtx/gtx_normal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/test/gtx/gtx_normal.cpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/test/gtx/gtx_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/test/gtx/gtx_random.cpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/test/gtx/gtx_spline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/test/gtx/gtx_spline.cpp -------------------------------------------------------------------------------- /external/glm-0.9.5.3/util/FindGLM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/util/FindGLM.cmake -------------------------------------------------------------------------------- /external/glm-0.9.5.3/util/autoexp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/util/autoexp.txt -------------------------------------------------------------------------------- /external/glm-0.9.5.3/util/autoexp.vc2010.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/util/autoexp.vc2010.dat -------------------------------------------------------------------------------- /external/glm-0.9.5.3/util/glm.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/util/glm.natvis -------------------------------------------------------------------------------- /external/glm-0.9.5.3/util/usertype.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/glm-0.9.5.3/util/usertype.dat -------------------------------------------------------------------------------- /external/globjects-0.5.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/globjects-0.5.0/.gitignore -------------------------------------------------------------------------------- /external/globjects-0.5.0/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/globjects-0.5.0/.travis.yml -------------------------------------------------------------------------------- /external/globjects-0.5.0/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/globjects-0.5.0/AUTHORS -------------------------------------------------------------------------------- /external/globjects-0.5.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/globjects-0.5.0/CMakeLists.txt -------------------------------------------------------------------------------- /external/globjects-0.5.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/globjects-0.5.0/LICENSE -------------------------------------------------------------------------------- /external/globjects-0.5.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/globjects-0.5.0/README.md -------------------------------------------------------------------------------- /external/globjects-0.5.0/cmake/Custom.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/globjects-0.5.0/cmake/Custom.cmake -------------------------------------------------------------------------------- /external/globjects-0.5.0/cmake/FindGLFW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/globjects-0.5.0/cmake/FindGLFW.cmake -------------------------------------------------------------------------------- /external/globjects-0.5.0/cmake/FindGLM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/globjects-0.5.0/cmake/FindGLM.cmake -------------------------------------------------------------------------------- /external/globjects-0.5.0/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/globjects-0.5.0/configure -------------------------------------------------------------------------------- /external/globjects-0.5.0/globjects-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/globjects-0.5.0/globjects-logo.png -------------------------------------------------------------------------------- /external/globjects-0.5.0/globjects-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/globjects-0.5.0/globjects-logo.svg -------------------------------------------------------------------------------- /external/globjects-0.5.0/source/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/globjects-0.5.0/source/version.h.in -------------------------------------------------------------------------------- /external/gloost/BitMask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/BitMask.cpp -------------------------------------------------------------------------------- /external/gloost/BitMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/BitMask.h -------------------------------------------------------------------------------- /external/gloost/BoundingBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/BoundingBox.cpp -------------------------------------------------------------------------------- /external/gloost/BoundingBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/BoundingBox.h -------------------------------------------------------------------------------- /external/gloost/BoundingVolume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/BoundingVolume.cpp -------------------------------------------------------------------------------- /external/gloost/BoundingVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/BoundingVolume.h -------------------------------------------------------------------------------- /external/gloost/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Camera.cpp -------------------------------------------------------------------------------- /external/gloost/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Camera.h -------------------------------------------------------------------------------- /external/gloost/Face.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Face.cpp -------------------------------------------------------------------------------- /external/gloost/Face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Face.h -------------------------------------------------------------------------------- /external/gloost/Frustum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Frustum.cpp -------------------------------------------------------------------------------- /external/gloost/Frustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Frustum.h -------------------------------------------------------------------------------- /external/gloost/Material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Material.cpp -------------------------------------------------------------------------------- /external/gloost/Material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Material.h -------------------------------------------------------------------------------- /external/gloost/Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Matrix.cpp -------------------------------------------------------------------------------- /external/gloost/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Matrix.h -------------------------------------------------------------------------------- /external/gloost/MultiGlContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/MultiGlContext.cpp -------------------------------------------------------------------------------- /external/gloost/MultiGlContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/MultiGlContext.h -------------------------------------------------------------------------------- /external/gloost/Obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Obj.cpp -------------------------------------------------------------------------------- /external/gloost/Obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Obj.h -------------------------------------------------------------------------------- /external/gloost/ObjMatFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/ObjMatFile.cpp -------------------------------------------------------------------------------- /external/gloost/ObjMatFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/ObjMatFile.h -------------------------------------------------------------------------------- /external/gloost/PerspectiveCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/PerspectiveCamera.cpp -------------------------------------------------------------------------------- /external/gloost/PerspectiveCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/PerspectiveCamera.h -------------------------------------------------------------------------------- /external/gloost/Plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Plane.cpp -------------------------------------------------------------------------------- /external/gloost/Plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Plane.h -------------------------------------------------------------------------------- /external/gloost/Point3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Point3.cpp -------------------------------------------------------------------------------- /external/gloost/Point3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Point3.h -------------------------------------------------------------------------------- /external/gloost/Ray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Ray.cpp -------------------------------------------------------------------------------- /external/gloost/Ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Ray.h -------------------------------------------------------------------------------- /external/gloost/ScreenCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/ScreenCamera.cpp -------------------------------------------------------------------------------- /external/gloost/ScreenCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/ScreenCamera.h -------------------------------------------------------------------------------- /external/gloost/Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Shader.cpp -------------------------------------------------------------------------------- /external/gloost/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Shader.h -------------------------------------------------------------------------------- /external/gloost/SharedResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/SharedResource.cpp -------------------------------------------------------------------------------- /external/gloost/SharedResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/SharedResource.h -------------------------------------------------------------------------------- /external/gloost/StereoCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/StereoCamera.cpp -------------------------------------------------------------------------------- /external/gloost/StereoCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/StereoCamera.h -------------------------------------------------------------------------------- /external/gloost/Texcoord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Texcoord.cpp -------------------------------------------------------------------------------- /external/gloost/Texcoord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Texcoord.h -------------------------------------------------------------------------------- /external/gloost/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Texture.cpp -------------------------------------------------------------------------------- /external/gloost/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Texture.h -------------------------------------------------------------------------------- /external/gloost/TextureManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/TextureManager.cpp -------------------------------------------------------------------------------- /external/gloost/TextureManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/TextureManager.h -------------------------------------------------------------------------------- /external/gloost/TextureText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/TextureText.cpp -------------------------------------------------------------------------------- /external/gloost/TextureText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/TextureText.h -------------------------------------------------------------------------------- /external/gloost/UniformSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/UniformSet.cpp -------------------------------------------------------------------------------- /external/gloost/UniformSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/UniformSet.h -------------------------------------------------------------------------------- /external/gloost/UniformTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/UniformTypes.cpp -------------------------------------------------------------------------------- /external/gloost/UniformTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/UniformTypes.h -------------------------------------------------------------------------------- /external/gloost/Vector2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Vector2.cpp -------------------------------------------------------------------------------- /external/gloost/Vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Vector2.h -------------------------------------------------------------------------------- /external/gloost/Vector3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Vector3.cpp -------------------------------------------------------------------------------- /external/gloost/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Vector3.h -------------------------------------------------------------------------------- /external/gloost/Viewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Viewport.cpp -------------------------------------------------------------------------------- /external/gloost/Viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/Viewport.h -------------------------------------------------------------------------------- /external/gloost/glErrorUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/glErrorUtil.cpp -------------------------------------------------------------------------------- /external/gloost/glErrorUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/glErrorUtil.h -------------------------------------------------------------------------------- /external/gloost/gloostConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/gloostConfig.h -------------------------------------------------------------------------------- /external/gloost/gloostHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/gloostHelper.h -------------------------------------------------------------------------------- /external/gloost/gloostMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/gloostMath.h -------------------------------------------------------------------------------- /external/gloost/gloostRenderGoodies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/gloost/gloostRenderGoodies.h -------------------------------------------------------------------------------- /external/imgui-1.49/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/imgui-1.49/LICENSE -------------------------------------------------------------------------------- /external/imgui-1.49/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/imgui-1.49/README.md -------------------------------------------------------------------------------- /external/imgui-1.49/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/imgui-1.49/imconfig.h -------------------------------------------------------------------------------- /external/imgui-1.49/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/imgui-1.49/imgui.cpp -------------------------------------------------------------------------------- /external/imgui-1.49/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/imgui-1.49/imgui.h -------------------------------------------------------------------------------- /external/imgui-1.49/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/imgui-1.49/imgui_draw.cpp -------------------------------------------------------------------------------- /external/imgui-1.49/imgui_impl_glfw_glb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/imgui-1.49/imgui_impl_glfw_glb.cpp -------------------------------------------------------------------------------- /external/imgui-1.49/imgui_impl_glfw_glb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/imgui-1.49/imgui_impl_glfw_glb.h -------------------------------------------------------------------------------- /external/imgui-1.49/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/imgui-1.49/imgui_internal.h -------------------------------------------------------------------------------- /external/imgui-1.49/stb_rect_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/imgui-1.49/stb_rect_pack.h -------------------------------------------------------------------------------- /external/imgui-1.49/stb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/imgui-1.49/stb_textedit.h -------------------------------------------------------------------------------- /external/imgui-1.49/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/imgui-1.49/stb_truetype.h -------------------------------------------------------------------------------- /external/squish/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/CMakeLists.txt -------------------------------------------------------------------------------- /external/squish/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/README -------------------------------------------------------------------------------- /external/squish/alpha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/alpha.cpp -------------------------------------------------------------------------------- /external/squish/alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/alpha.h -------------------------------------------------------------------------------- /external/squish/clusterfit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/clusterfit.cpp -------------------------------------------------------------------------------- /external/squish/clusterfit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/clusterfit.h -------------------------------------------------------------------------------- /external/squish/colourblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/colourblock.cpp -------------------------------------------------------------------------------- /external/squish/colourblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/colourblock.h -------------------------------------------------------------------------------- /external/squish/colourfit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/colourfit.cpp -------------------------------------------------------------------------------- /external/squish/colourfit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/colourfit.h -------------------------------------------------------------------------------- /external/squish/colourset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/colourset.cpp -------------------------------------------------------------------------------- /external/squish/colourset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/colourset.h -------------------------------------------------------------------------------- /external/squish/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/config -------------------------------------------------------------------------------- /external/squish/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/config.h -------------------------------------------------------------------------------- /external/squish/maths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/maths.cpp -------------------------------------------------------------------------------- /external/squish/maths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/maths.h -------------------------------------------------------------------------------- /external/squish/rangefit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/rangefit.cpp -------------------------------------------------------------------------------- /external/squish/rangefit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/rangefit.h -------------------------------------------------------------------------------- /external/squish/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/simd.h -------------------------------------------------------------------------------- /external/squish/simd_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/simd_float.h -------------------------------------------------------------------------------- /external/squish/simd_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/simd_sse.h -------------------------------------------------------------------------------- /external/squish/simd_ve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/simd_ve.h -------------------------------------------------------------------------------- /external/squish/singlecolourfit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/singlecolourfit.cpp -------------------------------------------------------------------------------- /external/squish/singlecolourfit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/singlecolourfit.h -------------------------------------------------------------------------------- /external/squish/singlecolourlookup.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/singlecolourlookup.inl -------------------------------------------------------------------------------- /external/squish/sources.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/sources.pro -------------------------------------------------------------------------------- /external/squish/squish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/squish.cpp -------------------------------------------------------------------------------- /external/squish/squish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/squish/squish.h -------------------------------------------------------------------------------- /external/svg/svgdocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/svg/svgdocument.cpp -------------------------------------------------------------------------------- /external/svg/svgdocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/svg/svgdocument.h -------------------------------------------------------------------------------- /external/svg/svgelementstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/svg/svgelementstyle.cpp -------------------------------------------------------------------------------- /external/svg/svgelementstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/svg/svgelementstyle.h -------------------------------------------------------------------------------- /external/svg/svggroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/svg/svggroup.cpp -------------------------------------------------------------------------------- /external/svg/svggroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/svg/svggroup.h -------------------------------------------------------------------------------- /external/svg/svgimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/svg/svgimage.cpp -------------------------------------------------------------------------------- /external/svg/svgimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/svg/svgimage.h -------------------------------------------------------------------------------- /external/svg/svgline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/svg/svgline.cpp -------------------------------------------------------------------------------- /external/svg/svgline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/svg/svgline.h -------------------------------------------------------------------------------- /external/svg/svgpolyline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/svg/svgpolyline.cpp -------------------------------------------------------------------------------- /external/svg/svgpolyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/svg/svgpolyline.h -------------------------------------------------------------------------------- /external/svg/svgrect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/svg/svgrect.cpp -------------------------------------------------------------------------------- /external/svg/svgrect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/svg/svgrect.h -------------------------------------------------------------------------------- /external/svg/svgtextspan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/svg/svgtextspan.cpp -------------------------------------------------------------------------------- /external/svg/svgtextspan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/svg/svgtextspan.h -------------------------------------------------------------------------------- /external/svg/xmlattribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/svg/xmlattribute.cpp -------------------------------------------------------------------------------- /external/svg/xmlattribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/svg/xmlattribute.h -------------------------------------------------------------------------------- /external/svg/xmldocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/svg/xmldocument.cpp -------------------------------------------------------------------------------- /external/svg/xmldocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/svg/xmldocument.h -------------------------------------------------------------------------------- /external/svg/xmlelement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/svg/xmlelement.cpp -------------------------------------------------------------------------------- /external/svg/xmlelement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/external/svg/xmlelement.h -------------------------------------------------------------------------------- /framework/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/CMakeLists.txt -------------------------------------------------------------------------------- /framework/DataTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/DataTypes.cpp -------------------------------------------------------------------------------- /framework/DataTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/DataTypes.h -------------------------------------------------------------------------------- /framework/NaturalNeighbourInterpolator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/NaturalNeighbourInterpolator.cpp -------------------------------------------------------------------------------- /framework/NaturalNeighbourInterpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/NaturalNeighbourInterpolator.h -------------------------------------------------------------------------------- /framework/NetKinectArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/NetKinectArray.cpp -------------------------------------------------------------------------------- /framework/NetKinectArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/NetKinectArray.h -------------------------------------------------------------------------------- /framework/Smoother.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/Smoother.cpp -------------------------------------------------------------------------------- /framework/Smoother.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/Smoother.h -------------------------------------------------------------------------------- /framework/calibration/CalibVolumes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/calibration/CalibVolumes.cpp -------------------------------------------------------------------------------- /framework/calibration/CalibVolumes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/calibration/CalibVolumes.hpp -------------------------------------------------------------------------------- /framework/calibration/KinectCalibrationFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/calibration/KinectCalibrationFile.h -------------------------------------------------------------------------------- /framework/calibration/calibration_files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/calibration/calibration_files.cpp -------------------------------------------------------------------------------- /framework/calibration/calibration_files.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/calibration/calibration_files.hpp -------------------------------------------------------------------------------- /framework/calibration/calibration_volume.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/calibration/calibration_volume.hpp -------------------------------------------------------------------------------- /framework/calibration/frustum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/calibration/frustum.cpp -------------------------------------------------------------------------------- /framework/calibration/frustum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/calibration/frustum.hpp -------------------------------------------------------------------------------- /framework/double_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/double_buffer.hpp -------------------------------------------------------------------------------- /framework/double_pixel_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/double_pixel_buffer.cpp -------------------------------------------------------------------------------- /framework/double_pixel_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/double_pixel_buffer.hpp -------------------------------------------------------------------------------- /framework/io/CMDParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/io/CMDParser.cpp -------------------------------------------------------------------------------- /framework/io/CMDParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/io/CMDParser.h -------------------------------------------------------------------------------- /framework/io/DXTCompressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/io/DXTCompressor.cpp -------------------------------------------------------------------------------- /framework/io/DXTCompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/io/DXTCompressor.h -------------------------------------------------------------------------------- /framework/io/FeedbackReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/io/FeedbackReceiver.cpp -------------------------------------------------------------------------------- /framework/io/FeedbackReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/io/FeedbackReceiver.h -------------------------------------------------------------------------------- /framework/io/FileBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/io/FileBuffer.cpp -------------------------------------------------------------------------------- /framework/io/FileBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/io/FileBuffer.h -------------------------------------------------------------------------------- /framework/io/FileValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/io/FileValue.cpp -------------------------------------------------------------------------------- /framework/io/FileValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/io/FileValue.h -------------------------------------------------------------------------------- /framework/io/configurator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/io/configurator.cpp -------------------------------------------------------------------------------- /framework/io/configurator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/io/configurator.hpp -------------------------------------------------------------------------------- /framework/measurement/GPUTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/measurement/GPUTimer.cpp -------------------------------------------------------------------------------- /framework/measurement/GPUTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/measurement/GPUTimer.h -------------------------------------------------------------------------------- /framework/measurement/Statistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/measurement/Statistics.cpp -------------------------------------------------------------------------------- /framework/measurement/Statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/measurement/Statistics.h -------------------------------------------------------------------------------- /framework/measurement/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/measurement/Timer.cpp -------------------------------------------------------------------------------- /framework/measurement/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/measurement/Timer.h -------------------------------------------------------------------------------- /framework/measurement/clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/measurement/clock.cpp -------------------------------------------------------------------------------- /framework/measurement/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/measurement/clock.h -------------------------------------------------------------------------------- /framework/measurement/timevalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/measurement/timevalue.cpp -------------------------------------------------------------------------------- /framework/measurement/timevalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/measurement/timevalue.h -------------------------------------------------------------------------------- /framework/navigation/CameraNavigator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/navigation/CameraNavigator.cpp -------------------------------------------------------------------------------- /framework/navigation/CameraNavigator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/navigation/CameraNavigator.h -------------------------------------------------------------------------------- /framework/navigation/arcball.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/navigation/arcball.hpp -------------------------------------------------------------------------------- /framework/navigation/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/navigation/matrix.hpp -------------------------------------------------------------------------------- /framework/navigation/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/navigation/quaternion.hpp -------------------------------------------------------------------------------- /framework/navigation/vectors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/navigation/vectors.hpp -------------------------------------------------------------------------------- /framework/reconstruction/recon_calibs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/reconstruction/recon_calibs.cpp -------------------------------------------------------------------------------- /framework/reconstruction/recon_calibs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/reconstruction/recon_calibs.hpp -------------------------------------------------------------------------------- /framework/reconstruction/recon_mvt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/reconstruction/recon_mvt.cpp -------------------------------------------------------------------------------- /framework/reconstruction/recon_mvt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/reconstruction/recon_mvt.hpp -------------------------------------------------------------------------------- /framework/reconstruction/recon_points.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/reconstruction/recon_points.cpp -------------------------------------------------------------------------------- /framework/reconstruction/recon_points.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/reconstruction/recon_points.hpp -------------------------------------------------------------------------------- /framework/reconstruction/recon_trigrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/reconstruction/recon_trigrid.cpp -------------------------------------------------------------------------------- /framework/reconstruction/recon_trigrid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/reconstruction/recon_trigrid.hpp -------------------------------------------------------------------------------- /framework/reconstruction/reconstruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/reconstruction/reconstruction.cpp -------------------------------------------------------------------------------- /framework/reconstruction/reconstruction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/reconstruction/reconstruction.hpp -------------------------------------------------------------------------------- /framework/rendering/TextureArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/rendering/TextureArray.cpp -------------------------------------------------------------------------------- /framework/rendering/TextureArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/rendering/TextureArray.h -------------------------------------------------------------------------------- /framework/rendering/ViewArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/rendering/ViewArray.cpp -------------------------------------------------------------------------------- /framework/rendering/ViewArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/rendering/ViewArray.h -------------------------------------------------------------------------------- /framework/rendering/screen_quad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/rendering/screen_quad.cpp -------------------------------------------------------------------------------- /framework/rendering/screen_quad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/rendering/screen_quad.hpp -------------------------------------------------------------------------------- /framework/rendering/texture_blitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/rendering/texture_blitter.cpp -------------------------------------------------------------------------------- /framework/rendering/texture_blitter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/rendering/texture_blitter.hpp -------------------------------------------------------------------------------- /framework/rendering/timer_database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/rendering/timer_database.cpp -------------------------------------------------------------------------------- /framework/rendering/timer_database.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/rendering/timer_database.hpp -------------------------------------------------------------------------------- /framework/rendering/timer_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/rendering/timer_gpu.cpp -------------------------------------------------------------------------------- /framework/rendering/timer_gpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/rendering/timer_gpu.hpp -------------------------------------------------------------------------------- /framework/rendering/unit_cube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/rendering/unit_cube.cpp -------------------------------------------------------------------------------- /framework/rendering/unit_cube.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/rendering/unit_cube.hpp -------------------------------------------------------------------------------- /framework/rendering/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/rendering/view.cpp -------------------------------------------------------------------------------- /framework/rendering/view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/rendering/view.hpp -------------------------------------------------------------------------------- /framework/rendering/view_lod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/rendering/view_lod.cpp -------------------------------------------------------------------------------- /framework/rendering/view_lod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/rendering/view_lod.hpp -------------------------------------------------------------------------------- /framework/rendering/volume_sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/rendering/volume_sampler.cpp -------------------------------------------------------------------------------- /framework/rendering/volume_sampler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/framework/rendering/volume_sampler.hpp -------------------------------------------------------------------------------- /glsl/bricks.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/bricks.fs -------------------------------------------------------------------------------- /glsl/bricks.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/bricks.gs -------------------------------------------------------------------------------- /glsl/bricks.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/bricks.vs -------------------------------------------------------------------------------- /glsl/calib_sample.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/calib_sample.vs -------------------------------------------------------------------------------- /glsl/calib_vis.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/calib_vis.fs -------------------------------------------------------------------------------- /glsl/calib_vis.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/calib_vis.vs -------------------------------------------------------------------------------- /glsl/framebuffer_transfer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/framebuffer_transfer.fs -------------------------------------------------------------------------------- /glsl/gauss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/gauss.png -------------------------------------------------------------------------------- /glsl/inc_bbox_test.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/inc_bbox_test.glsl -------------------------------------------------------------------------------- /glsl/inc_bricks.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/inc_bricks.glsl -------------------------------------------------------------------------------- /glsl/inc_color.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/inc_color.glsl -------------------------------------------------------------------------------- /glsl/mvt_accum.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/mvt_accum.fs -------------------------------------------------------------------------------- /glsl/mvt_accum.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/mvt_accum.gs -------------------------------------------------------------------------------- /glsl/mvt_accum.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/mvt_accum.vs -------------------------------------------------------------------------------- /glsl/points.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/points.fs -------------------------------------------------------------------------------- /glsl/points.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/points.gs -------------------------------------------------------------------------------- /glsl/points.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/points.vs -------------------------------------------------------------------------------- /glsl/pre_background.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/pre_background.fs -------------------------------------------------------------------------------- /glsl/pre_boundary.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/pre_boundary.fs -------------------------------------------------------------------------------- /glsl/pre_depth.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/pre_depth.fs -------------------------------------------------------------------------------- /glsl/pre_morph.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/pre_morph.fs -------------------------------------------------------------------------------- /glsl/pre_normal.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/pre_normal.fs -------------------------------------------------------------------------------- /glsl/pre_quality.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/pre_quality.fs -------------------------------------------------------------------------------- /glsl/shading.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/shading.glsl -------------------------------------------------------------------------------- /glsl/solid.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/solid.fs -------------------------------------------------------------------------------- /glsl/solid.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/solid.vs -------------------------------------------------------------------------------- /glsl/texture_passthrough.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/texture_passthrough.fs -------------------------------------------------------------------------------- /glsl/texture_passthrough.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/texture_passthrough.vs -------------------------------------------------------------------------------- /glsl/trigrid_accum.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/trigrid_accum.fs -------------------------------------------------------------------------------- /glsl/trigrid_accum.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/trigrid_accum.gs -------------------------------------------------------------------------------- /glsl/trigrid_accum.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/trigrid_accum.vs -------------------------------------------------------------------------------- /glsl/trigrid_normalize.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/trigrid_normalize.fs -------------------------------------------------------------------------------- /glsl/trigrid_normalize.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/trigrid_normalize.vs -------------------------------------------------------------------------------- /glsl/tsdf_colorfill.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/tsdf_colorfill.fs -------------------------------------------------------------------------------- /glsl/tsdf_inpaint.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/tsdf_inpaint.fs -------------------------------------------------------------------------------- /glsl/tsdf_integration.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/tsdf_integration.vs -------------------------------------------------------------------------------- /glsl/tsdf_raymarch.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/tsdf_raymarch.fs -------------------------------------------------------------------------------- /glsl/tsdf_raymarch.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/glsl/tsdf_raymarch.vs -------------------------------------------------------------------------------- /source/.nfs000000000e621e980000000d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/source/.nfs000000000e621e980000000d -------------------------------------------------------------------------------- /source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/source/CMakeLists.txt -------------------------------------------------------------------------------- /source/README_kinect_client.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/source/README_kinect_client.txt -------------------------------------------------------------------------------- /source/calib_inverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/source/calib_inverter.cpp -------------------------------------------------------------------------------- /source/kinect_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/source/kinect_client.cpp -------------------------------------------------------------------------------- /utils/dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/utils/dependencies.txt -------------------------------------------------------------------------------- /utils/rgbdr.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steppobeck/rgbd-recon/HEAD/utils/rgbdr.sublime-project --------------------------------------------------------------------------------