├── .gitignore ├── CMakeCache.txt ├── CMakeFiles ├── 3.0.1 │ ├── CMakeCCompiler.cmake │ ├── CMakeCXXCompiler.cmake │ ├── CMakeDetermineCompilerABI_C.bin │ ├── CMakeDetermineCompilerABI_CXX.bin │ ├── CMakeSystem.cmake │ ├── CompilerIdC │ │ ├── CMakeCCompilerId.c │ │ └── a.out │ └── CompilerIdCXX │ │ ├── CMakeCXXCompilerId.cpp │ │ └── a.out ├── CMakeDirectoryInformation.cmake ├── CMakeOutput.log ├── CMakeRuleHashes.txt ├── Makefile.cmake ├── Makefile2 ├── Project3-Pathtracer.dir │ ├── C.includecache │ ├── CXX.includecache │ ├── DependInfo.cmake │ ├── Project3-Pathtracer_intermediate_link.o │ ├── build.make │ ├── cmake_clean.cmake │ ├── depend.internal │ ├── depend.make │ ├── external │ │ └── src │ │ │ ├── glslUtil │ │ │ └── glslUtility.cpp.o │ │ │ └── stb_image │ │ │ ├── stb_image.c.o │ │ │ └── stb_image_write.c.o │ ├── flags.make │ ├── link.txt │ ├── progress.make │ └── src │ │ ├── Project3-Pathtracer_generated_raytraceKernel.cu.o │ │ ├── Project3-Pathtracer_generated_raytraceKernel.cu.o.cmake │ │ ├── Project3-Pathtracer_generated_raytraceKernel.cu.o.depend │ │ ├── image.cpp.o │ │ ├── main.cpp.o │ │ ├── scene.cpp.o │ │ └── utilities.cpp.o ├── TargetDirectories.txt ├── cmake.check_cache └── progress.marks ├── CMakeLists.txt ├── CudaPathTracer.jpg ├── CudaProfileBI_1.jpg ├── CudacompareBuildLightPath.jpg ├── DEBUG_SolidAngleBug.bmp ├── DEBUG_solidAngle.bmp ├── Makefile ├── README.md ├── RobbieScene.0.bmp ├── RobbieScene.PT.bmp ├── VEECH_LargeLight_BI.0.bmp ├── VEECH_LargeLight_DL.0.bmp ├── VEECH_LargeLight_PT.0.bmp ├── VEECH_Light075_BPT.0.bmp ├── VEECH_Light075_DirectLighting.0.bmp ├── VEECH_Light075_PT.0.bmp ├── VEECH_Light350_BPT.0.bmp ├── VEECH_Light350_DirectLighting.0.bmp ├── VEECH_Light350_PT.0.bmp ├── VEECH_STRIP.0.bmp ├── VEECH_SmallLight_BI.0.bmp ├── VEECH_SmallLight_DL.0.bmp ├── VEECH_SmallLight_PT.0.bmp ├── cmake_install.cmake ├── data └── scenes │ ├── sampleScene.txt │ └── scratchScene.txt ├── external ├── bin │ ├── freeglut.dll │ ├── glew32.dll │ └── glut32.dll ├── include │ ├── GL │ │ ├── Copying.txt │ │ ├── LICENSE.txt │ │ ├── Readme.txt │ │ ├── freeglut.h │ │ ├── freeglut_ext.h │ │ ├── freeglut_std.h │ │ ├── glew.h │ │ ├── glut.h │ │ ├── glxew.h │ │ └── wglew.h │ ├── GLFW │ │ ├── COPYING.txt │ │ ├── glfw3.h │ │ └── glfw3native.h │ ├── glm │ │ ├── CMakeLists.txt │ │ ├── common.hpp │ │ ├── detail │ │ │ ├── _features.hpp │ │ │ ├── _fixes.hpp │ │ │ ├── _literals.hpp │ │ │ ├── _noise.hpp │ │ │ ├── _swizzle.hpp │ │ │ ├── _swizzle_func.hpp │ │ │ ├── _vectorize.hpp │ │ │ ├── dummy.cpp │ │ │ ├── func_common.hpp │ │ │ ├── func_common.inl │ │ │ ├── func_exponential.hpp │ │ │ ├── func_exponential.inl │ │ │ ├── func_geometric.hpp │ │ │ ├── func_geometric.inl │ │ │ ├── func_integer.hpp │ │ │ ├── func_integer.inl │ │ │ ├── func_matrix.hpp │ │ │ ├── func_matrix.inl │ │ │ ├── func_noise.hpp │ │ │ ├── func_noise.inl │ │ │ ├── func_packing.hpp │ │ │ ├── func_packing.inl │ │ │ ├── func_trigonometric.hpp │ │ │ ├── func_trigonometric.inl │ │ │ ├── func_vector_relational.hpp │ │ │ ├── func_vector_relational.inl │ │ │ ├── glm.cpp │ │ │ ├── hint.hpp │ │ │ ├── intrinsic_common.hpp │ │ │ ├── intrinsic_common.inl │ │ │ ├── intrinsic_exponential.hpp │ │ │ ├── intrinsic_exponential.inl │ │ │ ├── intrinsic_geometric.hpp │ │ │ ├── intrinsic_geometric.inl │ │ │ ├── intrinsic_integer.hpp │ │ │ ├── intrinsic_integer.inl │ │ │ ├── intrinsic_matrix.hpp │ │ │ ├── intrinsic_matrix.inl │ │ │ ├── intrinsic_trigonometric.hpp │ │ │ ├── intrinsic_trigonometric.inl │ │ │ ├── intrinsic_vector_relational.hpp │ │ │ ├── intrinsic_vector_relational.inl │ │ │ ├── precision.hpp │ │ │ ├── precision.inl │ │ │ ├── setup.hpp │ │ │ ├── type_float.hpp │ │ │ ├── type_gentype.hpp │ │ │ ├── type_gentype.inl │ │ │ ├── type_half.hpp │ │ │ ├── type_half.inl │ │ │ ├── type_int.hpp │ │ │ ├── type_mat.hpp │ │ │ ├── type_mat.inl │ │ │ ├── type_mat2x2.hpp │ │ │ ├── type_mat2x2.inl │ │ │ ├── type_mat2x3.hpp │ │ │ ├── type_mat2x3.inl │ │ │ ├── type_mat2x4.hpp │ │ │ ├── type_mat2x4.inl │ │ │ ├── type_mat3x2.hpp │ │ │ ├── type_mat3x2.inl │ │ │ ├── type_mat3x3.hpp │ │ │ ├── type_mat3x3.inl │ │ │ ├── type_mat3x4.hpp │ │ │ ├── type_mat3x4.inl │ │ │ ├── type_mat4x2.hpp │ │ │ ├── type_mat4x2.inl │ │ │ ├── type_mat4x3.hpp │ │ │ ├── type_mat4x3.inl │ │ │ ├── type_mat4x4.hpp │ │ │ ├── type_mat4x4.inl │ │ │ ├── type_vec.hpp │ │ │ ├── type_vec.inl │ │ │ ├── type_vec1.hpp │ │ │ ├── type_vec1.inl │ │ │ ├── type_vec2.hpp │ │ │ ├── type_vec2.inl │ │ │ ├── type_vec3.hpp │ │ │ ├── type_vec3.inl │ │ │ ├── type_vec4.hpp │ │ │ └── type_vec4.inl │ │ ├── exponential.hpp │ │ ├── ext.hpp │ │ ├── fwd.hpp │ │ ├── geometric.hpp │ │ ├── glm.hpp │ │ ├── gtc │ │ │ ├── constants.hpp │ │ │ ├── constants.inl │ │ │ ├── epsilon.hpp │ │ │ ├── epsilon.inl │ │ │ ├── matrix_access.hpp │ │ │ ├── matrix_access.inl │ │ │ ├── matrix_integer.hpp │ │ │ ├── matrix_inverse.hpp │ │ │ ├── matrix_inverse.inl │ │ │ ├── matrix_transform.hpp │ │ │ ├── matrix_transform.inl │ │ │ ├── noise.hpp │ │ │ ├── noise.inl │ │ │ ├── packing.hpp │ │ │ ├── packing.inl │ │ │ ├── quaternion.hpp │ │ │ ├── quaternion.inl │ │ │ ├── random.hpp │ │ │ ├── random.inl │ │ │ ├── reciprocal.hpp │ │ │ ├── reciprocal.inl │ │ │ ├── type_precision.hpp │ │ │ ├── type_precision.inl │ │ │ ├── type_ptr.hpp │ │ │ ├── type_ptr.inl │ │ │ ├── ulp.hpp │ │ │ └── ulp.inl │ │ ├── gtx │ │ │ ├── associated_min_max.hpp │ │ │ ├── associated_min_max.inl │ │ │ ├── bit.hpp │ │ │ ├── bit.inl │ │ │ ├── closest_point.hpp │ │ │ ├── closest_point.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── color_space_YCoCg.hpp │ │ │ ├── color_space_YCoCg.inl │ │ │ ├── compatibility.hpp │ │ │ ├── compatibility.inl │ │ │ ├── component_wise.hpp │ │ │ ├── component_wise.inl │ │ │ ├── constants.hpp │ │ │ ├── dual_quaternion.hpp │ │ │ ├── dual_quaternion.inl │ │ │ ├── epsilon.hpp │ │ │ ├── euler_angles.hpp │ │ │ ├── euler_angles.inl │ │ │ ├── extend.hpp │ │ │ ├── extend.inl │ │ │ ├── extented_min_max.hpp │ │ │ ├── extented_min_max.inl │ │ │ ├── fast_exponential.hpp │ │ │ ├── fast_exponential.inl │ │ │ ├── fast_square_root.hpp │ │ │ ├── fast_square_root.inl │ │ │ ├── fast_trigonometry.hpp │ │ │ ├── fast_trigonometry.inl │ │ │ ├── gradient_paint.hpp │ │ │ ├── gradient_paint.inl │ │ │ ├── handed_coordinate_space.hpp │ │ │ ├── handed_coordinate_space.inl │ │ │ ├── inertia.hpp │ │ │ ├── inertia.inl │ │ │ ├── int_10_10_10_2.hpp │ │ │ ├── int_10_10_10_2.inl │ │ │ ├── integer.hpp │ │ │ ├── integer.inl │ │ │ ├── intersect.hpp │ │ │ ├── intersect.inl │ │ │ ├── io.hpp │ │ │ ├── io.inl │ │ │ ├── log_base.hpp │ │ │ ├── log_base.inl │ │ │ ├── matrix_cross_product.hpp │ │ │ ├── matrix_cross_product.inl │ │ │ ├── matrix_interpolation.hpp │ │ │ ├── matrix_interpolation.inl │ │ │ ├── matrix_major_storage.hpp │ │ │ ├── matrix_major_storage.inl │ │ │ ├── matrix_operation.hpp │ │ │ ├── matrix_operation.inl │ │ │ ├── matrix_query.hpp │ │ │ ├── matrix_query.inl │ │ │ ├── matrix_transform_2d.hpp │ │ │ ├── matrix_transform_2d.inl │ │ │ ├── mixed_product.hpp │ │ │ ├── mixed_product.inl │ │ │ ├── multiple.hpp │ │ │ ├── multiple.inl │ │ │ ├── noise.hpp │ │ │ ├── norm.hpp │ │ │ ├── norm.inl │ │ │ ├── normal.hpp │ │ │ ├── normal.inl │ │ │ ├── normalize_dot.hpp │ │ │ ├── normalize_dot.inl │ │ │ ├── number_precision.hpp │ │ │ ├── number_precision.inl │ │ │ ├── optimum_pow.hpp │ │ │ ├── optimum_pow.inl │ │ │ ├── orthonormalize.hpp │ │ │ ├── orthonormalize.inl │ │ │ ├── perpendicular.hpp │ │ │ ├── perpendicular.inl │ │ │ ├── polar_coordinates.hpp │ │ │ ├── polar_coordinates.inl │ │ │ ├── projection.hpp │ │ │ ├── projection.inl │ │ │ ├── quaternion.hpp │ │ │ ├── quaternion.inl │ │ │ ├── random.hpp │ │ │ ├── raw_data.hpp │ │ │ ├── raw_data.inl │ │ │ ├── reciprocal.hpp │ │ │ ├── rotate_normalized_axis.hpp │ │ │ ├── rotate_normalized_axis.inl │ │ │ ├── rotate_vector.hpp │ │ │ ├── rotate_vector.inl │ │ │ ├── scalar_relational.hpp │ │ │ ├── scalar_relational.inl │ │ │ ├── simd_mat4.hpp │ │ │ ├── simd_mat4.inl │ │ │ ├── simd_quat.hpp │ │ │ ├── simd_quat.inl │ │ │ ├── simd_vec4.hpp │ │ │ ├── simd_vec4.inl │ │ │ ├── spline.hpp │ │ │ ├── spline.inl │ │ │ ├── std_based_type.hpp │ │ │ ├── std_based_type.inl │ │ │ ├── string_cast.hpp │ │ │ ├── string_cast.inl │ │ │ ├── transform.hpp │ │ │ ├── transform.inl │ │ │ ├── transform2.hpp │ │ │ ├── transform2.inl │ │ │ ├── ulp.hpp │ │ │ ├── unsigned_int.hpp │ │ │ ├── unsigned_int.inl │ │ │ ├── vec1.hpp │ │ │ ├── vec1.inl │ │ │ ├── vector_angle.hpp │ │ │ ├── vector_angle.inl │ │ │ ├── vector_query.hpp │ │ │ ├── vector_query.inl │ │ │ ├── wrap.hpp │ │ │ └── wrap.inl │ │ ├── integer.hpp │ │ ├── mat2x2.hpp │ │ ├── mat2x3.hpp │ │ ├── mat2x4.hpp │ │ ├── mat3x2.hpp │ │ ├── mat3x3.hpp │ │ ├── mat3x4.hpp │ │ ├── mat4x2.hpp │ │ ├── mat4x3.hpp │ │ ├── mat4x4.hpp │ │ ├── matrix.hpp │ │ ├── packing.hpp │ │ ├── readme.txt │ │ ├── trigonometric.hpp │ │ ├── vec2.hpp │ │ ├── vec3.hpp │ │ ├── vec4.hpp │ │ └── vector_relational.hpp │ ├── glslUtil │ │ └── glslUtility.hpp │ └── stb_image │ │ ├── stb_image.h │ │ └── stb_image_write.h ├── lib │ ├── linux │ │ ├── libGLEW.a │ │ └── libglfw3.a │ ├── osx │ │ ├── libGLEW.a │ │ └── libglfw3.a │ └── win │ │ ├── GL │ │ ├── freeglut.lib │ │ ├── glew32.lib │ │ ├── glew32s.lib │ │ └── glut32.lib │ │ └── GLFW │ │ ├── glfw3.lib │ │ ├── glfw3dll.lib │ │ ├── msvc110 │ │ ├── glfw3.lib │ │ └── glfw3dll.lib │ │ └── msvc120 │ │ ├── glfw3.lib │ │ └── glfw3dll.lib └── src │ ├── glslUtil │ └── glslUtility.cpp │ └── stb_image │ ├── stb_image.c │ └── stb_image_write.c ├── performanceTestingBPT10.0.bmp ├── performanceTestingBPT100.0.bmp ├── performanceTestingBPT1000.0.bmp ├── performanceTestingBPT2.0.bmp ├── performanceTestingPT100.0.bmp ├── performanceTestingPT1000.0.bmp ├── renders └── bidir_alpha.png ├── src ├── cudaMat4.h ├── image.cpp ├── image.h ├── interactions.h ├── intersections.h ├── main.cpp ├── main.h ├── raytraceKernel.cu ├── raytraceKernel.h ├── scene.cpp ├── scene.h ├── sceneStructs.h ├── utilities.cpp └── utilities.h └── windows └── Project3-Pathtracer ├── Project3-Pathtracer.sln └── Project3-Pathtracer ├── Project3-Pathtracer.vcxproj ├── Project3-Pathtracer.vcxproj.filters ├── test.0.bmp └── tooWideReflection.0.bmp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeCache.txt -------------------------------------------------------------------------------- /CMakeFiles/3.0.1/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/3.0.1/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /CMakeFiles/3.0.1/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/3.0.1/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /CMakeFiles/3.0.1/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/3.0.1/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /CMakeFiles/3.0.1/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/3.0.1/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /CMakeFiles/3.0.1/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/3.0.1/CMakeSystem.cmake -------------------------------------------------------------------------------- /CMakeFiles/3.0.1/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/3.0.1/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /CMakeFiles/3.0.1/CompilerIdC/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/3.0.1/CompilerIdC/a.out -------------------------------------------------------------------------------- /CMakeFiles/3.0.1/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/3.0.1/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /CMakeFiles/3.0.1/CompilerIdCXX/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/3.0.1/CompilerIdCXX/a.out -------------------------------------------------------------------------------- /CMakeFiles/CMakeDirectoryInformation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/CMakeDirectoryInformation.cmake -------------------------------------------------------------------------------- /CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /CMakeFiles/CMakeRuleHashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/CMakeRuleHashes.txt -------------------------------------------------------------------------------- /CMakeFiles/Makefile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/Makefile.cmake -------------------------------------------------------------------------------- /CMakeFiles/Makefile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/Makefile2 -------------------------------------------------------------------------------- /CMakeFiles/Project3-Pathtracer.dir/C.includecache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/Project3-Pathtracer.dir/C.includecache -------------------------------------------------------------------------------- /CMakeFiles/Project3-Pathtracer.dir/CXX.includecache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/Project3-Pathtracer.dir/CXX.includecache -------------------------------------------------------------------------------- /CMakeFiles/Project3-Pathtracer.dir/DependInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/Project3-Pathtracer.dir/DependInfo.cmake -------------------------------------------------------------------------------- /CMakeFiles/Project3-Pathtracer.dir/Project3-Pathtracer_intermediate_link.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/Project3-Pathtracer.dir/Project3-Pathtracer_intermediate_link.o -------------------------------------------------------------------------------- /CMakeFiles/Project3-Pathtracer.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/Project3-Pathtracer.dir/build.make -------------------------------------------------------------------------------- /CMakeFiles/Project3-Pathtracer.dir/cmake_clean.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/Project3-Pathtracer.dir/cmake_clean.cmake -------------------------------------------------------------------------------- /CMakeFiles/Project3-Pathtracer.dir/depend.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/Project3-Pathtracer.dir/depend.internal -------------------------------------------------------------------------------- /CMakeFiles/Project3-Pathtracer.dir/depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/Project3-Pathtracer.dir/depend.make -------------------------------------------------------------------------------- /CMakeFiles/Project3-Pathtracer.dir/external/src/glslUtil/glslUtility.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/Project3-Pathtracer.dir/external/src/glslUtil/glslUtility.cpp.o -------------------------------------------------------------------------------- /CMakeFiles/Project3-Pathtracer.dir/external/src/stb_image/stb_image.c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/Project3-Pathtracer.dir/external/src/stb_image/stb_image.c.o -------------------------------------------------------------------------------- /CMakeFiles/Project3-Pathtracer.dir/external/src/stb_image/stb_image_write.c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/Project3-Pathtracer.dir/external/src/stb_image/stb_image_write.c.o -------------------------------------------------------------------------------- /CMakeFiles/Project3-Pathtracer.dir/flags.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/Project3-Pathtracer.dir/flags.make -------------------------------------------------------------------------------- /CMakeFiles/Project3-Pathtracer.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/Project3-Pathtracer.dir/link.txt -------------------------------------------------------------------------------- /CMakeFiles/Project3-Pathtracer.dir/progress.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/Project3-Pathtracer.dir/progress.make -------------------------------------------------------------------------------- /CMakeFiles/Project3-Pathtracer.dir/src/Project3-Pathtracer_generated_raytraceKernel.cu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/Project3-Pathtracer.dir/src/Project3-Pathtracer_generated_raytraceKernel.cu.o -------------------------------------------------------------------------------- /CMakeFiles/Project3-Pathtracer.dir/src/Project3-Pathtracer_generated_raytraceKernel.cu.o.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/Project3-Pathtracer.dir/src/Project3-Pathtracer_generated_raytraceKernel.cu.o.cmake -------------------------------------------------------------------------------- /CMakeFiles/Project3-Pathtracer.dir/src/Project3-Pathtracer_generated_raytraceKernel.cu.o.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/Project3-Pathtracer.dir/src/Project3-Pathtracer_generated_raytraceKernel.cu.o.depend -------------------------------------------------------------------------------- /CMakeFiles/Project3-Pathtracer.dir/src/image.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/Project3-Pathtracer.dir/src/image.cpp.o -------------------------------------------------------------------------------- /CMakeFiles/Project3-Pathtracer.dir/src/main.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/Project3-Pathtracer.dir/src/main.cpp.o -------------------------------------------------------------------------------- /CMakeFiles/Project3-Pathtracer.dir/src/scene.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/Project3-Pathtracer.dir/src/scene.cpp.o -------------------------------------------------------------------------------- /CMakeFiles/Project3-Pathtracer.dir/src/utilities.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/Project3-Pathtracer.dir/src/utilities.cpp.o -------------------------------------------------------------------------------- /CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CudaPathTracer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CudaPathTracer.jpg -------------------------------------------------------------------------------- /CudaProfileBI_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CudaProfileBI_1.jpg -------------------------------------------------------------------------------- /CudacompareBuildLightPath.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/CudacompareBuildLightPath.jpg -------------------------------------------------------------------------------- /DEBUG_SolidAngleBug.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/DEBUG_SolidAngleBug.bmp -------------------------------------------------------------------------------- /DEBUG_solidAngle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/DEBUG_solidAngle.bmp -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/README.md -------------------------------------------------------------------------------- /RobbieScene.0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/RobbieScene.0.bmp -------------------------------------------------------------------------------- /RobbieScene.PT.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/RobbieScene.PT.bmp -------------------------------------------------------------------------------- /VEECH_LargeLight_BI.0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/VEECH_LargeLight_BI.0.bmp -------------------------------------------------------------------------------- /VEECH_LargeLight_DL.0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/VEECH_LargeLight_DL.0.bmp -------------------------------------------------------------------------------- /VEECH_LargeLight_PT.0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/VEECH_LargeLight_PT.0.bmp -------------------------------------------------------------------------------- /VEECH_Light075_BPT.0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/VEECH_Light075_BPT.0.bmp -------------------------------------------------------------------------------- /VEECH_Light075_DirectLighting.0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/VEECH_Light075_DirectLighting.0.bmp -------------------------------------------------------------------------------- /VEECH_Light075_PT.0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/VEECH_Light075_PT.0.bmp -------------------------------------------------------------------------------- /VEECH_Light350_BPT.0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/VEECH_Light350_BPT.0.bmp -------------------------------------------------------------------------------- /VEECH_Light350_DirectLighting.0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/VEECH_Light350_DirectLighting.0.bmp -------------------------------------------------------------------------------- /VEECH_Light350_PT.0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/VEECH_Light350_PT.0.bmp -------------------------------------------------------------------------------- /VEECH_STRIP.0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/VEECH_STRIP.0.bmp -------------------------------------------------------------------------------- /VEECH_SmallLight_BI.0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/VEECH_SmallLight_BI.0.bmp -------------------------------------------------------------------------------- /VEECH_SmallLight_DL.0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/VEECH_SmallLight_DL.0.bmp -------------------------------------------------------------------------------- /VEECH_SmallLight_PT.0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/VEECH_SmallLight_PT.0.bmp -------------------------------------------------------------------------------- /cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/cmake_install.cmake -------------------------------------------------------------------------------- /data/scenes/sampleScene.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/data/scenes/sampleScene.txt -------------------------------------------------------------------------------- /data/scenes/scratchScene.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/data/scenes/scratchScene.txt -------------------------------------------------------------------------------- /external/bin/freeglut.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/bin/freeglut.dll -------------------------------------------------------------------------------- /external/bin/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/bin/glew32.dll -------------------------------------------------------------------------------- /external/bin/glut32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/bin/glut32.dll -------------------------------------------------------------------------------- /external/include/GL/Copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/GL/Copying.txt -------------------------------------------------------------------------------- /external/include/GL/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/GL/LICENSE.txt -------------------------------------------------------------------------------- /external/include/GL/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/GL/Readme.txt -------------------------------------------------------------------------------- /external/include/GL/freeglut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/GL/freeglut.h -------------------------------------------------------------------------------- /external/include/GL/freeglut_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/GL/freeglut_ext.h -------------------------------------------------------------------------------- /external/include/GL/freeglut_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/GL/freeglut_std.h -------------------------------------------------------------------------------- /external/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/GL/glew.h -------------------------------------------------------------------------------- /external/include/GL/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/GL/glut.h -------------------------------------------------------------------------------- /external/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/GL/glxew.h -------------------------------------------------------------------------------- /external/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/GL/wglew.h -------------------------------------------------------------------------------- /external/include/GLFW/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/GLFW/COPYING.txt -------------------------------------------------------------------------------- /external/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /external/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /external/include/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/CMakeLists.txt -------------------------------------------------------------------------------- /external/include/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/common.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/_features.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/_literals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/_literals.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/dummy.cpp -------------------------------------------------------------------------------- /external/include/glm/detail/func_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/func_common.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/func_common.inl -------------------------------------------------------------------------------- /external/include/glm/detail/func_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/func_exponential.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /external/include/glm/detail/func_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/func_geometric.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /external/include/glm/detail/func_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/func_integer.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /external/include/glm/detail/func_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/func_matrix.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /external/include/glm/detail/func_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/func_noise.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/func_noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/func_noise.inl -------------------------------------------------------------------------------- /external/include/glm/detail/func_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/func_packing.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /external/include/glm/detail/func_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/func_trigonometric.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /external/include/glm/detail/func_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/func_vector_relational.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /external/include/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/glm.cpp -------------------------------------------------------------------------------- /external/include/glm/detail/hint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/hint.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/intrinsic_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/intrinsic_common.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/intrinsic_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/intrinsic_common.inl -------------------------------------------------------------------------------- /external/include/glm/detail/intrinsic_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/intrinsic_exponential.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/intrinsic_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/intrinsic_exponential.inl -------------------------------------------------------------------------------- /external/include/glm/detail/intrinsic_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/intrinsic_geometric.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/intrinsic_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/intrinsic_geometric.inl -------------------------------------------------------------------------------- /external/include/glm/detail/intrinsic_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/intrinsic_integer.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/intrinsic_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/intrinsic_integer.inl -------------------------------------------------------------------------------- /external/include/glm/detail/intrinsic_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/intrinsic_matrix.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/intrinsic_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/intrinsic_matrix.inl -------------------------------------------------------------------------------- /external/include/glm/detail/intrinsic_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/intrinsic_trigonometric.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/intrinsic_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/intrinsic_trigonometric.inl -------------------------------------------------------------------------------- /external/include/glm/detail/intrinsic_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/intrinsic_vector_relational.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/intrinsic_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/intrinsic_vector_relational.inl -------------------------------------------------------------------------------- /external/include/glm/detail/precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/precision.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/precision.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/include/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/setup.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_gentype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_gentype.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_gentype.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_gentype.inl -------------------------------------------------------------------------------- /external/include/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_half.inl -------------------------------------------------------------------------------- /external/include/glm/detail/type_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_int.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_mat.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_mat.inl -------------------------------------------------------------------------------- /external/include/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /external/include/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /external/include/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /external/include/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /external/include/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /external/include/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /external/include/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /external/include/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /external/include/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /external/include/glm/detail/type_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_vec.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_vec.inl -------------------------------------------------------------------------------- /external/include/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /external/include/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /external/include/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /external/include/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /external/include/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/exponential.hpp -------------------------------------------------------------------------------- /external/include/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/ext.hpp -------------------------------------------------------------------------------- /external/include/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/fwd.hpp -------------------------------------------------------------------------------- /external/include/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/geometric.hpp -------------------------------------------------------------------------------- /external/include/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/glm.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/constants.inl -------------------------------------------------------------------------------- /external/include/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /external/include/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /external/include/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /external/include/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /external/include/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/noise.inl -------------------------------------------------------------------------------- /external/include/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/packing.inl -------------------------------------------------------------------------------- /external/include/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /external/include/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/random.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/random.inl -------------------------------------------------------------------------------- /external/include/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /external/include/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/type_precision.inl -------------------------------------------------------------------------------- /external/include/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /external/include/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/bit.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/constants.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/epsilon.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/extend.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/extented_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/extented_min_max.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/extented_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/extented_min_max.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/inertia.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/inertia.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/inertia.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/inertia.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/int_10_10_10_2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/int_10_10_10_2.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/int_10_10_10_2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/int_10_10_10_2.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/integer.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/io.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/io.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/multiple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/multiple.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/multiple.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/multiple.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/noise.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/norm.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/normal.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/number_precision.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/projection.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/random.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/reciprocal.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/simd_mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/simd_mat4.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/simd_mat4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/simd_mat4.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/simd_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/simd_quat.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/simd_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/simd_quat.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/simd_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/simd_vec4.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/simd_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/simd_vec4.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/spline.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/std_based_type.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/transform.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/ulp.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/unsigned_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/unsigned_int.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/unsigned_int.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/unsigned_int.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/vec1.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/vec1.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /external/include/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/integer.hpp -------------------------------------------------------------------------------- /external/include/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/mat2x2.hpp -------------------------------------------------------------------------------- /external/include/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/mat2x3.hpp -------------------------------------------------------------------------------- /external/include/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/mat2x4.hpp -------------------------------------------------------------------------------- /external/include/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/mat3x2.hpp -------------------------------------------------------------------------------- /external/include/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/mat3x3.hpp -------------------------------------------------------------------------------- /external/include/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/mat3x4.hpp -------------------------------------------------------------------------------- /external/include/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/mat4x2.hpp -------------------------------------------------------------------------------- /external/include/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/mat4x3.hpp -------------------------------------------------------------------------------- /external/include/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/mat4x4.hpp -------------------------------------------------------------------------------- /external/include/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/matrix.hpp -------------------------------------------------------------------------------- /external/include/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/packing.hpp -------------------------------------------------------------------------------- /external/include/glm/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/readme.txt -------------------------------------------------------------------------------- /external/include/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/trigonometric.hpp -------------------------------------------------------------------------------- /external/include/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/vec2.hpp -------------------------------------------------------------------------------- /external/include/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/vec3.hpp -------------------------------------------------------------------------------- /external/include/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/vec4.hpp -------------------------------------------------------------------------------- /external/include/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glm/vector_relational.hpp -------------------------------------------------------------------------------- /external/include/glslUtil/glslUtility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/glslUtil/glslUtility.hpp -------------------------------------------------------------------------------- /external/include/stb_image/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/stb_image/stb_image.h -------------------------------------------------------------------------------- /external/include/stb_image/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/include/stb_image/stb_image_write.h -------------------------------------------------------------------------------- /external/lib/linux/libGLEW.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/lib/linux/libGLEW.a -------------------------------------------------------------------------------- /external/lib/linux/libglfw3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/lib/linux/libglfw3.a -------------------------------------------------------------------------------- /external/lib/osx/libGLEW.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/lib/osx/libGLEW.a -------------------------------------------------------------------------------- /external/lib/osx/libglfw3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/lib/osx/libglfw3.a -------------------------------------------------------------------------------- /external/lib/win/GL/freeglut.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/lib/win/GL/freeglut.lib -------------------------------------------------------------------------------- /external/lib/win/GL/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/lib/win/GL/glew32.lib -------------------------------------------------------------------------------- /external/lib/win/GL/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/lib/win/GL/glew32s.lib -------------------------------------------------------------------------------- /external/lib/win/GL/glut32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/lib/win/GL/glut32.lib -------------------------------------------------------------------------------- /external/lib/win/GLFW/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/lib/win/GLFW/glfw3.lib -------------------------------------------------------------------------------- /external/lib/win/GLFW/glfw3dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/lib/win/GLFW/glfw3dll.lib -------------------------------------------------------------------------------- /external/lib/win/GLFW/msvc110/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/lib/win/GLFW/msvc110/glfw3.lib -------------------------------------------------------------------------------- /external/lib/win/GLFW/msvc110/glfw3dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/lib/win/GLFW/msvc110/glfw3dll.lib -------------------------------------------------------------------------------- /external/lib/win/GLFW/msvc120/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/lib/win/GLFW/msvc120/glfw3.lib -------------------------------------------------------------------------------- /external/lib/win/GLFW/msvc120/glfw3dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/lib/win/GLFW/msvc120/glfw3dll.lib -------------------------------------------------------------------------------- /external/src/glslUtil/glslUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/src/glslUtil/glslUtility.cpp -------------------------------------------------------------------------------- /external/src/stb_image/stb_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/src/stb_image/stb_image.c -------------------------------------------------------------------------------- /external/src/stb_image/stb_image_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/external/src/stb_image/stb_image_write.c -------------------------------------------------------------------------------- /performanceTestingBPT10.0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/performanceTestingBPT10.0.bmp -------------------------------------------------------------------------------- /performanceTestingBPT100.0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/performanceTestingBPT100.0.bmp -------------------------------------------------------------------------------- /performanceTestingBPT1000.0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/performanceTestingBPT1000.0.bmp -------------------------------------------------------------------------------- /performanceTestingBPT2.0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/performanceTestingBPT2.0.bmp -------------------------------------------------------------------------------- /performanceTestingPT100.0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/performanceTestingPT100.0.bmp -------------------------------------------------------------------------------- /performanceTestingPT1000.0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/performanceTestingPT1000.0.bmp -------------------------------------------------------------------------------- /renders/bidir_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/renders/bidir_alpha.png -------------------------------------------------------------------------------- /src/cudaMat4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/src/cudaMat4.h -------------------------------------------------------------------------------- /src/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/src/image.cpp -------------------------------------------------------------------------------- /src/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/src/image.h -------------------------------------------------------------------------------- /src/interactions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/src/interactions.h -------------------------------------------------------------------------------- /src/intersections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/src/intersections.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/src/main.h -------------------------------------------------------------------------------- /src/raytraceKernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/src/raytraceKernel.cu -------------------------------------------------------------------------------- /src/raytraceKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/src/raytraceKernel.h -------------------------------------------------------------------------------- /src/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/src/scene.cpp -------------------------------------------------------------------------------- /src/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/src/scene.h -------------------------------------------------------------------------------- /src/sceneStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/src/sceneStructs.h -------------------------------------------------------------------------------- /src/utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/src/utilities.cpp -------------------------------------------------------------------------------- /src/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/src/utilities.h -------------------------------------------------------------------------------- /windows/Project3-Pathtracer/Project3-Pathtracer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/windows/Project3-Pathtracer/Project3-Pathtracer.sln -------------------------------------------------------------------------------- /windows/Project3-Pathtracer/Project3-Pathtracer/Project3-Pathtracer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/windows/Project3-Pathtracer/Project3-Pathtracer/Project3-Pathtracer.vcxproj -------------------------------------------------------------------------------- /windows/Project3-Pathtracer/Project3-Pathtracer/Project3-Pathtracer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/windows/Project3-Pathtracer/Project3-Pathtracer/Project3-Pathtracer.vcxproj.filters -------------------------------------------------------------------------------- /windows/Project3-Pathtracer/Project3-Pathtracer/test.0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/windows/Project3-Pathtracer/Project3-Pathtracer/test.0.bmp -------------------------------------------------------------------------------- /windows/Project3-Pathtracer/Project3-Pathtracer/tooWideReflection.0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paula18/Photon-Mapping/HEAD/windows/Project3-Pathtracer/Project3-Pathtracer/tooWideReflection.0.bmp --------------------------------------------------------------------------------