├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── dependencies ├── dlls │ ├── assimp-vc140-mt.dll │ ├── glew32.dll │ ├── optix.1.dll │ └── optixu.1.dll ├── include │ ├── GL │ │ ├── LICENSE.txt │ │ ├── eglew.h │ │ ├── glew.h │ │ ├── glxew.h │ │ └── wglew.h │ ├── GLFW │ │ ├── LICENSE.txt │ │ ├── glfw3.h │ │ └── glfw3native.h │ ├── assimp │ │ ├── .editorconfig │ │ ├── Compiler │ │ │ ├── poppack1.h │ │ │ ├── pstdint.h │ │ │ └── pushpack1.h │ │ ├── DefaultLogger.hpp │ │ ├── Exporter.hpp │ │ ├── IOStream.hpp │ │ ├── IOSystem.hpp │ │ ├── Importer.hpp │ │ ├── LICENSE.txt │ │ ├── LogStream.hpp │ │ ├── Logger.hpp │ │ ├── NullLogger.hpp │ │ ├── ProgressHandler.hpp │ │ ├── ai_assert.h │ │ ├── anim.h │ │ ├── camera.h │ │ ├── cexport.h │ │ ├── cfileio.h │ │ ├── cimport.h │ │ ├── color4.h │ │ ├── color4.inl │ │ ├── config.h │ │ ├── defs.h │ │ ├── importerdesc.h │ │ ├── light.h │ │ ├── material.h │ │ ├── material.inl │ │ ├── matrix3x3.h │ │ ├── matrix3x3.inl │ │ ├── matrix4x4.h │ │ ├── matrix4x4.inl │ │ ├── mesh.h │ │ ├── metadata.h │ │ ├── port │ │ │ └── AndroidJNI │ │ │ │ └── AndroidJNIIOSystem.h │ │ ├── postprocess.h │ │ ├── quaternion.h │ │ ├── quaternion.inl │ │ ├── scene.h │ │ ├── texture.h │ │ ├── types.h │ │ ├── vector2.h │ │ ├── vector2.inl │ │ ├── vector3.h │ │ ├── vector3.inl │ │ └── version.h │ ├── glm │ │ ├── CMakeLists.txt │ │ ├── LICENSE.txt │ │ ├── common.hpp │ │ ├── copying.txt │ │ ├── detail │ │ │ ├── _features.hpp │ │ │ ├── _fixes.hpp │ │ │ ├── _noise.hpp │ │ │ ├── _swizzle.hpp │ │ │ ├── _swizzle_func.hpp │ │ │ ├── _vectorize.hpp │ │ │ ├── dummy.cpp │ │ │ ├── func_common.hpp │ │ │ ├── func_common.inl │ │ │ ├── func_common_simd.inl │ │ │ ├── func_exponential.hpp │ │ │ ├── func_exponential.inl │ │ │ ├── func_exponential_simd.inl │ │ │ ├── func_geometric.hpp │ │ │ ├── func_geometric.inl │ │ │ ├── func_geometric_simd.inl │ │ │ ├── func_integer.hpp │ │ │ ├── func_integer.inl │ │ │ ├── func_integer_simd.inl │ │ │ ├── func_matrix.hpp │ │ │ ├── func_matrix.inl │ │ │ ├── func_matrix_simd.inl │ │ │ ├── func_packing.hpp │ │ │ ├── func_packing.inl │ │ │ ├── func_packing_simd.inl │ │ │ ├── func_trigonometric.hpp │ │ │ ├── func_trigonometric.inl │ │ │ ├── func_trigonometric_simd.inl │ │ │ ├── func_vector_relational.hpp │ │ │ ├── func_vector_relational.inl │ │ │ ├── func_vector_relational_simd.inl │ │ │ ├── glm.cpp │ │ │ ├── precision.hpp │ │ │ ├── setup.hpp │ │ │ ├── type_float.hpp │ │ │ ├── type_gentype.hpp │ │ │ ├── type_gentype.inl │ │ │ ├── type_half.hpp │ │ │ ├── type_half.inl │ │ │ ├── type_int.hpp │ │ │ ├── type_mat.hpp │ │ │ ├── type_mat.inl │ │ │ ├── type_mat2x2.hpp │ │ │ ├── type_mat2x2.inl │ │ │ ├── type_mat2x3.hpp │ │ │ ├── type_mat2x3.inl │ │ │ ├── type_mat2x4.hpp │ │ │ ├── type_mat2x4.inl │ │ │ ├── type_mat3x2.hpp │ │ │ ├── type_mat3x2.inl │ │ │ ├── type_mat3x3.hpp │ │ │ ├── type_mat3x3.inl │ │ │ ├── type_mat3x4.hpp │ │ │ ├── type_mat3x4.inl │ │ │ ├── type_mat4x2.hpp │ │ │ ├── type_mat4x2.inl │ │ │ ├── type_mat4x3.hpp │ │ │ ├── type_mat4x3.inl │ │ │ ├── type_mat4x4.hpp │ │ │ ├── type_mat4x4.inl │ │ │ ├── type_mat4x4_simd.inl │ │ │ ├── type_vec.hpp │ │ │ ├── type_vec.inl │ │ │ ├── type_vec1.hpp │ │ │ ├── type_vec1.inl │ │ │ ├── type_vec2.hpp │ │ │ ├── type_vec2.inl │ │ │ ├── type_vec3.hpp │ │ │ ├── type_vec3.inl │ │ │ ├── type_vec4.hpp │ │ │ ├── type_vec4.inl │ │ │ └── type_vec4_simd.inl │ │ ├── exponential.hpp │ │ ├── ext.hpp │ │ ├── fwd.hpp │ │ ├── geometric.hpp │ │ ├── glm.hpp │ │ ├── gtc │ │ │ ├── bitfield.hpp │ │ │ ├── bitfield.inl │ │ │ ├── color_encoding.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── constants.hpp │ │ │ ├── constants.inl │ │ │ ├── epsilon.hpp │ │ │ ├── epsilon.inl │ │ │ ├── functions.hpp │ │ │ ├── functions.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 │ │ │ └── vec1.inl │ │ ├── gtx │ │ │ ├── associated_min_max.hpp │ │ │ ├── associated_min_max.inl │ │ │ ├── bit.hpp │ │ │ ├── bit.inl │ │ │ ├── closest_point.hpp │ │ │ ├── closest_point.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── color_space_YCoCg.hpp │ │ │ ├── color_space_YCoCg.inl │ │ │ ├── common.hpp │ │ │ ├── common.inl │ │ │ ├── compatibility.hpp │ │ │ ├── compatibility.inl │ │ │ ├── component_wise.hpp │ │ │ ├── component_wise.inl │ │ │ ├── dual_quaternion.hpp │ │ │ ├── dual_quaternion.inl │ │ │ ├── euler_angles.hpp │ │ │ ├── euler_angles.inl │ │ │ ├── extend.hpp │ │ │ ├── extend.inl │ │ │ ├── extended_min_max.hpp │ │ │ ├── extended_min_max.inl │ │ │ ├── fast_exponential.hpp │ │ │ ├── fast_exponential.inl │ │ │ ├── fast_square_root.hpp │ │ │ ├── fast_square_root.inl │ │ │ ├── fast_trigonometry.hpp │ │ │ ├── fast_trigonometry.inl │ │ │ ├── float_notmalize.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_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 │ │ │ ├── simd_mat4.hpp │ │ │ ├── simd_mat4.inl │ │ │ ├── simd_quat.hpp │ │ │ ├── simd_quat.inl │ │ │ ├── simd_vec4.hpp │ │ │ ├── simd_vec4.inl │ │ │ ├── spline.hpp │ │ │ ├── spline.inl │ │ │ ├── std_based_type.hpp │ │ │ ├── std_based_type.inl │ │ │ ├── string_cast.hpp │ │ │ ├── string_cast.inl │ │ │ ├── transform.hpp │ │ │ ├── transform.inl │ │ │ ├── transform2.hpp │ │ │ ├── transform2.inl │ │ │ ├── type_aligned.hpp │ │ │ ├── type_aligned.inl │ │ │ ├── type_trait.hpp │ │ │ ├── type_trait.inl │ │ │ ├── vector_angle.hpp │ │ │ ├── vector_angle.inl │ │ │ ├── vector_query.hpp │ │ │ ├── vector_query.inl │ │ │ ├── wrap.hpp │ │ │ └── wrap.inl │ │ ├── integer.hpp │ │ ├── mat2x2.hpp │ │ ├── mat2x3.hpp │ │ ├── mat2x4.hpp │ │ ├── mat3x2.hpp │ │ ├── mat3x3.hpp │ │ ├── mat3x4.hpp │ │ ├── mat4x2.hpp │ │ ├── mat4x3.hpp │ │ ├── mat4x4.hpp │ │ ├── matrix.hpp │ │ ├── packing.hpp │ │ ├── simd │ │ │ ├── common.h │ │ │ ├── exponential.h │ │ │ ├── geometric.h │ │ │ ├── integer.h │ │ │ ├── matrix.h │ │ │ ├── packing.h │ │ │ ├── platform.h │ │ │ ├── trigonometric.h │ │ │ └── vector_relational.h │ │ ├── trigonometric.hpp │ │ ├── vec2.hpp │ │ ├── vec3.hpp │ │ ├── vec4.hpp │ │ └── vector_relational.hpp │ ├── json │ │ ├── LICENSE.txt │ │ └── json.hpp │ └── stb │ │ ├── LICENSE.txt │ │ ├── stb_image.h │ │ └── stb_image_write.h └── lib64 │ ├── assimp-vc140-mt.exp │ ├── assimp-vc140-mt.lib │ ├── embree.lib │ ├── glew32.lib │ ├── glew32s.lib │ ├── glfw3.lib │ └── glfw3dll.lib ├── readme-resources ├── main_image.jpg └── main_image.png ├── reflectcuts.sln ├── reflectcuts ├── common │ ├── floatimage │ │ ├── floatimage.cpp │ │ ├── floatimage.h │ │ ├── rgbe.cpp │ │ └── rgbe.h │ ├── realtime.h │ ├── reflectcuts.h │ ├── rng.h │ ├── sampler.h │ ├── shape.h │ ├── stopwatch.h │ ├── util.cpp │ └── util.h ├── json │ ├── LICENSE.txt │ └── json.hpp ├── main.cpp ├── math │ ├── aabb.h │ ├── color.h │ ├── mapping.h │ ├── math.cpp │ ├── math.h │ ├── ray.cpp │ └── ray.h ├── opengl │ ├── buffer.h │ ├── query.h │ └── shader.h ├── realtimetechniques │ ├── all.cuh │ ├── lighttracing.cu │ ├── lvclighttracing.cu │ ├── pathtracing.cu │ ├── rtcommon.h │ ├── rtcomphoton │ │ ├── rtcomphoton.h │ │ ├── rtlvccomphoton.h │ │ └── rtphotonrecord.h │ ├── rtlightsource.cuh │ ├── rtmaterial.cuh │ ├── rtmath.cuh │ ├── rtpt │ │ └── rtpt2.h │ ├── rttechnique.h │ └── triangleintersect.cu ├── reflectcuts.vcxproj ├── reflectcuts.vcxproj.filters ├── sampler │ └── independent.h ├── shaders │ ├── deferred.frag │ ├── deferred.geom │ ├── deferred.vert │ ├── final.frag │ ├── final.vert │ ├── light.frag │ ├── light.vert │ ├── photonsplatinstanced.frag │ ├── photonsplatinstanced.geom │ └── photonsplatinstanced.vert ├── shapes │ ├── trianglemesh.cpp │ └── trianglemesh.h ├── sphere │ └── icosphere.obj └── stb │ ├── LICENSE.txt │ ├── stb_image.h │ └── stb_image_write.h └── scene ├── buddha ├── buddha_exported.mtl ├── buddha_exported.obj ├── buddha_exported_lights.mtl ├── buddha_exported_lights.obj ├── buddha_ours.json ├── buddha_ours_progressive.json ├── buddha_pm.json ├── buddha_pm_progressive.json ├── buddha_pt.json ├── buddha_pt_progressive.json ├── buddha_vpl.json ├── buddha_vpl_progressive.json ├── buddha_vsl.json └── buddha_vsl_progressive.json ├── conference ├── README.md ├── conference_exported.mtl ├── conference_exported.obj ├── conference_exported_lights.mtl ├── conference_exported_lights.obj ├── conference_mask.png ├── conference_ours.json ├── conference_ours_progressive.json ├── conference_pm.json ├── conference_pm_progressive.json ├── conference_pt.json ├── conference_pt_progressive.json ├── conference_vpl.json ├── conference_vpl_progressive.json ├── conference_vsl.json └── conference_vsl_progressive.json └── livingroom ├── BLENDSWAP_LICENSE.txt ├── livingroom_exported.mtl ├── livingroom_exported.obj ├── livingroom_exported_lights.mtl ├── livingroom_exported_lights.obj ├── livingroom_ours.json ├── livingroom_ours_progressive.json ├── livingroom_pm.json ├── livingroom_pm_progressive.json ├── livingroom_pt.json ├── livingroom_pt_progressive.json ├── livingroom_vpl.json ├── livingroom_vpl_progressive.json ├── livingroom_vsl.json ├── livingroom_vsl_progressive.json └── textures ├── 064marilyn_2.jpg ├── 268772_429489723761181_676140463_n.jpg ├── 3586390-529225-set-ornament-template-fabric-texture-red-ribbons-vector-eps10.jpg ├── TroncoUnwrap.jpg ├── black-vertical-siding-texture-600x400.jpg ├── black-vertical-siding-texture-600x400_scaled.jpg ├── book.jpg ├── ksiazki.jpg ├── wino.jpg └── wood_32_diffuse.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/README.md -------------------------------------------------------------------------------- /dependencies/dlls/assimp-vc140-mt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/dlls/assimp-vc140-mt.dll -------------------------------------------------------------------------------- /dependencies/dlls/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/dlls/glew32.dll -------------------------------------------------------------------------------- /dependencies/dlls/optix.1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/dlls/optix.1.dll -------------------------------------------------------------------------------- /dependencies/dlls/optixu.1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/dlls/optixu.1.dll -------------------------------------------------------------------------------- /dependencies/include/GL/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/GL/LICENSE.txt -------------------------------------------------------------------------------- /dependencies/include/GL/eglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/GL/eglew.h -------------------------------------------------------------------------------- /dependencies/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/GL/glew.h -------------------------------------------------------------------------------- /dependencies/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/GL/glxew.h -------------------------------------------------------------------------------- /dependencies/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/GL/wglew.h -------------------------------------------------------------------------------- /dependencies/include/GLFW/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/GLFW/LICENSE.txt -------------------------------------------------------------------------------- /dependencies/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /dependencies/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /dependencies/include/assimp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/.editorconfig -------------------------------------------------------------------------------- /dependencies/include/assimp/Compiler/poppack1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/Compiler/poppack1.h -------------------------------------------------------------------------------- /dependencies/include/assimp/Compiler/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/Compiler/pstdint.h -------------------------------------------------------------------------------- /dependencies/include/assimp/Compiler/pushpack1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/Compiler/pushpack1.h -------------------------------------------------------------------------------- /dependencies/include/assimp/DefaultLogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/DefaultLogger.hpp -------------------------------------------------------------------------------- /dependencies/include/assimp/Exporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/Exporter.hpp -------------------------------------------------------------------------------- /dependencies/include/assimp/IOStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/IOStream.hpp -------------------------------------------------------------------------------- /dependencies/include/assimp/IOSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/IOSystem.hpp -------------------------------------------------------------------------------- /dependencies/include/assimp/Importer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/Importer.hpp -------------------------------------------------------------------------------- /dependencies/include/assimp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/LICENSE.txt -------------------------------------------------------------------------------- /dependencies/include/assimp/LogStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/LogStream.hpp -------------------------------------------------------------------------------- /dependencies/include/assimp/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/Logger.hpp -------------------------------------------------------------------------------- /dependencies/include/assimp/NullLogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/NullLogger.hpp -------------------------------------------------------------------------------- /dependencies/include/assimp/ProgressHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/ProgressHandler.hpp -------------------------------------------------------------------------------- /dependencies/include/assimp/ai_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/ai_assert.h -------------------------------------------------------------------------------- /dependencies/include/assimp/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/anim.h -------------------------------------------------------------------------------- /dependencies/include/assimp/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/camera.h -------------------------------------------------------------------------------- /dependencies/include/assimp/cexport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/cexport.h -------------------------------------------------------------------------------- /dependencies/include/assimp/cfileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/cfileio.h -------------------------------------------------------------------------------- /dependencies/include/assimp/cimport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/cimport.h -------------------------------------------------------------------------------- /dependencies/include/assimp/color4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/color4.h -------------------------------------------------------------------------------- /dependencies/include/assimp/color4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/color4.inl -------------------------------------------------------------------------------- /dependencies/include/assimp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/config.h -------------------------------------------------------------------------------- /dependencies/include/assimp/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/defs.h -------------------------------------------------------------------------------- /dependencies/include/assimp/importerdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/importerdesc.h -------------------------------------------------------------------------------- /dependencies/include/assimp/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/light.h -------------------------------------------------------------------------------- /dependencies/include/assimp/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/material.h -------------------------------------------------------------------------------- /dependencies/include/assimp/material.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/material.inl -------------------------------------------------------------------------------- /dependencies/include/assimp/matrix3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/matrix3x3.h -------------------------------------------------------------------------------- /dependencies/include/assimp/matrix3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/matrix3x3.inl -------------------------------------------------------------------------------- /dependencies/include/assimp/matrix4x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/matrix4x4.h -------------------------------------------------------------------------------- /dependencies/include/assimp/matrix4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/matrix4x4.inl -------------------------------------------------------------------------------- /dependencies/include/assimp/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/mesh.h -------------------------------------------------------------------------------- /dependencies/include/assimp/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/metadata.h -------------------------------------------------------------------------------- /dependencies/include/assimp/port/AndroidJNI/AndroidJNIIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/port/AndroidJNI/AndroidJNIIOSystem.h -------------------------------------------------------------------------------- /dependencies/include/assimp/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/postprocess.h -------------------------------------------------------------------------------- /dependencies/include/assimp/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/quaternion.h -------------------------------------------------------------------------------- /dependencies/include/assimp/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/quaternion.inl -------------------------------------------------------------------------------- /dependencies/include/assimp/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/scene.h -------------------------------------------------------------------------------- /dependencies/include/assimp/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/texture.h -------------------------------------------------------------------------------- /dependencies/include/assimp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/types.h -------------------------------------------------------------------------------- /dependencies/include/assimp/vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/vector2.h -------------------------------------------------------------------------------- /dependencies/include/assimp/vector2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/vector2.inl -------------------------------------------------------------------------------- /dependencies/include/assimp/vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/vector3.h -------------------------------------------------------------------------------- /dependencies/include/assimp/vector3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/vector3.inl -------------------------------------------------------------------------------- /dependencies/include/assimp/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/assimp/version.h -------------------------------------------------------------------------------- /dependencies/include/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/include/glm/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/LICENSE.txt -------------------------------------------------------------------------------- /dependencies/include/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/common.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/copying.txt -------------------------------------------------------------------------------- /dependencies/include/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/_features.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/dummy.cpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/func_common.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/func_common.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/func_common_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/func_exponential.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_exponential_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/func_exponential_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/func_geometric.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_geometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/func_geometric_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/func_integer.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_integer_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/func_integer_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/func_matrix.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_matrix_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/func_matrix_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/func_packing.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/func_packing_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/func_trigonometric.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/func_vector_relational.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_vector_relational_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/func_vector_relational_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/glm.cpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/setup.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_gentype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_gentype.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_gentype.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_gentype.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_half.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_int.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_mat.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_mat.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_mat4x4_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_vec.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_vec.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/detail/type_vec4_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/exponential.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/ext.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/fwd.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/geometric.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/glm.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/color_encoding.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/constants.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/functions.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/functions.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/integer.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/noise.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/packing.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/quaternion_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/random.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/random.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/round.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/round.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/type_precision.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtc/vec1.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/bit.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/common.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/common.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/extend.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/extended_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/extended_min_max.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/extended_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/extended_min_max.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/float_notmalize.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/hash.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/integer.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/io.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/io.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/norm.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/normal.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/number_precision.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/projection.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/range.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/scalar_multiplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/scalar_multiplication.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/simd_mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/simd_mat4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/simd_mat4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/simd_mat4.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/simd_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/simd_quat.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/simd_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/simd_quat.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/simd_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/simd_vec4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/simd_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/simd_vec4.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/spline.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/std_based_type.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/transform.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/type_aligned.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /dependencies/include/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/integer.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/mat2x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/mat2x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/mat2x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/mat3x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/mat3x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/mat3x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/mat4x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/mat4x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/mat4x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/matrix.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/packing.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/simd/common.h -------------------------------------------------------------------------------- /dependencies/include/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/simd/exponential.h -------------------------------------------------------------------------------- /dependencies/include/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/simd/geometric.h -------------------------------------------------------------------------------- /dependencies/include/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/simd/integer.h -------------------------------------------------------------------------------- /dependencies/include/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/simd/matrix.h -------------------------------------------------------------------------------- /dependencies/include/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/simd/packing.h -------------------------------------------------------------------------------- /dependencies/include/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/simd/platform.h -------------------------------------------------------------------------------- /dependencies/include/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /dependencies/include/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/simd/vector_relational.h -------------------------------------------------------------------------------- /dependencies/include/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/trigonometric.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/vec2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/vec3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/vec4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/glm/vector_relational.hpp -------------------------------------------------------------------------------- /dependencies/include/json/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/json/LICENSE.txt -------------------------------------------------------------------------------- /dependencies/include/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/json/json.hpp -------------------------------------------------------------------------------- /dependencies/include/stb/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/stb/LICENSE.txt -------------------------------------------------------------------------------- /dependencies/include/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/stb/stb_image.h -------------------------------------------------------------------------------- /dependencies/include/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/include/stb/stb_image_write.h -------------------------------------------------------------------------------- /dependencies/lib64/assimp-vc140-mt.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/lib64/assimp-vc140-mt.exp -------------------------------------------------------------------------------- /dependencies/lib64/assimp-vc140-mt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/lib64/assimp-vc140-mt.lib -------------------------------------------------------------------------------- /dependencies/lib64/embree.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/lib64/embree.lib -------------------------------------------------------------------------------- /dependencies/lib64/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/lib64/glew32.lib -------------------------------------------------------------------------------- /dependencies/lib64/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/lib64/glew32s.lib -------------------------------------------------------------------------------- /dependencies/lib64/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/lib64/glfw3.lib -------------------------------------------------------------------------------- /dependencies/lib64/glfw3dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/dependencies/lib64/glfw3dll.lib -------------------------------------------------------------------------------- /readme-resources/main_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/readme-resources/main_image.jpg -------------------------------------------------------------------------------- /readme-resources/main_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/readme-resources/main_image.png -------------------------------------------------------------------------------- /reflectcuts.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts.sln -------------------------------------------------------------------------------- /reflectcuts/common/floatimage/floatimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/common/floatimage/floatimage.cpp -------------------------------------------------------------------------------- /reflectcuts/common/floatimage/floatimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/common/floatimage/floatimage.h -------------------------------------------------------------------------------- /reflectcuts/common/floatimage/rgbe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/common/floatimage/rgbe.cpp -------------------------------------------------------------------------------- /reflectcuts/common/floatimage/rgbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/common/floatimage/rgbe.h -------------------------------------------------------------------------------- /reflectcuts/common/realtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/common/realtime.h -------------------------------------------------------------------------------- /reflectcuts/common/reflectcuts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/common/reflectcuts.h -------------------------------------------------------------------------------- /reflectcuts/common/rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/common/rng.h -------------------------------------------------------------------------------- /reflectcuts/common/sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/common/sampler.h -------------------------------------------------------------------------------- /reflectcuts/common/shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/common/shape.h -------------------------------------------------------------------------------- /reflectcuts/common/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/common/stopwatch.h -------------------------------------------------------------------------------- /reflectcuts/common/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/common/util.cpp -------------------------------------------------------------------------------- /reflectcuts/common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/common/util.h -------------------------------------------------------------------------------- /reflectcuts/json/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/json/LICENSE.txt -------------------------------------------------------------------------------- /reflectcuts/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/json/json.hpp -------------------------------------------------------------------------------- /reflectcuts/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/main.cpp -------------------------------------------------------------------------------- /reflectcuts/math/aabb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/math/aabb.h -------------------------------------------------------------------------------- /reflectcuts/math/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/math/color.h -------------------------------------------------------------------------------- /reflectcuts/math/mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/math/mapping.h -------------------------------------------------------------------------------- /reflectcuts/math/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/math/math.cpp -------------------------------------------------------------------------------- /reflectcuts/math/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/math/math.h -------------------------------------------------------------------------------- /reflectcuts/math/ray.cpp: -------------------------------------------------------------------------------- 1 | #include "math/ray.h" 2 | 3 | const Float Ray::Epsilon = 1e-5f; -------------------------------------------------------------------------------- /reflectcuts/math/ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/math/ray.h -------------------------------------------------------------------------------- /reflectcuts/opengl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/opengl/buffer.h -------------------------------------------------------------------------------- /reflectcuts/opengl/query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/opengl/query.h -------------------------------------------------------------------------------- /reflectcuts/opengl/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/opengl/shader.h -------------------------------------------------------------------------------- /reflectcuts/realtimetechniques/all.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/realtimetechniques/all.cuh -------------------------------------------------------------------------------- /reflectcuts/realtimetechniques/lighttracing.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/realtimetechniques/lighttracing.cu -------------------------------------------------------------------------------- /reflectcuts/realtimetechniques/lvclighttracing.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/realtimetechniques/lvclighttracing.cu -------------------------------------------------------------------------------- /reflectcuts/realtimetechniques/pathtracing.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/realtimetechniques/pathtracing.cu -------------------------------------------------------------------------------- /reflectcuts/realtimetechniques/rtcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/realtimetechniques/rtcommon.h -------------------------------------------------------------------------------- /reflectcuts/realtimetechniques/rtcomphoton/rtcomphoton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/realtimetechniques/rtcomphoton/rtcomphoton.h -------------------------------------------------------------------------------- /reflectcuts/realtimetechniques/rtcomphoton/rtlvccomphoton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/realtimetechniques/rtcomphoton/rtlvccomphoton.h -------------------------------------------------------------------------------- /reflectcuts/realtimetechniques/rtcomphoton/rtphotonrecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/realtimetechniques/rtcomphoton/rtphotonrecord.h -------------------------------------------------------------------------------- /reflectcuts/realtimetechniques/rtlightsource.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/realtimetechniques/rtlightsource.cuh -------------------------------------------------------------------------------- /reflectcuts/realtimetechniques/rtmaterial.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/realtimetechniques/rtmaterial.cuh -------------------------------------------------------------------------------- /reflectcuts/realtimetechniques/rtmath.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/realtimetechniques/rtmath.cuh -------------------------------------------------------------------------------- /reflectcuts/realtimetechniques/rtpt/rtpt2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/realtimetechniques/rtpt/rtpt2.h -------------------------------------------------------------------------------- /reflectcuts/realtimetechniques/rttechnique.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/realtimetechniques/rttechnique.h -------------------------------------------------------------------------------- /reflectcuts/realtimetechniques/triangleintersect.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/realtimetechniques/triangleintersect.cu -------------------------------------------------------------------------------- /reflectcuts/reflectcuts.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/reflectcuts.vcxproj -------------------------------------------------------------------------------- /reflectcuts/reflectcuts.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/reflectcuts.vcxproj.filters -------------------------------------------------------------------------------- /reflectcuts/sampler/independent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/sampler/independent.h -------------------------------------------------------------------------------- /reflectcuts/shaders/deferred.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/shaders/deferred.frag -------------------------------------------------------------------------------- /reflectcuts/shaders/deferred.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/shaders/deferred.geom -------------------------------------------------------------------------------- /reflectcuts/shaders/deferred.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/shaders/deferred.vert -------------------------------------------------------------------------------- /reflectcuts/shaders/final.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/shaders/final.frag -------------------------------------------------------------------------------- /reflectcuts/shaders/final.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/shaders/final.vert -------------------------------------------------------------------------------- /reflectcuts/shaders/light.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/shaders/light.frag -------------------------------------------------------------------------------- /reflectcuts/shaders/light.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/shaders/light.vert -------------------------------------------------------------------------------- /reflectcuts/shaders/photonsplatinstanced.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/shaders/photonsplatinstanced.frag -------------------------------------------------------------------------------- /reflectcuts/shaders/photonsplatinstanced.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/shaders/photonsplatinstanced.geom -------------------------------------------------------------------------------- /reflectcuts/shaders/photonsplatinstanced.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/shaders/photonsplatinstanced.vert -------------------------------------------------------------------------------- /reflectcuts/shapes/trianglemesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/shapes/trianglemesh.cpp -------------------------------------------------------------------------------- /reflectcuts/shapes/trianglemesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/shapes/trianglemesh.h -------------------------------------------------------------------------------- /reflectcuts/sphere/icosphere.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/sphere/icosphere.obj -------------------------------------------------------------------------------- /reflectcuts/stb/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/stb/LICENSE.txt -------------------------------------------------------------------------------- /reflectcuts/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/stb/stb_image.h -------------------------------------------------------------------------------- /reflectcuts/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/reflectcuts/stb/stb_image_write.h -------------------------------------------------------------------------------- /scene/buddha/buddha_exported.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/buddha/buddha_exported.mtl -------------------------------------------------------------------------------- /scene/buddha/buddha_exported.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/buddha/buddha_exported.obj -------------------------------------------------------------------------------- /scene/buddha/buddha_exported_lights.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/buddha/buddha_exported_lights.mtl -------------------------------------------------------------------------------- /scene/buddha/buddha_exported_lights.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/buddha/buddha_exported_lights.obj -------------------------------------------------------------------------------- /scene/buddha/buddha_ours.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/buddha/buddha_ours.json -------------------------------------------------------------------------------- /scene/buddha/buddha_ours_progressive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/buddha/buddha_ours_progressive.json -------------------------------------------------------------------------------- /scene/buddha/buddha_pm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/buddha/buddha_pm.json -------------------------------------------------------------------------------- /scene/buddha/buddha_pm_progressive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/buddha/buddha_pm_progressive.json -------------------------------------------------------------------------------- /scene/buddha/buddha_pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/buddha/buddha_pt.json -------------------------------------------------------------------------------- /scene/buddha/buddha_pt_progressive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/buddha/buddha_pt_progressive.json -------------------------------------------------------------------------------- /scene/buddha/buddha_vpl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/buddha/buddha_vpl.json -------------------------------------------------------------------------------- /scene/buddha/buddha_vpl_progressive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/buddha/buddha_vpl_progressive.json -------------------------------------------------------------------------------- /scene/buddha/buddha_vsl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/buddha/buddha_vsl.json -------------------------------------------------------------------------------- /scene/buddha/buddha_vsl_progressive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/buddha/buddha_vsl_progressive.json -------------------------------------------------------------------------------- /scene/conference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/conference/README.md -------------------------------------------------------------------------------- /scene/conference/conference_exported.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/conference/conference_exported.mtl -------------------------------------------------------------------------------- /scene/conference/conference_exported.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/conference/conference_exported.obj -------------------------------------------------------------------------------- /scene/conference/conference_exported_lights.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/conference/conference_exported_lights.mtl -------------------------------------------------------------------------------- /scene/conference/conference_exported_lights.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/conference/conference_exported_lights.obj -------------------------------------------------------------------------------- /scene/conference/conference_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/conference/conference_mask.png -------------------------------------------------------------------------------- /scene/conference/conference_ours.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/conference/conference_ours.json -------------------------------------------------------------------------------- /scene/conference/conference_ours_progressive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/conference/conference_ours_progressive.json -------------------------------------------------------------------------------- /scene/conference/conference_pm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/conference/conference_pm.json -------------------------------------------------------------------------------- /scene/conference/conference_pm_progressive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/conference/conference_pm_progressive.json -------------------------------------------------------------------------------- /scene/conference/conference_pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/conference/conference_pt.json -------------------------------------------------------------------------------- /scene/conference/conference_pt_progressive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/conference/conference_pt_progressive.json -------------------------------------------------------------------------------- /scene/conference/conference_vpl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/conference/conference_vpl.json -------------------------------------------------------------------------------- /scene/conference/conference_vpl_progressive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/conference/conference_vpl_progressive.json -------------------------------------------------------------------------------- /scene/conference/conference_vsl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/conference/conference_vsl.json -------------------------------------------------------------------------------- /scene/conference/conference_vsl_progressive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/conference/conference_vsl_progressive.json -------------------------------------------------------------------------------- /scene/livingroom/BLENDSWAP_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/livingroom/BLENDSWAP_LICENSE.txt -------------------------------------------------------------------------------- /scene/livingroom/livingroom_exported.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/livingroom/livingroom_exported.mtl -------------------------------------------------------------------------------- /scene/livingroom/livingroom_exported.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/livingroom/livingroom_exported.obj -------------------------------------------------------------------------------- /scene/livingroom/livingroom_exported_lights.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/livingroom/livingroom_exported_lights.mtl -------------------------------------------------------------------------------- /scene/livingroom/livingroom_exported_lights.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/livingroom/livingroom_exported_lights.obj -------------------------------------------------------------------------------- /scene/livingroom/livingroom_ours.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/livingroom/livingroom_ours.json -------------------------------------------------------------------------------- /scene/livingroom/livingroom_ours_progressive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/livingroom/livingroom_ours_progressive.json -------------------------------------------------------------------------------- /scene/livingroom/livingroom_pm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/livingroom/livingroom_pm.json -------------------------------------------------------------------------------- /scene/livingroom/livingroom_pm_progressive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/livingroom/livingroom_pm_progressive.json -------------------------------------------------------------------------------- /scene/livingroom/livingroom_pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/livingroom/livingroom_pt.json -------------------------------------------------------------------------------- /scene/livingroom/livingroom_pt_progressive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/livingroom/livingroom_pt_progressive.json -------------------------------------------------------------------------------- /scene/livingroom/livingroom_vpl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/livingroom/livingroom_vpl.json -------------------------------------------------------------------------------- /scene/livingroom/livingroom_vpl_progressive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/livingroom/livingroom_vpl_progressive.json -------------------------------------------------------------------------------- /scene/livingroom/livingroom_vsl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/livingroom/livingroom_vsl.json -------------------------------------------------------------------------------- /scene/livingroom/livingroom_vsl_progressive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/livingroom/livingroom_vsl_progressive.json -------------------------------------------------------------------------------- /scene/livingroom/textures/064marilyn_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/livingroom/textures/064marilyn_2.jpg -------------------------------------------------------------------------------- /scene/livingroom/textures/268772_429489723761181_676140463_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/livingroom/textures/268772_429489723761181_676140463_n.jpg -------------------------------------------------------------------------------- /scene/livingroom/textures/3586390-529225-set-ornament-template-fabric-texture-red-ribbons-vector-eps10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/livingroom/textures/3586390-529225-set-ornament-template-fabric-texture-red-ribbons-vector-eps10.jpg -------------------------------------------------------------------------------- /scene/livingroom/textures/TroncoUnwrap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/livingroom/textures/TroncoUnwrap.jpg -------------------------------------------------------------------------------- /scene/livingroom/textures/black-vertical-siding-texture-600x400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/livingroom/textures/black-vertical-siding-texture-600x400.jpg -------------------------------------------------------------------------------- /scene/livingroom/textures/black-vertical-siding-texture-600x400_scaled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/livingroom/textures/black-vertical-siding-texture-600x400_scaled.jpg -------------------------------------------------------------------------------- /scene/livingroom/textures/book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/livingroom/textures/book.jpg -------------------------------------------------------------------------------- /scene/livingroom/textures/ksiazki.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/livingroom/textures/ksiazki.jpg -------------------------------------------------------------------------------- /scene/livingroom/textures/wino.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/livingroom/textures/wino.jpg -------------------------------------------------------------------------------- /scene/livingroom/textures/wood_32_diffuse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/evplp/HEAD/scene/livingroom/textures/wood_32_diffuse.jpg --------------------------------------------------------------------------------