├── .gitignore ├── JGL_MeshLoader ├── Icosphere.obj ├── JGL_MeshLoader.filters ├── JGL_MeshLoader.user ├── JGL_MeshLoader.vcxproj ├── JGL_MeshLoader.vcxproj.user ├── cube.fbx ├── cube_smooth.fbx ├── defaultcube.fbx ├── dna.txt ├── imgui.ini ├── include │ ├── assimp │ │ ├── .editorconfig │ │ ├── BaseImporter.h │ │ ├── Bitmap.h │ │ ├── BlobIOSystem.h │ │ ├── ByteSwapper.h │ │ ├── ColladaMetaData.h │ │ ├── Compiler │ │ │ ├── poppack1.h │ │ │ ├── pstdint.h │ │ │ └── pushpack1.h │ │ ├── CreateAnimMesh.h │ │ ├── DefaultIOStream.h │ │ ├── DefaultIOSystem.h │ │ ├── DefaultLogger.hpp │ │ ├── Defines.h │ │ ├── Exceptional.h │ │ ├── Exporter.hpp │ │ ├── GenericProperty.h │ │ ├── Hash.h │ │ ├── IOStream.hpp │ │ ├── IOStreamBuffer.h │ │ ├── IOSystem.hpp │ │ ├── Importer.hpp │ │ ├── LineSplitter.h │ │ ├── LogAux.h │ │ ├── LogStream.hpp │ │ ├── Logger.hpp │ │ ├── MathFunctions.h │ │ ├── MemoryIOWrapper.h │ │ ├── NullLogger.hpp │ │ ├── ParsingUtils.h │ │ ├── Profiler.h │ │ ├── ProgressHandler.hpp │ │ ├── RemoveComments.h │ │ ├── SGSpatialSort.h │ │ ├── SceneCombiner.h │ │ ├── SkeletonMeshBuilder.h │ │ ├── SmallVector.h │ │ ├── SmoothingGroups.h │ │ ├── SmoothingGroups.inl │ │ ├── SpatialSort.h │ │ ├── StandardShapes.h │ │ ├── StreamReader.h │ │ ├── StreamWriter.h │ │ ├── StringComparison.h │ │ ├── StringUtils.h │ │ ├── Subdivision.h │ │ ├── TinyFormatter.h │ │ ├── Vertex.h │ │ ├── XMLTools.h │ │ ├── XmlParser.h │ │ ├── ZipArchiveIOSystem.h │ │ ├── aabb.h │ │ ├── ai_assert.h │ │ ├── anim.h │ │ ├── camera.h │ │ ├── cexport.h │ │ ├── cfileio.h │ │ ├── cimport.h │ │ ├── color4.h │ │ ├── color4.inl │ │ ├── commonMetaData.h │ │ ├── config.h │ │ ├── config.h.in │ │ ├── defs.h │ │ ├── fast_atof.h │ │ ├── importerdesc.h │ │ ├── light.h │ │ ├── material.h │ │ ├── material.inl │ │ ├── matrix3x3.h │ │ ├── matrix3x3.inl │ │ ├── matrix4x4.h │ │ ├── matrix4x4.inl │ │ ├── mesh.h │ │ ├── metadata.h │ │ ├── pbrmaterial.h │ │ ├── port │ │ │ └── AndroidJNI │ │ │ │ ├── AndroidJNIIOSystem.h │ │ │ │ └── BundledAssetIOSystem.h │ │ ├── postprocess.h │ │ ├── qnan.h │ │ ├── quaternion.h │ │ ├── quaternion.inl │ │ ├── scene.h │ │ ├── texture.h │ │ ├── types.h │ │ ├── vector2.h │ │ ├── vector2.inl │ │ ├── vector3.h │ │ ├── vector3.inl │ │ └── version.h │ ├── gl │ │ ├── eglew.h │ │ ├── glew.h │ │ ├── glxew.h │ │ └── wglew.h │ ├── glfw │ │ ├── glfw3.h │ │ └── glfw3native.h │ └── glm │ │ ├── CMakeLists.txt │ │ ├── License.txt │ │ ├── common.hpp │ │ ├── detail │ │ ├── _features.hpp │ │ ├── _fixes.hpp │ │ ├── _noise.hpp │ │ ├── _swizzle.hpp │ │ ├── _swizzle_func.hpp │ │ ├── _vectorize.hpp │ │ ├── compute_common.hpp │ │ ├── compute_vector_relational.hpp │ │ ├── func_common.inl │ │ ├── func_common_simd.inl │ │ ├── func_exponential.inl │ │ ├── func_exponential_simd.inl │ │ ├── func_geometric.inl │ │ ├── func_geometric_simd.inl │ │ ├── func_integer.inl │ │ ├── func_integer_simd.inl │ │ ├── func_matrix.inl │ │ ├── func_matrix_simd.inl │ │ ├── func_packing.inl │ │ ├── func_packing_simd.inl │ │ ├── func_trigonometric.inl │ │ ├── func_trigonometric_simd.inl │ │ ├── func_vector_relational.inl │ │ ├── func_vector_relational_simd.inl │ │ ├── glm.cpp │ │ ├── qualifier.hpp │ │ ├── setup.hpp │ │ ├── type_float.hpp │ │ ├── type_half.hpp │ │ ├── type_half.inl │ │ ├── type_mat2x2.hpp │ │ ├── type_mat2x2.inl │ │ ├── type_mat2x3.hpp │ │ ├── type_mat2x3.inl │ │ ├── type_mat2x4.hpp │ │ ├── type_mat2x4.inl │ │ ├── type_mat3x2.hpp │ │ ├── type_mat3x2.inl │ │ ├── type_mat3x3.hpp │ │ ├── type_mat3x3.inl │ │ ├── type_mat3x4.hpp │ │ ├── type_mat3x4.inl │ │ ├── type_mat4x2.hpp │ │ ├── type_mat4x2.inl │ │ ├── type_mat4x3.hpp │ │ ├── type_mat4x3.inl │ │ ├── type_mat4x4.hpp │ │ ├── type_mat4x4.inl │ │ ├── type_mat4x4_simd.inl │ │ ├── type_quat.hpp │ │ ├── type_quat.inl │ │ ├── type_quat_simd.inl │ │ ├── type_vec1.hpp │ │ ├── type_vec1.inl │ │ ├── type_vec2.hpp │ │ ├── type_vec2.inl │ │ ├── type_vec3.hpp │ │ ├── type_vec3.inl │ │ ├── type_vec4.hpp │ │ ├── type_vec4.inl │ │ └── type_vec4_simd.inl │ │ ├── exponential.hpp │ │ ├── ext.hpp │ │ ├── ext │ │ ├── matrix_clip_space.hpp │ │ ├── matrix_clip_space.inl │ │ ├── matrix_common.hpp │ │ ├── matrix_common.inl │ │ ├── matrix_double2x2.hpp │ │ ├── matrix_double2x2_precision.hpp │ │ ├── matrix_double2x3.hpp │ │ ├── matrix_double2x3_precision.hpp │ │ ├── matrix_double2x4.hpp │ │ ├── matrix_double2x4_precision.hpp │ │ ├── matrix_double3x2.hpp │ │ ├── matrix_double3x2_precision.hpp │ │ ├── matrix_double3x3.hpp │ │ ├── matrix_double3x3_precision.hpp │ │ ├── matrix_double3x4.hpp │ │ ├── matrix_double3x4_precision.hpp │ │ ├── matrix_double4x2.hpp │ │ ├── matrix_double4x2_precision.hpp │ │ ├── matrix_double4x3.hpp │ │ ├── matrix_double4x3_precision.hpp │ │ ├── matrix_double4x4.hpp │ │ ├── matrix_double4x4_precision.hpp │ │ ├── matrix_float2x2.hpp │ │ ├── matrix_float2x2_precision.hpp │ │ ├── matrix_float2x3.hpp │ │ ├── matrix_float2x3_precision.hpp │ │ ├── matrix_float2x4.hpp │ │ ├── matrix_float2x4_precision.hpp │ │ ├── matrix_float3x2.hpp │ │ ├── matrix_float3x2_precision.hpp │ │ ├── matrix_float3x3.hpp │ │ ├── matrix_float3x3_precision.hpp │ │ ├── matrix_float3x4.hpp │ │ ├── matrix_float3x4_precision.hpp │ │ ├── matrix_float4x2.hpp │ │ ├── matrix_float4x2_precision.hpp │ │ ├── matrix_float4x3.hpp │ │ ├── matrix_float4x3_precision.hpp │ │ ├── matrix_float4x4.hpp │ │ ├── matrix_float4x4_precision.hpp │ │ ├── matrix_projection.hpp │ │ ├── matrix_projection.inl │ │ ├── matrix_relational.hpp │ │ ├── matrix_relational.inl │ │ ├── matrix_transform.hpp │ │ ├── matrix_transform.inl │ │ ├── quaternion_common.hpp │ │ ├── quaternion_common.inl │ │ ├── quaternion_common_simd.inl │ │ ├── quaternion_double.hpp │ │ ├── quaternion_double_precision.hpp │ │ ├── quaternion_exponential.hpp │ │ ├── quaternion_exponential.inl │ │ ├── quaternion_float.hpp │ │ ├── quaternion_float_precision.hpp │ │ ├── quaternion_geometric.hpp │ │ ├── quaternion_geometric.inl │ │ ├── quaternion_relational.hpp │ │ ├── quaternion_relational.inl │ │ ├── quaternion_transform.hpp │ │ ├── quaternion_transform.inl │ │ ├── quaternion_trigonometric.hpp │ │ ├── quaternion_trigonometric.inl │ │ ├── scalar_common.hpp │ │ ├── scalar_common.inl │ │ ├── scalar_constants.hpp │ │ ├── scalar_constants.inl │ │ ├── scalar_int_sized.hpp │ │ ├── scalar_integer.hpp │ │ ├── scalar_integer.inl │ │ ├── scalar_relational.hpp │ │ ├── scalar_relational.inl │ │ ├── scalar_uint_sized.hpp │ │ ├── scalar_ulp.hpp │ │ ├── scalar_ulp.inl │ │ ├── vector_bool1.hpp │ │ ├── vector_bool1_precision.hpp │ │ ├── vector_bool2.hpp │ │ ├── vector_bool2_precision.hpp │ │ ├── vector_bool3.hpp │ │ ├── vector_bool3_precision.hpp │ │ ├── vector_bool4.hpp │ │ ├── vector_bool4_precision.hpp │ │ ├── vector_common.hpp │ │ ├── vector_common.inl │ │ ├── vector_double1.hpp │ │ ├── vector_double1_precision.hpp │ │ ├── vector_double2.hpp │ │ ├── vector_double2_precision.hpp │ │ ├── vector_double3.hpp │ │ ├── vector_double3_precision.hpp │ │ ├── vector_double4.hpp │ │ ├── vector_double4_precision.hpp │ │ ├── vector_float1.hpp │ │ ├── vector_float1_precision.hpp │ │ ├── vector_float2.hpp │ │ ├── vector_float2_precision.hpp │ │ ├── vector_float3.hpp │ │ ├── vector_float3_precision.hpp │ │ ├── vector_float4.hpp │ │ ├── vector_float4_precision.hpp │ │ ├── vector_int1.hpp │ │ ├── vector_int1_precision.hpp │ │ ├── vector_int2.hpp │ │ ├── vector_int2_precision.hpp │ │ ├── vector_int3.hpp │ │ ├── vector_int3_precision.hpp │ │ ├── vector_int4.hpp │ │ ├── vector_int4_precision.hpp │ │ ├── vector_integer.hpp │ │ ├── vector_integer.inl │ │ ├── vector_relational.hpp │ │ ├── vector_relational.inl │ │ ├── vector_uint1.hpp │ │ ├── vector_uint1_precision.hpp │ │ ├── vector_uint2.hpp │ │ ├── vector_uint2_precision.hpp │ │ ├── vector_uint3.hpp │ │ ├── vector_uint3_precision.hpp │ │ ├── vector_uint4.hpp │ │ ├── vector_uint4_precision.hpp │ │ ├── vector_ulp.hpp │ │ └── vector_ulp.inl │ │ ├── fwd.hpp │ │ ├── geometric.hpp │ │ ├── glm.hpp │ │ ├── gtc │ │ ├── bitfield.hpp │ │ ├── bitfield.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── constants.hpp │ │ ├── constants.inl │ │ ├── epsilon.hpp │ │ ├── epsilon.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── matrix_access.hpp │ │ ├── matrix_access.inl │ │ ├── matrix_integer.hpp │ │ ├── matrix_inverse.hpp │ │ ├── matrix_inverse.inl │ │ ├── matrix_transform.hpp │ │ ├── matrix_transform.inl │ │ ├── noise.hpp │ │ ├── noise.inl │ │ ├── packing.hpp │ │ ├── packing.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── quaternion_simd.inl │ │ ├── random.hpp │ │ ├── random.inl │ │ ├── reciprocal.hpp │ │ ├── reciprocal.inl │ │ ├── round.hpp │ │ ├── round.inl │ │ ├── type_aligned.hpp │ │ ├── type_precision.hpp │ │ ├── type_precision.inl │ │ ├── type_ptr.hpp │ │ ├── type_ptr.inl │ │ ├── ulp.hpp │ │ ├── ulp.inl │ │ └── vec1.hpp │ │ ├── gtx │ │ ├── associated_min_max.hpp │ │ ├── associated_min_max.inl │ │ ├── bit.hpp │ │ ├── bit.inl │ │ ├── closest_point.hpp │ │ ├── closest_point.inl │ │ ├── color_encoding.hpp │ │ ├── color_encoding.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── color_space_YCoCg.hpp │ │ ├── color_space_YCoCg.inl │ │ ├── common.hpp │ │ ├── common.inl │ │ ├── compatibility.hpp │ │ ├── compatibility.inl │ │ ├── component_wise.hpp │ │ ├── component_wise.inl │ │ ├── dual_quaternion.hpp │ │ ├── dual_quaternion.inl │ │ ├── easing.hpp │ │ ├── easing.inl │ │ ├── euler_angles.hpp │ │ ├── euler_angles.inl │ │ ├── extend.hpp │ │ ├── extend.inl │ │ ├── extended_min_max.hpp │ │ ├── extended_min_max.inl │ │ ├── exterior_product.hpp │ │ ├── exterior_product.inl │ │ ├── fast_exponential.hpp │ │ ├── fast_exponential.inl │ │ ├── fast_square_root.hpp │ │ ├── fast_square_root.inl │ │ ├── fast_trigonometry.hpp │ │ ├── fast_trigonometry.inl │ │ ├── float_notmalize.inl │ │ ├── functions.hpp │ │ ├── functions.inl │ │ ├── gradient_paint.hpp │ │ ├── gradient_paint.inl │ │ ├── handed_coordinate_space.hpp │ │ ├── handed_coordinate_space.inl │ │ ├── hash.hpp │ │ ├── hash.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── intersect.hpp │ │ ├── intersect.inl │ │ ├── io.hpp │ │ ├── io.inl │ │ ├── log_base.hpp │ │ ├── log_base.inl │ │ ├── matrix_cross_product.hpp │ │ ├── matrix_cross_product.inl │ │ ├── matrix_decompose.hpp │ │ ├── matrix_decompose.inl │ │ ├── matrix_factorisation.hpp │ │ ├── matrix_factorisation.inl │ │ ├── matrix_interpolation.hpp │ │ ├── matrix_interpolation.inl │ │ ├── matrix_major_storage.hpp │ │ ├── matrix_major_storage.inl │ │ ├── matrix_operation.hpp │ │ ├── matrix_operation.inl │ │ ├── matrix_query.hpp │ │ ├── matrix_query.inl │ │ ├── matrix_transform_2d.hpp │ │ ├── matrix_transform_2d.inl │ │ ├── mixed_product.hpp │ │ ├── mixed_product.inl │ │ ├── norm.hpp │ │ ├── norm.inl │ │ ├── normal.hpp │ │ ├── normal.inl │ │ ├── normalize_dot.hpp │ │ ├── normalize_dot.inl │ │ ├── number_precision.hpp │ │ ├── number_precision.inl │ │ ├── optimum_pow.hpp │ │ ├── optimum_pow.inl │ │ ├── orthonormalize.hpp │ │ ├── orthonormalize.inl │ │ ├── perpendicular.hpp │ │ ├── perpendicular.inl │ │ ├── polar_coordinates.hpp │ │ ├── polar_coordinates.inl │ │ ├── projection.hpp │ │ ├── projection.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── range.hpp │ │ ├── raw_data.hpp │ │ ├── raw_data.inl │ │ ├── rotate_normalized_axis.hpp │ │ ├── rotate_normalized_axis.inl │ │ ├── rotate_vector.hpp │ │ ├── rotate_vector.inl │ │ ├── scalar_multiplication.hpp │ │ ├── scalar_relational.hpp │ │ ├── scalar_relational.inl │ │ ├── spline.hpp │ │ ├── spline.inl │ │ ├── std_based_type.hpp │ │ ├── std_based_type.inl │ │ ├── string_cast.hpp │ │ ├── string_cast.inl │ │ ├── texture.hpp │ │ ├── texture.inl │ │ ├── transform.hpp │ │ ├── transform.inl │ │ ├── transform2.hpp │ │ ├── transform2.inl │ │ ├── type_aligned.hpp │ │ ├── type_aligned.inl │ │ ├── type_trait.hpp │ │ ├── type_trait.inl │ │ ├── vec_swizzle.hpp │ │ ├── vector_angle.hpp │ │ ├── vector_angle.inl │ │ ├── vector_query.hpp │ │ ├── vector_query.inl │ │ ├── wrap.hpp │ │ └── wrap.inl │ │ ├── integer.hpp │ │ ├── mat2x2.hpp │ │ ├── mat2x3.hpp │ │ ├── mat2x4.hpp │ │ ├── mat3x2.hpp │ │ ├── mat3x3.hpp │ │ ├── mat3x4.hpp │ │ ├── mat4x2.hpp │ │ ├── mat4x3.hpp │ │ ├── mat4x4.hpp │ │ ├── matrix.hpp │ │ ├── packing.hpp │ │ ├── simd │ │ ├── common.h │ │ ├── exponential.h │ │ ├── geometric.h │ │ ├── integer.h │ │ ├── matrix.h │ │ ├── neon.h │ │ ├── packing.h │ │ ├── platform.h │ │ ├── trigonometric.h │ │ └── vector_relational.h │ │ ├── trigonometric.hpp │ │ ├── vec2.hpp │ │ ├── vec3.hpp │ │ ├── vec4.hpp │ │ └── vector_relational.hpp ├── libs │ ├── assimp │ │ ├── LICENSE │ │ ├── assimp-vc142-mtd.dll │ │ ├── assimp-vc142-mtd.exp │ │ ├── assimp-vc142-mtd.lib │ │ └── assimpd.lib │ ├── gl │ │ ├── License.txt │ │ ├── glew32.lib │ │ └── glew32s.lib │ └── glfw │ │ ├── License.txt │ │ ├── glfw3.dll │ │ ├── glfw3.lib │ │ └── glfw3dll.lib ├── model.blend ├── model.blend1 ├── model.fbx ├── model2.mtl ├── model2.obj ├── premake5.lua ├── shaders │ ├── fs.shader │ ├── fs_pbr.shader │ └── vs.shader └── source │ ├── 3rdparty │ ├── bin │ │ └── premake │ │ │ ├── License.txt │ │ │ └── premake5.exe │ ├── imgui-docking │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ ├── issue_template.md │ │ │ ├── pull_request_template.md │ │ │ └── workflows │ │ │ │ ├── build.yml │ │ │ │ ├── scheduled.yml │ │ │ │ └── static-analysis.yml │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── backends │ │ │ ├── imgui_impl_allegro5.cpp │ │ │ ├── imgui_impl_allegro5.h │ │ │ ├── imgui_impl_dx10.cpp │ │ │ ├── imgui_impl_dx10.h │ │ │ ├── imgui_impl_dx11.cpp │ │ │ ├── imgui_impl_dx11.h │ │ │ ├── imgui_impl_dx12.cpp │ │ │ ├── imgui_impl_dx12.h │ │ │ ├── imgui_impl_dx9.cpp │ │ │ ├── imgui_impl_dx9.h │ │ │ ├── imgui_impl_glfw.cpp │ │ │ ├── imgui_impl_glfw.h │ │ │ ├── imgui_impl_glut.cpp │ │ │ ├── imgui_impl_glut.h │ │ │ ├── imgui_impl_marmalade.cpp │ │ │ ├── imgui_impl_marmalade.h │ │ │ ├── imgui_impl_metal.h │ │ │ ├── imgui_impl_metal.mm │ │ │ ├── imgui_impl_opengl2.cpp │ │ │ ├── imgui_impl_opengl2.h │ │ │ ├── imgui_impl_opengl3.cpp │ │ │ ├── imgui_impl_opengl3.h │ │ │ ├── imgui_impl_osx.h │ │ │ ├── imgui_impl_osx.mm │ │ │ ├── imgui_impl_sdl.cpp │ │ │ ├── imgui_impl_sdl.h │ │ │ ├── imgui_impl_vulkan.cpp │ │ │ ├── imgui_impl_vulkan.h │ │ │ ├── imgui_impl_wgpu.cpp │ │ │ ├── imgui_impl_wgpu.h │ │ │ ├── imgui_impl_win32.cpp │ │ │ ├── imgui_impl_win32.h │ │ │ └── vulkan │ │ │ │ ├── generate_spv.sh │ │ │ │ ├── glsl_shader.frag │ │ │ │ └── glsl_shader.vert │ │ ├── docs │ │ │ ├── BACKENDS.md │ │ │ ├── CHANGELOG.txt │ │ │ ├── EXAMPLES.md │ │ │ ├── FAQ.md │ │ │ ├── FONTS.md │ │ │ ├── README.md │ │ │ └── TODO.txt │ │ ├── examples │ │ │ ├── README.txt │ │ │ ├── example_allegro5 │ │ │ │ ├── README.md │ │ │ │ ├── example_allegro5.vcxproj │ │ │ │ ├── example_allegro5.vcxproj.filters │ │ │ │ ├── imconfig_allegro5.h │ │ │ │ └── main.cpp │ │ │ ├── example_apple_metal │ │ │ │ ├── README.md │ │ │ │ ├── example_apple_metal.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── iOS │ │ │ │ │ ├── Info-iOS.plist │ │ │ │ │ └── LaunchScreen.storyboard │ │ │ │ ├── macOS │ │ │ │ │ ├── Info-macOS.plist │ │ │ │ │ └── MainMenu.storyboard │ │ │ │ └── main.mm │ │ │ ├── example_apple_opengl2 │ │ │ │ ├── example_apple_opengl2.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── main.mm │ │ │ ├── example_emscripten_opengl3 │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── main.cpp │ │ │ │ └── shell_minimal.html │ │ │ ├── example_emscripten_wgpu │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ └── main.cpp │ │ │ ├── example_glfw_metal │ │ │ │ ├── Makefile │ │ │ │ └── main.mm │ │ │ ├── example_glfw_opengl2 │ │ │ │ ├── Makefile │ │ │ │ ├── build_win32.bat │ │ │ │ ├── example_glfw_opengl2.vcxproj │ │ │ │ ├── example_glfw_opengl2.vcxproj.filters │ │ │ │ └── main.cpp │ │ │ ├── example_glfw_opengl3 │ │ │ │ ├── Makefile │ │ │ │ ├── build_win32.bat │ │ │ │ ├── example_glfw_opengl3.vcxproj │ │ │ │ ├── example_glfw_opengl3.vcxproj.filters │ │ │ │ └── main.cpp │ │ │ ├── example_glfw_vulkan │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── build_win32.bat │ │ │ │ ├── build_win64.bat │ │ │ │ ├── example_glfw_vulkan.vcxproj │ │ │ │ ├── example_glfw_vulkan.vcxproj.filters │ │ │ │ ├── main.cpp │ │ │ │ └── out │ │ │ │ │ └── build │ │ │ │ │ └── x64-Debug (default) │ │ │ │ │ ├── .cmake │ │ │ │ │ └── api │ │ │ │ │ │ └── v1 │ │ │ │ │ │ └── query │ │ │ │ │ │ └── client-MicrosoftVS │ │ │ │ │ │ └── query.json │ │ │ │ │ └── VSInheritEnvironments.txt │ │ │ ├── example_glut_opengl2 │ │ │ │ ├── Makefile │ │ │ │ ├── example_glut_opengl2.vcxproj │ │ │ │ ├── example_glut_opengl2.vcxproj.filters │ │ │ │ └── main.cpp │ │ │ ├── example_marmalade │ │ │ │ ├── data │ │ │ │ │ └── app.icf │ │ │ │ ├── main.cpp │ │ │ │ └── marmalade_example.mkb │ │ │ ├── example_null │ │ │ │ ├── Makefile │ │ │ │ ├── build_win32.bat │ │ │ │ └── main.cpp │ │ │ ├── example_sdl_directx11 │ │ │ │ ├── build_win32.bat │ │ │ │ ├── example_sdl_directx11.vcxproj │ │ │ │ ├── example_sdl_directx11.vcxproj.filters │ │ │ │ └── main.cpp │ │ │ ├── example_sdl_metal │ │ │ │ ├── Makefile │ │ │ │ └── main.mm │ │ │ ├── example_sdl_opengl2 │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── build_win32.bat │ │ │ │ ├── example_sdl_opengl2.vcxproj │ │ │ │ ├── example_sdl_opengl2.vcxproj.filters │ │ │ │ └── main.cpp │ │ │ ├── example_sdl_opengl3 │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── build_win32.bat │ │ │ │ ├── example_sdl_opengl3.vcxproj │ │ │ │ ├── example_sdl_opengl3.vcxproj.filters │ │ │ │ └── main.cpp │ │ │ ├── example_sdl_vulkan │ │ │ │ ├── example_sdl_vulkan.vcxproj │ │ │ │ ├── example_sdl_vulkan.vcxproj.filters │ │ │ │ └── main.cpp │ │ │ ├── example_win32_directx10 │ │ │ │ ├── build_win32.bat │ │ │ │ ├── example_win32_directx10.vcxproj │ │ │ │ ├── example_win32_directx10.vcxproj.filters │ │ │ │ └── main.cpp │ │ │ ├── example_win32_directx11 │ │ │ │ ├── build_win32.bat │ │ │ │ ├── example_win32_directx11.vcxproj │ │ │ │ ├── example_win32_directx11.vcxproj.filters │ │ │ │ └── main.cpp │ │ │ ├── example_win32_directx12 │ │ │ │ ├── build_win32.bat │ │ │ │ ├── example_win32_directx12.vcxproj │ │ │ │ ├── example_win32_directx12.vcxproj.filters │ │ │ │ └── main.cpp │ │ │ ├── example_win32_directx9 │ │ │ │ ├── build_win32.bat │ │ │ │ ├── example_win32_directx9.vcxproj │ │ │ │ ├── example_win32_directx9.vcxproj.filters │ │ │ │ └── main.cpp │ │ │ ├── imgui_examples.sln │ │ │ └── libs │ │ │ │ ├── gl3w │ │ │ │ └── GL │ │ │ │ │ ├── gl3w.c │ │ │ │ │ ├── gl3w.h │ │ │ │ │ └── glcorearb.h │ │ │ │ ├── glfw │ │ │ │ ├── COPYING.txt │ │ │ │ ├── include │ │ │ │ │ └── GLFW │ │ │ │ │ │ ├── glfw3.h │ │ │ │ │ │ └── glfw3native.h │ │ │ │ ├── lib-vc2010-32 │ │ │ │ │ └── glfw3.lib │ │ │ │ └── lib-vc2010-64 │ │ │ │ │ └── glfw3.lib │ │ │ │ └── usynergy │ │ │ │ ├── README.txt │ │ │ │ ├── uSynergy.c │ │ │ │ └── uSynergy.h │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_internal.h │ │ ├── imgui_tables.cpp │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ ├── imstb_textedit.h │ │ ├── imstb_truetype.h │ │ └── misc │ │ │ ├── README.txt │ │ │ ├── cpp │ │ │ ├── README.txt │ │ │ ├── imgui_stdlib.cpp │ │ │ └── imgui_stdlib.h │ │ │ ├── fonts │ │ │ ├── Cousine-Regular.ttf │ │ │ ├── DroidSans.ttf │ │ │ ├── Karla-Regular.ttf │ │ │ ├── ProggyClean.ttf │ │ │ ├── ProggyTiny.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ └── binary_to_compressed_c.cpp │ │ │ ├── freetype │ │ │ ├── README.md │ │ │ ├── imgui_freetype.cpp │ │ │ └── imgui_freetype.h │ │ │ ├── natvis │ │ │ ├── README.txt │ │ │ └── imgui.natvis │ │ │ └── single_file │ │ │ └── imgui_single_file.h │ └── plugins │ │ └── imgui │ │ ├── ImFileBrowser.h │ │ └── LICENSE │ ├── application.cpp │ ├── application.h │ ├── elems │ ├── camera.h │ ├── element.cpp │ ├── element.h │ ├── face.cpp │ ├── face.h │ ├── input.h │ ├── light.h │ ├── mesh.cpp │ ├── mesh.h │ ├── vertex_holder.cpp │ └── vertex_holder.h │ ├── main.cpp │ ├── main.h │ ├── mesh_import │ ├── import_base.h │ ├── import_obj.cpp │ └── import_obj.h │ ├── pch.cpp │ ├── pch.h │ ├── render │ ├── opengl_buffer_manager.cpp │ ├── opengl_buffer_manager.h │ ├── opengl_context.cpp │ ├── opengl_context.h │ ├── render_base.h │ ├── ui_context.cpp │ └── ui_context.h │ ├── shader │ ├── shader_util.cpp │ └── shader_util.h │ ├── ui │ ├── property_panel.cpp │ ├── property_panel.h │ ├── scene_view.cpp │ └── scene_view.h │ ├── utils │ ├── imgui_widgets.h │ └── str_utils.h │ └── window │ ├── jgl_window.cpp │ ├── jgl_window.h │ └── window.h ├── JGL_Projects.sln ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/.gitignore -------------------------------------------------------------------------------- /JGL_MeshLoader/Icosphere.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/Icosphere.obj -------------------------------------------------------------------------------- /JGL_MeshLoader/JGL_MeshLoader.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/JGL_MeshLoader.filters -------------------------------------------------------------------------------- /JGL_MeshLoader/JGL_MeshLoader.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/JGL_MeshLoader.user -------------------------------------------------------------------------------- /JGL_MeshLoader/JGL_MeshLoader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/JGL_MeshLoader.vcxproj -------------------------------------------------------------------------------- /JGL_MeshLoader/JGL_MeshLoader.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/JGL_MeshLoader.vcxproj.user -------------------------------------------------------------------------------- /JGL_MeshLoader/cube.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/cube.fbx -------------------------------------------------------------------------------- /JGL_MeshLoader/cube_smooth.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/cube_smooth.fbx -------------------------------------------------------------------------------- /JGL_MeshLoader/defaultcube.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/defaultcube.fbx -------------------------------------------------------------------------------- /JGL_MeshLoader/dna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/dna.txt -------------------------------------------------------------------------------- /JGL_MeshLoader/imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/imgui.ini -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/.editorconfig -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/BaseImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/BaseImporter.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/Bitmap.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/BlobIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/BlobIOSystem.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/ByteSwapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/ByteSwapper.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/ColladaMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/ColladaMetaData.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/Compiler/poppack1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/Compiler/poppack1.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/Compiler/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/Compiler/pstdint.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/Compiler/pushpack1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/Compiler/pushpack1.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/CreateAnimMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/CreateAnimMesh.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/DefaultIOStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/DefaultIOStream.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/DefaultIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/DefaultIOSystem.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/DefaultLogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/DefaultLogger.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/Defines.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/Exceptional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/Exceptional.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/Exporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/Exporter.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/GenericProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/GenericProperty.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/Hash.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/IOStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/IOStream.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/IOStreamBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/IOStreamBuffer.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/IOSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/IOSystem.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/Importer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/Importer.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/LineSplitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/LineSplitter.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/LogAux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/LogAux.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/LogStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/LogStream.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/Logger.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/MathFunctions.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/MemoryIOWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/MemoryIOWrapper.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/NullLogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/NullLogger.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/ParsingUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/ParsingUtils.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/Profiler.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/ProgressHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/ProgressHandler.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/RemoveComments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/RemoveComments.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/SGSpatialSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/SGSpatialSort.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/SceneCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/SceneCombiner.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/SkeletonMeshBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/SkeletonMeshBuilder.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/SmallVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/SmallVector.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/SmoothingGroups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/SmoothingGroups.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/SmoothingGroups.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/SmoothingGroups.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/SpatialSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/SpatialSort.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/StandardShapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/StandardShapes.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/StreamReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/StreamReader.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/StreamWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/StreamWriter.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/StringComparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/StringComparison.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/StringUtils.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/Subdivision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/Subdivision.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/TinyFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/TinyFormatter.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/Vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/Vertex.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/XMLTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/XMLTools.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/XmlParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/XmlParser.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/ZipArchiveIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/ZipArchiveIOSystem.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/aabb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/aabb.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/ai_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/ai_assert.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/anim.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/camera.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/cexport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/cexport.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/cfileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/cfileio.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/cimport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/cimport.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/color4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/color4.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/color4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/color4.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/commonMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/commonMetaData.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/config.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/config.h.in -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/defs.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/fast_atof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/fast_atof.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/importerdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/importerdesc.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/light.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/material.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/material.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/material.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/matrix3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/matrix3x3.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/matrix3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/matrix3x3.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/matrix4x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/matrix4x4.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/matrix4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/matrix4x4.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/mesh.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/metadata.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/pbrmaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/pbrmaterial.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/port/AndroidJNI/AndroidJNIIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/port/AndroidJNI/AndroidJNIIOSystem.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/port/AndroidJNI/BundledAssetIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/port/AndroidJNI/BundledAssetIOSystem.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/postprocess.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/qnan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/qnan.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/quaternion.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/quaternion.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/scene.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/texture.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/types.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/vector2.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/vector2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/vector2.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/vector3.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/vector3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/vector3.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/assimp/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/assimp/version.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/gl/eglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/gl/eglew.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/gl/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/gl/glew.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/gl/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/gl/glxew.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/gl/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/gl/wglew.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glfw/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glfw/glfw3.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glfw/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glfw/glfw3native.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/CMakeLists.txt -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/License.txt -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/common.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/_features.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/compute_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/compute_common.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/compute_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/compute_vector_relational.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/func_common.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/func_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/func_common_simd.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/func_exponential_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/func_exponential_simd.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/func_geometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/func_geometric_simd.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/func_integer_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/func_integer_simd.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/func_matrix_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/func_matrix_simd.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/func_packing_simd.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/func_vector_relational_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/func_vector_relational_simd.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/glm.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/qualifier.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/setup.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_half.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_mat4x4_simd.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_quat.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_quat.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_quat_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_quat_simd.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/detail/type_vec4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/detail/type_vec4_simd.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/exponential.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_clip_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_clip_space.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_clip_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_clip_space.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_common.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_common.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_double2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_double2x2.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_double2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_double2x2_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_double2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_double2x3.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_double2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_double2x3_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_double2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_double2x4.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_double2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_double2x4_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_double3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_double3x2.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_double3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_double3x2_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_double3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_double3x3.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_double3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_double3x3_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_double3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_double3x4.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_double3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_double3x4_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_double4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_double4x2.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_double4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_double4x2_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_double4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_double4x3.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_double4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_double4x3_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_double4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_double4x4.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_double4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_double4x4_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_float2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_float2x2.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_float2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_float2x2_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_float2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_float2x3.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_float2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_float2x3_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_float2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_float2x4.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_float2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_float2x4_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_float3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_float3x2.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_float3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_float3x2_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_float3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_float3x3.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_float3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_float3x3_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_float3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_float3x4.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_float3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_float3x4_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_float4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_float4x2.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_float4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_float4x2_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_float4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_float4x3.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_float4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_float4x3_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_float4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_float4x4.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_float4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_float4x4_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_projection.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_projection.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_relational.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_relational.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_transform.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/matrix_transform.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/quaternion_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/quaternion_common.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/quaternion_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/quaternion_common.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/quaternion_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/quaternion_common_simd.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/quaternion_double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/quaternion_double.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/quaternion_double_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/quaternion_double_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/quaternion_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/quaternion_exponential.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/quaternion_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/quaternion_exponential.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/quaternion_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/quaternion_float.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/quaternion_float_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/quaternion_float_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/quaternion_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/quaternion_geometric.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/quaternion_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/quaternion_geometric.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/quaternion_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/quaternion_relational.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/quaternion_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/quaternion_relational.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/quaternion_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/quaternion_transform.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/quaternion_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/quaternion_transform.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/quaternion_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/quaternion_trigonometric.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/quaternion_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/quaternion_trigonometric.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/scalar_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/scalar_common.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/scalar_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/scalar_common.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/scalar_constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/scalar_constants.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/scalar_constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/scalar_constants.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/scalar_int_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/scalar_int_sized.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/scalar_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/scalar_integer.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/scalar_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/scalar_integer.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/scalar_relational.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/scalar_relational.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/scalar_uint_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/scalar_uint_sized.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/scalar_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/scalar_ulp.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/scalar_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/scalar_ulp.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_bool1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_bool1.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_bool1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_bool1_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_bool2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_bool2.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_bool2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_bool2_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_bool3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_bool3.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_bool3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_bool3_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_bool4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_bool4.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_bool4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_bool4_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_common.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_common.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_double1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_double1.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_double1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_double1_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_double2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_double2.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_double2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_double2_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_double3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_double3.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_double3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_double3_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_double4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_double4.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_double4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_double4_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_float1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_float1.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_float1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_float1_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_float2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_float2.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_float2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_float2_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_float3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_float3.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_float3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_float3_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_float4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_float4.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_float4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_float4_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_int1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_int1.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_int1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_int1_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_int2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_int2.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_int2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_int2_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_int3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_int3.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_int3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_int3_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_int4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_int4.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_int4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_int4_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_integer.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_integer.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_relational.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_relational.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_uint1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_uint1.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_uint1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_uint1_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_uint2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_uint2.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_uint2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_uint2_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_uint3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_uint3.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_uint3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_uint3_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_uint4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_uint4.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_uint4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_uint4_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_ulp.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/ext/vector_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/ext/vector_ulp.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/fwd.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/geometric.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/glm.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/constants.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/integer.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/noise.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/packing.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/random.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/random.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/round.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/round.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/bit.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/color_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/color_encoding.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/color_encoding.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/common.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/common.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/easing.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/extend.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/extended_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/extended_min_max.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/extended_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/extended_min_max.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/exterior_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/exterior_product.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/exterior_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/exterior_product.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/float_notmalize.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/functions.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/hash.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/integer.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/io.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/io.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/matrix_factorisation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/matrix_factorisation.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/matrix_factorisation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/matrix_factorisation.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/norm.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/normal.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/projection.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/range.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/scalar_multiplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/scalar_multiplication.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/spline.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/texture.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/transform.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/integer.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/mat2x2.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/mat2x3.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/mat2x4.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/mat3x2.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/mat3x3.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/mat3x4.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/mat4x2.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/mat4x3.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/mat4x4.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/matrix.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/packing.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/simd/common.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/simd/exponential.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/simd/geometric.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/simd/integer.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/simd/matrix.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/simd/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/simd/neon.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/simd/packing.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/simd/platform.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/simd/vector_relational.h -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/trigonometric.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/vec2.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/vec3.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/vec4.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/include/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/include/glm/vector_relational.hpp -------------------------------------------------------------------------------- /JGL_MeshLoader/libs/assimp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/libs/assimp/LICENSE -------------------------------------------------------------------------------- /JGL_MeshLoader/libs/assimp/assimp-vc142-mtd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/libs/assimp/assimp-vc142-mtd.dll -------------------------------------------------------------------------------- /JGL_MeshLoader/libs/assimp/assimp-vc142-mtd.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/libs/assimp/assimp-vc142-mtd.exp -------------------------------------------------------------------------------- /JGL_MeshLoader/libs/assimp/assimp-vc142-mtd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/libs/assimp/assimp-vc142-mtd.lib -------------------------------------------------------------------------------- /JGL_MeshLoader/libs/assimp/assimpd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/libs/assimp/assimpd.lib -------------------------------------------------------------------------------- /JGL_MeshLoader/libs/gl/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/libs/gl/License.txt -------------------------------------------------------------------------------- /JGL_MeshLoader/libs/gl/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/libs/gl/glew32.lib -------------------------------------------------------------------------------- /JGL_MeshLoader/libs/gl/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/libs/gl/glew32s.lib -------------------------------------------------------------------------------- /JGL_MeshLoader/libs/glfw/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/libs/glfw/License.txt -------------------------------------------------------------------------------- /JGL_MeshLoader/libs/glfw/glfw3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/libs/glfw/glfw3.dll -------------------------------------------------------------------------------- /JGL_MeshLoader/libs/glfw/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/libs/glfw/glfw3.lib -------------------------------------------------------------------------------- /JGL_MeshLoader/libs/glfw/glfw3dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/libs/glfw/glfw3dll.lib -------------------------------------------------------------------------------- /JGL_MeshLoader/model.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/model.blend -------------------------------------------------------------------------------- /JGL_MeshLoader/model.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/model.blend1 -------------------------------------------------------------------------------- /JGL_MeshLoader/model.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/model.fbx -------------------------------------------------------------------------------- /JGL_MeshLoader/model2.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/model2.mtl -------------------------------------------------------------------------------- /JGL_MeshLoader/model2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/model2.obj -------------------------------------------------------------------------------- /JGL_MeshLoader/premake5.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JGL_MeshLoader/shaders/fs.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/shaders/fs.shader -------------------------------------------------------------------------------- /JGL_MeshLoader/shaders/fs_pbr.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/shaders/fs_pbr.shader -------------------------------------------------------------------------------- /JGL_MeshLoader/shaders/vs.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/shaders/vs.shader -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/bin/premake/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/bin/premake/License.txt -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/bin/premake/premake5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/bin/premake/premake5.exe -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/.editorconfig -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/.gitattributes -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://github.com/ocornut/imgui/wiki/Sponsors'] 2 | -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/.github/issue_template.md -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/.github/pull_request_template.md -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/.github/workflows/build.yml -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/.github/workflows/scheduled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/.github/workflows/scheduled.yml -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/.github/workflows/static-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/.github/workflows/static-analysis.yml -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/.gitignore -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/LICENSE.txt -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_allegro5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_allegro5.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_allegro5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_allegro5.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_dx10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_dx10.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_dx10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_dx10.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_dx11.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_dx12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_dx12.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_dx12.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_dx9.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_glfw.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_glfw.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_glut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_glut.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_glut.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_marmalade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_marmalade.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_marmalade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_marmalade.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_metal.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_metal.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_metal.mm -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_opengl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_opengl2.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_opengl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_opengl2.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_osx.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_osx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_osx.mm -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_sdl.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_sdl.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_vulkan.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_vulkan.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_wgpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_wgpu.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_wgpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_wgpu.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/imgui_impl_win32.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/vulkan/generate_spv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/vulkan/generate_spv.sh -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/vulkan/glsl_shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/vulkan/glsl_shader.frag -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/backends/vulkan/glsl_shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/backends/vulkan/glsl_shader.vert -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/docs/BACKENDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/docs/BACKENDS.md -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/docs/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/docs/CHANGELOG.txt -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/docs/EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/docs/EXAMPLES.md -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/docs/FAQ.md -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/docs/FONTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/docs/FONTS.md -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/docs/README.md -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/docs/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/docs/TODO.txt -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/README.txt: -------------------------------------------------------------------------------- 1 | See EXAMPLES and BACKENDS files in the docs/ folder. 2 | -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_allegro5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_allegro5/README.md -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_allegro5/example_allegro5.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_allegro5/example_allegro5.vcxproj -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_allegro5/example_allegro5.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_allegro5/example_allegro5.vcxproj.filters -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_allegro5/imconfig_allegro5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_allegro5/imconfig_allegro5.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_allegro5/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_allegro5/main.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_apple_metal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_apple_metal/README.md -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_apple_metal/example_apple_metal.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_apple_metal/example_apple_metal.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_apple_metal/iOS/Info-iOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_apple_metal/iOS/Info-iOS.plist -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_apple_metal/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_apple_metal/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_apple_metal/macOS/Info-macOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_apple_metal/macOS/Info-macOS.plist -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_apple_metal/macOS/MainMenu.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_apple_metal/macOS/MainMenu.storyboard -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_apple_metal/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_apple_metal/main.mm -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_apple_opengl2/example_apple_opengl2.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_apple_opengl2/example_apple_opengl2.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_apple_opengl2/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_apple_opengl2/main.mm -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_emscripten_opengl3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_emscripten_opengl3/Makefile -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_emscripten_opengl3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_emscripten_opengl3/README.md -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_emscripten_opengl3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_emscripten_opengl3/main.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_emscripten_opengl3/shell_minimal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_emscripten_opengl3/shell_minimal.html -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_emscripten_wgpu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_emscripten_wgpu/Makefile -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_emscripten_wgpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_emscripten_wgpu/README.md -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_emscripten_wgpu/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_emscripten_wgpu/main.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_metal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_metal/Makefile -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_metal/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_metal/main.mm -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_opengl2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_opengl2/Makefile -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_opengl2/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_opengl2/build_win32.bat -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj.filters -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_opengl2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_opengl2/main.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_opengl3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_opengl3/Makefile -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_opengl3/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_opengl3/build_win32.bat -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj.filters -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_opengl3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_opengl3/main.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_vulkan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_vulkan/CMakeLists.txt -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_vulkan/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_vulkan/build_win32.bat -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_vulkan/build_win64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_vulkan/build_win64.bat -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj.filters -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_vulkan/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_vulkan/main.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_vulkan/out/build/x64-Debug (default)/.cmake/api/v1/query/client-MicrosoftVS/query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_vulkan/out/build/x64-Debug (default)/.cmake/api/v1/query/client-MicrosoftVS/query.json -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_vulkan/out/build/x64-Debug (default)/VSInheritEnvironments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glfw_vulkan/out/build/x64-Debug (default)/VSInheritEnvironments.txt -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glut_opengl2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glut_opengl2/Makefile -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glut_opengl2/example_glut_opengl2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glut_opengl2/example_glut_opengl2.vcxproj -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glut_opengl2/example_glut_opengl2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glut_opengl2/example_glut_opengl2.vcxproj.filters -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glut_opengl2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_glut_opengl2/main.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_marmalade/data/app.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_marmalade/data/app.icf -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_marmalade/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_marmalade/main.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_marmalade/marmalade_example.mkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_marmalade/marmalade_example.mkb -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_null/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_null/Makefile -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_null/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_null/build_win32.bat -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_null/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_null/main.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_directx11/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_directx11/build_win32.bat -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_directx11/example_sdl_directx11.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_directx11/example_sdl_directx11.vcxproj -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_directx11/example_sdl_directx11.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_directx11/example_sdl_directx11.vcxproj.filters -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_directx11/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_directx11/main.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_metal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_metal/Makefile -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_metal/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_metal/main.mm -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_opengl2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_opengl2/Makefile -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_opengl2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_opengl2/README.md -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_opengl2/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_opengl2/build_win32.bat -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_opengl2/example_sdl_opengl2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_opengl2/example_sdl_opengl2.vcxproj -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_opengl2/example_sdl_opengl2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_opengl2/example_sdl_opengl2.vcxproj.filters -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_opengl2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_opengl2/main.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_opengl3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_opengl3/Makefile -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_opengl3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_opengl3/README.md -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_opengl3/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_opengl3/build_win32.bat -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_opengl3/example_sdl_opengl3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_opengl3/example_sdl_opengl3.vcxproj -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_opengl3/example_sdl_opengl3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_opengl3/example_sdl_opengl3.vcxproj.filters -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_opengl3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_opengl3/main.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_vulkan/example_sdl_vulkan.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_vulkan/example_sdl_vulkan.vcxproj -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_vulkan/example_sdl_vulkan.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_vulkan/example_sdl_vulkan.vcxproj.filters -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_vulkan/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_sdl_vulkan/main.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx10/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx10/build_win32.bat -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx10/example_win32_directx10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx10/example_win32_directx10.vcxproj -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx10/example_win32_directx10.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx10/example_win32_directx10.vcxproj.filters -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx10/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx10/main.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx11/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx11/build_win32.bat -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx11/example_win32_directx11.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx11/example_win32_directx11.vcxproj -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx11/example_win32_directx11.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx11/example_win32_directx11.vcxproj.filters -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx11/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx11/main.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx12/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx12/build_win32.bat -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx12/example_win32_directx12.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx12/example_win32_directx12.vcxproj -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx12/example_win32_directx12.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx12/example_win32_directx12.vcxproj.filters -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx12/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx12/main.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx9/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx9/build_win32.bat -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx9/example_win32_directx9.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx9/example_win32_directx9.vcxproj -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx9/example_win32_directx9.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx9/example_win32_directx9.vcxproj.filters -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx9/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/example_win32_directx9/main.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/imgui_examples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/imgui_examples.sln -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/libs/gl3w/GL/gl3w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/libs/gl3w/GL/gl3w.c -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/libs/gl3w/GL/gl3w.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/libs/gl3w/GL/gl3w.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/libs/gl3w/GL/glcorearb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/libs/gl3w/GL/glcorearb.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/libs/glfw/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/libs/glfw/COPYING.txt -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/libs/glfw/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/libs/glfw/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/libs/glfw/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/libs/glfw/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/libs/glfw/lib-vc2010-32/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/libs/glfw/lib-vc2010-32/glfw3.lib -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/libs/glfw/lib-vc2010-64/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/libs/glfw/lib-vc2010-64/glfw3.lib -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/libs/usynergy/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/libs/usynergy/README.txt -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/libs/usynergy/uSynergy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/libs/usynergy/uSynergy.c -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/examples/libs/usynergy/uSynergy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/examples/libs/usynergy/uSynergy.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/imconfig.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/imgui.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/imgui.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/imgui_demo.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/imgui_draw.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/imgui_internal.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/imgui_tables.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/imgui_widgets.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/imstb_rectpack.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/imstb_textedit.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/imstb_truetype.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/misc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/misc/README.txt -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/misc/cpp/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/misc/cpp/README.txt -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/misc/cpp/imgui_stdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/misc/cpp/imgui_stdlib.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/misc/cpp/imgui_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/misc/cpp/imgui_stdlib.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/misc/fonts/Cousine-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/misc/fonts/Cousine-Regular.ttf -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/misc/fonts/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/misc/fonts/DroidSans.ttf -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/misc/fonts/Karla-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/misc/fonts/Karla-Regular.ttf -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/misc/fonts/ProggyClean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/misc/fonts/ProggyClean.ttf -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/misc/fonts/ProggyTiny.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/misc/fonts/ProggyTiny.ttf -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/misc/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/misc/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/misc/fonts/binary_to_compressed_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/misc/fonts/binary_to_compressed_c.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/misc/freetype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/misc/freetype/README.md -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/misc/freetype/imgui_freetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/misc/freetype/imgui_freetype.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/misc/freetype/imgui_freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/misc/freetype/imgui_freetype.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/misc/natvis/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/misc/natvis/README.txt -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/misc/natvis/imgui.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/misc/natvis/imgui.natvis -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/imgui-docking/misc/single_file/imgui_single_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/imgui-docking/misc/single_file/imgui_single_file.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/plugins/imgui/ImFileBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/plugins/imgui/ImFileBrowser.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/3rdparty/plugins/imgui/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/3rdparty/plugins/imgui/LICENSE -------------------------------------------------------------------------------- /JGL_MeshLoader/source/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/application.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/application.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/elems/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/elems/camera.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/elems/element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/elems/element.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/elems/element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/elems/element.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/elems/face.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/elems/face.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/elems/face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/elems/face.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/elems/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/elems/input.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/elems/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/elems/light.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/elems/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/elems/mesh.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/elems/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/elems/mesh.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/elems/vertex_holder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/elems/vertex_holder.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/elems/vertex_holder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/elems/vertex_holder.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/main.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/main.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/mesh_import/import_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/mesh_import/import_base.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/mesh_import/import_obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/mesh_import/import_obj.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/mesh_import/import_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/mesh_import/import_obj.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /JGL_MeshLoader/source/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/pch.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/render/opengl_buffer_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/render/opengl_buffer_manager.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/render/opengl_buffer_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/render/opengl_buffer_manager.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/render/opengl_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/render/opengl_context.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/render/opengl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/render/opengl_context.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/render/render_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/render/render_base.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/render/ui_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/render/ui_context.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/render/ui_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/render/ui_context.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/shader/shader_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/shader/shader_util.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/shader/shader_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/shader/shader_util.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/ui/property_panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/ui/property_panel.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/ui/property_panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/ui/property_panel.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/ui/scene_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/ui/scene_view.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/ui/scene_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/ui/scene_view.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/utils/imgui_widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/utils/imgui_widgets.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/utils/str_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/utils/str_utils.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/window/jgl_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/window/jgl_window.cpp -------------------------------------------------------------------------------- /JGL_MeshLoader/source/window/jgl_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/window/jgl_window.h -------------------------------------------------------------------------------- /JGL_MeshLoader/source/window/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_MeshLoader/source/window/window.h -------------------------------------------------------------------------------- /JGL_Projects.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/JGL_Projects.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayanam/jgl_demos/HEAD/README.md --------------------------------------------------------------------------------