├── .gitignore ├── CMakeLists.txt ├── CMakeSettings.json ├── LICENSE ├── TODO.md ├── cmake ├── AddCompilerFlag.cmake ├── CheckCCompilerFlag.cmake ├── CheckCXXCompilerFlag.cmake ├── CheckMicCCompilerFlag.cmake ├── CheckMicCXXCompilerFlag.cmake ├── FindVulkan.cmake ├── OptimizeForArchitecture.cmake └── SetSourceGroup.cmake ├── dev └── compile_shaders.bat ├── documentation └── file_formats │ └── lantern_model_file │ └── lantern_model_file.adoc ├── scenes ├── dragon_scene.json ├── nine_balls_scene.json ├── scene.schema.json └── textured_cube_scene.json ├── source ├── CMakeLists.txt ├── core │ ├── CMakeLists.txt │ ├── camera │ │ ├── frame_buffer.cpp │ │ ├── frame_buffer.h │ │ ├── pinhole_camera.cpp │ │ ├── pinhole_camera.h │ │ ├── reconstruction_filter.cpp │ │ └── reconstruction_filter.h │ ├── integrator │ │ ├── integrator.cpp │ │ ├── integrator.h │ │ └── surface_interaction.h │ ├── io │ │ ├── file_io.h │ │ ├── lantern_model_file.cpp │ │ └── lantern_model_file.h │ ├── materials │ │ ├── bsdfs │ │ │ ├── bsdf.h │ │ │ ├── bsdf_lobe.h │ │ │ ├── ideal_specular_dielectric.h │ │ │ ├── lambert_bsdf.h │ │ │ └── mirror_bsdf.h │ │ ├── material.h │ │ ├── media │ │ │ ├── isotropic_scattering_medium.h │ │ │ ├── medium.h │ │ │ └── non_scattering_medium.h │ │ └── textures │ │ │ ├── constant_texture.h │ │ │ ├── image_texture.h │ │ │ ├── texture.h │ │ │ └── uv_texture.h │ ├── math │ │ ├── align.h │ │ ├── float_math.h │ │ ├── int_types.h │ │ ├── linearspace4.h │ │ ├── sampling.h │ │ ├── uniform_sampler.h │ │ ├── vector_math.cpp │ │ ├── vector_math.h │ │ └── vector_types.h │ ├── scene │ │ ├── area_light.cpp │ │ ├── area_light.h │ │ ├── geometry_generator.cpp │ │ ├── geometry_generator.h │ │ ├── image_cache.cpp │ │ ├── image_cache.h │ │ ├── light.h │ │ ├── mesh_elements.h │ │ ├── obj_loader.cpp │ │ ├── obj_loader.h │ │ ├── scene.cpp │ │ └── scene.h │ └── visualizer │ │ ├── shaders │ │ ├── final_resolve_ps.glsl │ │ ├── final_resolve_ps.spv.h │ │ ├── fullscreen_triangle_vs.glsl │ │ └── fullscreen_triangle_vs.spv.h │ │ ├── visualizer.cpp │ │ ├── visualizer.h │ │ └── vulkan_function_loader.cpp ├── lantern │ ├── CMakeLists.txt │ └── main.cpp └── lmf_compiler │ ├── CMakeLists.txt │ └── main.cpp └── third_party ├── CMakeLists.txt ├── argparse ├── CMakeLists.txt ├── LICENSE ├── README.md ├── argparse.c └── argparse.h ├── embree ├── .gitignore ├── CMakeLists.txt ├── CTestConfig.cmake ├── LICENSE.txt ├── README.md ├── common │ ├── CMakeLists.txt │ ├── algorithms │ │ ├── CMakeLists.txt │ │ ├── parallel_filter.cpp │ │ ├── parallel_filter.h │ │ ├── parallel_for.cpp │ │ ├── parallel_for.h │ │ ├── parallel_for_for.cpp │ │ ├── parallel_for_for.h │ │ ├── parallel_for_for_prefix_sum.cpp │ │ ├── parallel_for_for_prefix_sum.h │ │ ├── parallel_map.cpp │ │ ├── parallel_map.h │ │ ├── parallel_partition.cpp │ │ ├── parallel_partition.h │ │ ├── parallel_prefix_sum.cpp │ │ ├── parallel_prefix_sum.h │ │ ├── parallel_reduce.cpp │ │ ├── parallel_reduce.h │ │ ├── parallel_set.cpp │ │ ├── parallel_set.h │ │ ├── parallel_sort.cpp │ │ └── parallel_sort.h │ ├── cmake │ │ ├── FindOpenImageIO.cmake │ │ ├── FindPNG.cmake │ │ ├── FindTBB.cmake │ │ ├── check_globals.cmake │ │ ├── check_isa.cpp │ │ ├── check_isa_default.cmake │ │ ├── check_stack_frame_size.cmake │ │ ├── clang.cmake │ │ ├── crayprgenv.cmake │ │ ├── create_isa_dummy_file.cmake │ │ ├── embree-config-builddir.cmake │ │ ├── embree-config-version.cmake │ │ ├── embree-config.cmake │ │ ├── gnu.cmake │ │ ├── intel.cmake │ │ ├── ispc.cmake │ │ ├── msvc.cmake │ │ ├── msvc_post.cmake │ │ ├── package.cmake │ │ ├── rpm_ldconfig.sh │ │ ├── test.cmake │ │ ├── tutorial.cmake │ │ └── uninstall.cmake.in │ ├── lexers │ │ ├── CMakeLists.txt │ │ ├── parsestream.h │ │ ├── stream.h │ │ ├── streamfilters.h │ │ ├── stringstream.cpp │ │ ├── stringstream.h │ │ ├── tokenstream.cpp │ │ └── tokenstream.h │ ├── math │ │ ├── CMakeLists.txt │ │ ├── affinespace.h │ │ ├── bbox.h │ │ ├── col3.h │ │ ├── col4.h │ │ ├── color.h │ │ ├── constants.cpp │ │ ├── constants.h │ │ ├── interval.h │ │ ├── lbbox.h │ │ ├── linearspace2.h │ │ ├── linearspace3.h │ │ ├── math.h │ │ ├── obbox.h │ │ ├── quaternion.h │ │ ├── range.h │ │ ├── vec2.h │ │ ├── vec2fa.h │ │ ├── vec3.h │ │ ├── vec3ba.h │ │ ├── vec3fa.h │ │ ├── vec3ia.h │ │ └── vec4.h │ ├── simd │ │ ├── CMakeLists.txt │ │ ├── avx.h │ │ ├── avx512.h │ │ ├── simd.h │ │ ├── sse.cpp │ │ ├── sse.h │ │ ├── varying.h │ │ ├── vboold4_avx.h │ │ ├── vboold4_avx512.h │ │ ├── vboold8_avx512.h │ │ ├── vboolf16_avx512.h │ │ ├── vboolf4_avx512.h │ │ ├── vboolf4_sse2.h │ │ ├── vboolf8_avx.h │ │ ├── vboolf8_avx512.h │ │ ├── vdouble4_avx.h │ │ ├── vdouble8_avx512.h │ │ ├── vfloat16_avx512.h │ │ ├── vfloat4_sse2.h │ │ ├── vfloat8_avx.h │ │ ├── vint16_avx512.h │ │ ├── vint4_sse2.h │ │ ├── vint8_avx.h │ │ ├── vint8_avx2.h │ │ ├── vllong4_avx2.h │ │ ├── vllong8_avx512.h │ │ ├── vuint16_avx512.h │ │ ├── vuint4_sse2.h │ │ ├── vuint8_avx.h │ │ └── vuint8_avx2.h │ ├── sys │ │ ├── CMakeLists.txt │ │ ├── alloc.cpp │ │ ├── alloc.h │ │ ├── array.h │ │ ├── atomic.h │ │ ├── barrier.cpp │ │ ├── barrier.h │ │ ├── condition.cpp │ │ ├── condition.h │ │ ├── filename.cpp │ │ ├── filename.h │ │ ├── intrinsics.h │ │ ├── library.cpp │ │ ├── library.h │ │ ├── mutex.cpp │ │ ├── mutex.h │ │ ├── platform.h │ │ ├── ref.h │ │ ├── regression.cpp │ │ ├── regression.h │ │ ├── string.cpp │ │ ├── string.h │ │ ├── sysinfo.cpp │ │ ├── sysinfo.h │ │ ├── thread.cpp │ │ ├── thread.h │ │ └── vector.h │ └── tasking │ │ ├── CMakeLists.txt │ │ ├── taskscheduler.h │ │ ├── taskschedulerinternal.cpp │ │ ├── taskschedulerinternal.h │ │ ├── taskschedulerppl.cpp │ │ ├── taskschedulerppl.h │ │ ├── taskschedulertbb.cpp │ │ └── taskschedulertbb.h ├── include │ └── embree3 │ │ ├── rtcore.h │ │ ├── rtcore.isph │ │ ├── rtcore_buffer.h │ │ ├── rtcore_buffer.isph │ │ ├── rtcore_builder.h │ │ ├── rtcore_common.h │ │ ├── rtcore_common.isph │ │ ├── rtcore_device.h │ │ ├── rtcore_device.isph │ │ ├── rtcore_geometry.h │ │ ├── rtcore_geometry.isph │ │ ├── rtcore_ray.h │ │ ├── rtcore_ray.isph │ │ ├── rtcore_scene.h │ │ ├── rtcore_scene.isph │ │ └── rtcore_version.h └── kernels │ ├── CMakeLists.txt │ ├── bvh │ ├── bvh.cpp │ ├── bvh.h │ ├── bvh4_factory.cpp │ ├── bvh4_factory.h │ ├── bvh8_factory.cpp │ ├── bvh8_factory.h │ ├── bvh_builder.cpp │ ├── bvh_builder.h │ ├── bvh_builder_hair.cpp │ ├── bvh_builder_hair_mb.cpp │ ├── bvh_builder_morton.cpp │ ├── bvh_builder_sah.cpp │ ├── bvh_builder_sah_mb.cpp │ ├── bvh_builder_sah_spatial.cpp │ ├── bvh_builder_subdiv.cpp │ ├── bvh_builder_twolevel.cpp │ ├── bvh_builder_twolevel.h │ ├── bvh_factory.h │ ├── bvh_intersector1.cpp │ ├── bvh_intersector1.h │ ├── bvh_intersector1_bvh4.cpp │ ├── bvh_intersector1_bvh8.cpp │ ├── bvh_intersector_hybrid.cpp │ ├── bvh_intersector_hybrid.h │ ├── bvh_intersector_hybrid16_bvh4.cpp │ ├── bvh_intersector_hybrid16_bvh8.cpp │ ├── bvh_intersector_hybrid4_bvh4.cpp │ ├── bvh_intersector_hybrid4_bvh8.cpp │ ├── bvh_intersector_hybrid8_bvh4.cpp │ ├── bvh_intersector_hybrid8_bvh8.cpp │ ├── bvh_intersector_stream.cpp │ ├── bvh_intersector_stream.h │ ├── bvh_intersector_stream_bvh4.cpp │ ├── bvh_intersector_stream_bvh8.cpp │ ├── bvh_intersector_stream_filters.cpp │ ├── bvh_intersector_stream_filters.h │ ├── bvh_refit.cpp │ ├── bvh_refit.h │ ├── bvh_rotate.cpp │ ├── bvh_rotate.h │ ├── bvh_statistics.cpp │ ├── bvh_statistics.h │ ├── bvh_traverser1.h │ ├── bvh_traverser_stream.h │ ├── node_intersector.h │ ├── node_intersector1.h │ ├── node_intersector_frustum.h │ ├── node_intersector_packet.h │ └── node_intersector_packet_stream.h │ ├── common │ ├── accel.h │ ├── accelinstance.h │ ├── acceln.cpp │ ├── acceln.h │ ├── accelset.cpp │ ├── accelset.h │ ├── alloc.cpp │ ├── alloc.h │ ├── buffer.h │ ├── builder.h │ ├── context.h │ ├── default.h │ ├── device.cpp │ ├── device.h │ ├── geometry.cpp │ ├── geometry.h │ ├── hit.h │ ├── isa.h │ ├── primref.h │ ├── primref_mb.h │ ├── profile.h │ ├── ray.h │ ├── rtcore.cpp │ ├── rtcore.h │ ├── rtcore_builder.cpp │ ├── scene.cpp │ ├── scene.h │ ├── scene_curves.cpp │ ├── scene_curves.h │ ├── scene_grid_mesh.cpp │ ├── scene_grid_mesh.h │ ├── scene_instance.cpp │ ├── scene_instance.h │ ├── scene_line_segments.cpp │ ├── scene_line_segments.h │ ├── scene_points.cpp │ ├── scene_points.h │ ├── scene_quad_mesh.cpp │ ├── scene_quad_mesh.h │ ├── scene_subdiv_mesh.cpp │ ├── scene_subdiv_mesh.h │ ├── scene_triangle_mesh.cpp │ ├── scene_triangle_mesh.h │ ├── scene_user_geometry.cpp │ ├── scene_user_geometry.h │ ├── stack_item.h │ ├── stat.cpp │ ├── stat.h │ ├── state.cpp │ ├── state.h │ └── vector.h │ ├── config.h.in │ ├── embree.rc │ ├── export.linux.map │ ├── export.macosx.map │ ├── geometry │ ├── curveNi.h │ ├── curveNi_intersector.h │ ├── curveNi_mb.h │ ├── curveNi_mb_intersector.h │ ├── curveNv.h │ ├── curveNv_intersector.h │ ├── curve_intersector.h │ ├── curve_intersector_distance.h │ ├── curve_intersector_oriented.h │ ├── curve_intersector_precalculations.h │ ├── curve_intersector_ribbon.h │ ├── curve_intersector_sweep.h │ ├── curve_intersector_virtual.cpp │ ├── curve_intersector_virtual.h │ ├── cylinder.h │ ├── disc_intersector.h │ ├── disci_intersector.h │ ├── filter.h │ ├── grid_intersector.h │ ├── grid_soa.cpp │ ├── grid_soa.h │ ├── grid_soa_intersector1.h │ ├── grid_soa_intersector_packet.h │ ├── instance.h │ ├── instance_intersector.cpp │ ├── instance_intersector.h │ ├── intersector_epilog.h │ ├── intersector_iterators.h │ ├── line_intersector.h │ ├── linei.h │ ├── linei_intersector.h │ ├── object.h │ ├── object_intersector.h │ ├── plane.h │ ├── point_precalculations.h │ ├── pointi.h │ ├── primitive.h │ ├── primitive4.cpp │ ├── primitive8.cpp │ ├── quad_intersector.h │ ├── quad_intersector_moeller.h │ ├── quad_intersector_pluecker.h │ ├── quadi.h │ ├── quadi_intersector.h │ ├── quadv.h │ ├── quadv_intersector.h │ ├── sphere_intersector.h │ ├── spherei_intersector.h │ ├── subdivpatch1.h │ ├── subdivpatch1_intersector.h │ ├── subgrid.h │ ├── subgrid_intersector.h │ ├── subgrid_intersector_moeller.h │ ├── subgrid_intersector_pluecker.h │ ├── subgrid_mb_intersector.h │ ├── triangle.h │ ├── triangle_intersector.h │ ├── triangle_intersector_moeller.h │ ├── triangle_intersector_pluecker.h │ ├── triangle_intersector_woop.h │ ├── trianglei.h │ ├── trianglei_intersector.h │ ├── trianglev.h │ ├── trianglev_intersector.h │ ├── trianglev_mb.h │ └── trianglev_mb_intersector.h │ ├── hash.h.in │ ├── rtcore_version.h.in │ └── subdiv │ ├── bezier_curve.cpp │ ├── bezier_curve.h │ ├── bezier_patch.h │ ├── bilinear_patch.h │ ├── bspline_curve.cpp │ ├── bspline_curve.h │ ├── bspline_patch.h │ ├── catmullclark_coefficients.cpp │ ├── catmullclark_coefficients.h │ ├── catmullclark_patch.h │ ├── catmullclark_ring.h │ ├── feature_adaptive_eval.h │ ├── feature_adaptive_eval_grid.h │ ├── feature_adaptive_eval_simd.h │ ├── gregory_patch.h │ ├── gregory_patch_dense.h │ ├── gridrange.h │ ├── half_edge.h │ ├── hermite_curve.h │ ├── linear_bezier_patch.h │ ├── patch.h │ ├── patch_eval.h │ ├── patch_eval_grid.h │ ├── patch_eval_simd.h │ ├── subdivpatch1base.cpp │ ├── subdivpatch1base.h │ ├── subdivpatch1base_eval.cpp │ ├── tessellation.h │ ├── tessellation_cache.cpp │ └── tessellation_cache.h ├── glfw ├── CMake │ ├── GenerateMappings.cmake │ ├── MacOSXBundleInfo.plist.in │ ├── amd64-mingw32msvc.cmake │ ├── i586-mingw32msvc.cmake │ ├── i686-pc-mingw32.cmake │ ├── i686-w64-mingw32.cmake │ ├── modules │ │ ├── FindEpollShim.cmake │ │ ├── FindOSMesa.cmake │ │ ├── FindVulkan.cmake │ │ ├── FindWaylandProtocols.cmake │ │ └── FindXKBCommon.cmake │ └── x86_64-w64-mingw32.cmake ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── deps │ ├── KHR │ │ └── khrplatform.h │ ├── getopt.c │ ├── getopt.h │ ├── glad.c │ ├── glad │ │ └── glad.h │ ├── linmath.h │ ├── mingw │ │ ├── _mingw_dxhelper.h │ │ ├── dinput.h │ │ └── xinput.h │ ├── nuklear.h │ ├── nuklear_glfw_gl2.h │ ├── stb_image_write.h │ ├── tinycthread.c │ ├── tinycthread.h │ ├── vs2008 │ │ └── stdint.h │ └── vulkan │ │ ├── vk_platform.h │ │ ├── vulkan.h │ │ └── vulkan_core.h ├── include │ └── GLFW │ │ ├── glfw3.h │ │ └── glfw3native.h └── src │ ├── CMakeLists.txt │ ├── cocoa_init.m │ ├── cocoa_joystick.h │ ├── cocoa_joystick.m │ ├── cocoa_monitor.m │ ├── cocoa_platform.h │ ├── cocoa_time.c │ ├── cocoa_window.m │ ├── context.c │ ├── egl_context.c │ ├── egl_context.h │ ├── glfw3.pc.in │ ├── glfw3Config.cmake.in │ ├── glfw_config.h.in │ ├── glx_context.c │ ├── glx_context.h │ ├── init.c │ ├── input.c │ ├── internal.h │ ├── linux_joystick.c │ ├── linux_joystick.h │ ├── mappings.h │ ├── mappings.h.in │ ├── monitor.c │ ├── nsgl_context.h │ ├── nsgl_context.m │ ├── null_init.c │ ├── null_joystick.c │ ├── null_joystick.h │ ├── null_monitor.c │ ├── null_platform.h │ ├── null_window.c │ ├── osmesa_context.c │ ├── osmesa_context.h │ ├── posix_thread.c │ ├── posix_thread.h │ ├── posix_time.c │ ├── posix_time.h │ ├── vulkan.c │ ├── wgl_context.c │ ├── wgl_context.h │ ├── win32_init.c │ ├── win32_joystick.c │ ├── win32_joystick.h │ ├── win32_monitor.c │ ├── win32_platform.h │ ├── win32_thread.c │ ├── win32_time.c │ ├── win32_window.c │ ├── window.c │ ├── wl_init.c │ ├── wl_monitor.c │ ├── wl_platform.h │ ├── wl_window.c │ ├── x11_init.c │ ├── x11_monitor.c │ ├── x11_platform.h │ ├── x11_window.c │ ├── xkb_unicode.c │ └── xkb_unicode.h ├── imgui ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── impl │ ├── imgui_impl_glfw.cpp │ ├── imgui_impl_glfw.h │ ├── imgui_impl_vulkan.cpp │ └── imgui_impl_vulkan.h ├── include │ ├── imconfig.h │ ├── imgui.h │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h └── source │ ├── imgui.cpp │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_internal.h │ └── imgui_widgets.cpp ├── json ├── CMakeLists.txt ├── LICENSE ├── README.md └── json.hpp ├── json_schema_validator ├── CMakeLists.txt ├── LICENSE ├── include │ └── json_schema_validator.hpp └── src │ ├── json-schema-draft4.json.cpp │ ├── json-uri.cpp │ └── json-validator.cpp ├── stb ├── CMakeLists.txt ├── include │ ├── stb_image.h │ ├── stb_rect_pack.h │ ├── stb_textedit.h │ └── stb_truetype.h └── stb.cpp ├── tbb ├── CMakeLists.txt ├── LICENSE ├── README.md ├── include │ ├── index.html │ ├── serial │ │ └── tbb │ │ │ ├── parallel_for.h │ │ │ └── tbb_annotate.h │ └── tbb │ │ ├── aggregator.h │ │ ├── aligned_space.h │ │ ├── atomic.h │ │ ├── blocked_range.h │ │ ├── blocked_range2d.h │ │ ├── blocked_range3d.h │ │ ├── blocked_rangeNd.h │ │ ├── cache_aligned_allocator.h │ │ ├── combinable.h │ │ ├── compat │ │ ├── condition_variable │ │ ├── ppl.h │ │ ├── thread │ │ └── tuple │ │ ├── concurrent_hash_map.h │ │ ├── concurrent_lru_cache.h │ │ ├── concurrent_priority_queue.h │ │ ├── concurrent_queue.h │ │ ├── concurrent_unordered_map.h │ │ ├── concurrent_unordered_set.h │ │ ├── concurrent_vector.h │ │ ├── critical_section.h │ │ ├── enumerable_thread_specific.h │ │ ├── flow_graph.h │ │ ├── flow_graph_abstractions.h │ │ ├── flow_graph_opencl_node.h │ │ ├── gfx_factory.h │ │ ├── global_control.h │ │ ├── index.html │ │ ├── internal │ │ ├── _aggregator_impl.h │ │ ├── _concurrent_queue_impl.h │ │ ├── _concurrent_unordered_impl.h │ │ ├── _flow_graph_async_msg_impl.h │ │ ├── _flow_graph_body_impl.h │ │ ├── _flow_graph_cache_impl.h │ │ ├── _flow_graph_impl.h │ │ ├── _flow_graph_indexer_impl.h │ │ ├── _flow_graph_item_buffer_impl.h │ │ ├── _flow_graph_join_impl.h │ │ ├── _flow_graph_node_impl.h │ │ ├── _flow_graph_streaming_node.h │ │ ├── _flow_graph_tagged_buffer_impl.h │ │ ├── _flow_graph_trace_impl.h │ │ ├── _flow_graph_types_impl.h │ │ ├── _mutex_padding.h │ │ ├── _range_iterator.h │ │ ├── _tbb_hash_compare_impl.h │ │ ├── _tbb_strings.h │ │ ├── _tbb_trace_impl.h │ │ ├── _tbb_windef.h │ │ ├── _template_helpers.h │ │ ├── _x86_eliding_mutex_impl.h │ │ └── _x86_rtm_rw_mutex_impl.h │ │ ├── iterators.h │ │ ├── machine │ │ ├── gcc_arm.h │ │ ├── gcc_generic.h │ │ ├── gcc_ia32_common.h │ │ ├── gcc_itsx.h │ │ ├── ibm_aix51.h │ │ ├── icc_generic.h │ │ ├── linux_common.h │ │ ├── linux_ia32.h │ │ ├── linux_ia64.h │ │ ├── linux_intel64.h │ │ ├── mac_ppc.h │ │ ├── macos_common.h │ │ ├── mic_common.h │ │ ├── msvc_armv7.h │ │ ├── msvc_ia32_common.h │ │ ├── sunos_sparc.h │ │ ├── windows_api.h │ │ ├── windows_ia32.h │ │ └── windows_intel64.h │ │ ├── memory_pool.h │ │ ├── mutex.h │ │ ├── null_mutex.h │ │ ├── null_rw_mutex.h │ │ ├── parallel_do.h │ │ ├── parallel_for.h │ │ ├── parallel_for_each.h │ │ ├── parallel_invoke.h │ │ ├── parallel_reduce.h │ │ ├── parallel_scan.h │ │ ├── parallel_sort.h │ │ ├── parallel_while.h │ │ ├── partitioner.h │ │ ├── pipeline.h │ │ ├── queuing_mutex.h │ │ ├── queuing_rw_mutex.h │ │ ├── reader_writer_lock.h │ │ ├── recursive_mutex.h │ │ ├── runtime_loader.h │ │ ├── scalable_allocator.h │ │ ├── spin_mutex.h │ │ ├── spin_rw_mutex.h │ │ ├── task.h │ │ ├── task_arena.h │ │ ├── task_group.h │ │ ├── task_scheduler_init.h │ │ ├── task_scheduler_observer.h │ │ ├── tbb.h │ │ ├── tbb_allocator.h │ │ ├── tbb_config.h │ │ ├── tbb_disable_exceptions.h │ │ ├── tbb_exception.h │ │ ├── tbb_machine.h │ │ ├── tbb_profiling.h │ │ ├── tbb_stddef.h │ │ ├── tbb_thread.h │ │ ├── tbbmalloc_proxy.h │ │ └── tick_count.h └── src │ ├── Makefile │ ├── index.html │ ├── old │ ├── concurrent_queue_v2.cpp │ ├── concurrent_queue_v2.h │ ├── concurrent_vector_v2.cpp │ ├── concurrent_vector_v2.h │ ├── spin_rw_mutex_v2.cpp │ ├── spin_rw_mutex_v2.h │ ├── task_v2.cpp │ ├── test_concurrent_queue_v2.cpp │ ├── test_concurrent_vector_v2.cpp │ ├── test_mutex_v2.cpp │ └── test_task_scheduler_observer_v3.cpp │ ├── perf │ ├── coarse_grained_raii_lru_cache.h │ ├── cpq_pdes.cpp │ ├── fibonacci_impl_tbb.cpp │ ├── perf.cpp │ ├── perf.h │ ├── perf_sched.cpp │ ├── run_statistics.sh │ ├── statistics.cpp │ ├── statistics.h │ ├── statistics_xml.h │ ├── time_cpq_throughput_test.cpp │ ├── time_fibonacci_cutoff.cpp │ ├── time_framework.h │ ├── time_hash_map.cpp │ ├── time_hash_map_fill.cpp │ ├── time_hash_map_fill.html │ ├── time_locked_work.cpp │ ├── time_lru_cache_throughput.cpp │ ├── time_parallel_for_each.cpp │ ├── time_sandbox.h │ ├── time_split_node.cpp │ └── time_vector.cpp │ ├── rml │ ├── client │ │ ├── index.html │ │ ├── library_assert.h │ │ ├── omp_dynamic_link.cpp │ │ ├── omp_dynamic_link.h │ │ ├── rml_factory.h │ │ ├── rml_omp.cpp │ │ └── rml_tbb.cpp │ ├── include │ │ ├── index.html │ │ ├── rml_base.h │ │ ├── rml_omp.h │ │ └── rml_tbb.h │ ├── index.html │ ├── perfor │ │ ├── omp_nested.cpp │ │ ├── omp_simple.cpp │ │ ├── tbb_multi_omp.cpp │ │ ├── tbb_simple.cpp │ │ └── thread_level.h │ ├── server │ │ ├── index.html │ │ ├── irml.rc │ │ ├── job_automaton.h │ │ ├── lin-rml-export.def │ │ ├── rml_server.cpp │ │ ├── thread_monitor.h │ │ ├── wait_counter.h │ │ ├── win32-rml-export.def │ │ └── win64-rml-export.def │ └── test │ │ ├── rml_omp_stub.cpp │ │ ├── test_job_automaton.cpp │ │ ├── test_rml_mixed.cpp │ │ ├── test_rml_omp.cpp │ │ ├── test_rml_omp_c_linkage.c │ │ ├── test_rml_tbb.cpp │ │ ├── test_server.h │ │ └── test_thread_monitor.cpp │ ├── tbb │ ├── arena.cpp │ ├── arena.h │ ├── cache_aligned_allocator.cpp │ ├── cilk-tbb-interop.h │ ├── concurrent_hash_map.cpp │ ├── concurrent_monitor.cpp │ ├── concurrent_monitor.h │ ├── concurrent_queue.cpp │ ├── concurrent_vector.cpp │ ├── condition_variable.cpp │ ├── critical_section.cpp │ ├── custom_scheduler.h │ ├── dynamic_link.cpp │ ├── dynamic_link.h │ ├── governor.cpp │ ├── governor.h │ ├── ia32-masm │ │ ├── atomic_support.asm │ │ ├── itsx.asm │ │ └── lock_byte.asm │ ├── ia64-gas │ │ ├── atomic_support.s │ │ ├── ia64_misc.s │ │ ├── lock_byte.s │ │ ├── log2.s │ │ └── pause.s │ ├── ibm_aix51 │ │ └── atomic_support.c │ ├── index.html │ ├── intel64-masm │ │ ├── atomic_support.asm │ │ ├── intel64_misc.asm │ │ └── itsx.asm │ ├── intrusive_list.h │ ├── itt_notify.cpp │ ├── itt_notify.h │ ├── lin32-tbb-export.def │ ├── lin32-tbb-export.lst │ ├── lin64-tbb-export.def │ ├── lin64-tbb-export.lst │ ├── lin64ipf-tbb-export.def │ ├── lin64ipf-tbb-export.lst │ ├── mac32-tbb-export.def │ ├── mac32-tbb-export.lst │ ├── mac64-tbb-export.def │ ├── mac64-tbb-export.lst │ ├── mailbox.h │ ├── market.cpp │ ├── market.h │ ├── mutex.cpp │ ├── observer_proxy.cpp │ ├── observer_proxy.h │ ├── pipeline.cpp │ ├── private_server.cpp │ ├── queuing_mutex.cpp │ ├── queuing_rw_mutex.cpp │ ├── reader_writer_lock.cpp │ ├── recursive_mutex.cpp │ ├── scheduler.cpp │ ├── scheduler.h │ ├── scheduler_common.h │ ├── scheduler_utility.h │ ├── semaphore.cpp │ ├── semaphore.h │ ├── spin_mutex.cpp │ ├── spin_rw_mutex.cpp │ ├── task.cpp │ ├── task_group_context.cpp │ ├── task_stream.h │ ├── tbb_assert_impl.h │ ├── tbb_main.cpp │ ├── tbb_main.h │ ├── tbb_misc.cpp │ ├── tbb_misc.h │ ├── tbb_misc_ex.cpp │ ├── tbb_resource.rc │ ├── tbb_statistics.cpp │ ├── tbb_statistics.h │ ├── tbb_thread.cpp │ ├── tbb_version.h │ ├── tls.h │ ├── tools_api │ │ ├── disable_warnings.h │ │ ├── ittnotify.h │ │ ├── ittnotify_config.h │ │ ├── ittnotify_static.c │ │ ├── ittnotify_static.h │ │ ├── ittnotify_types.h │ │ └── legacy │ │ │ └── ittnotify.h │ ├── win32-tbb-export.def │ ├── win32-tbb-export.lst │ ├── win64-gcc-tbb-export.def │ ├── win64-gcc-tbb-export.lst │ ├── win64-tbb-export.def │ ├── win64-tbb-export.lst │ ├── winrt-tbb-export.lst │ └── x86_rtm_rw_mutex.cpp │ ├── tbbmalloc │ ├── Customize.h │ ├── MapMemory.h │ ├── Statistics.h │ ├── Synchronize.h │ ├── TypeDefinitions.h │ ├── backend.cpp │ ├── backref.cpp │ ├── frontend.cpp │ ├── index.html │ ├── large_objects.cpp │ ├── lin32-proxy-export.def │ ├── lin32-tbbmalloc-export.def │ ├── lin64-proxy-export.def │ ├── lin64-tbbmalloc-export.def │ ├── lin64ipf-proxy-export.def │ ├── lin64ipf-tbbmalloc-export.def │ ├── mac32-tbbmalloc-export.def │ ├── mac64-tbbmalloc-export.def │ ├── proxy.cpp │ ├── proxy.h │ ├── proxy_overload_osx.h │ ├── shared_utils.h │ ├── tbb_function_replacement.cpp │ ├── tbb_function_replacement.h │ ├── tbbmalloc.cpp │ ├── tbbmalloc.rc │ ├── tbbmalloc_internal.h │ ├── tbbmalloc_internal_api.h │ ├── win32-gcc-tbbmalloc-export.def │ ├── win32-tbbmalloc-export.def │ ├── win64-gcc-tbbmalloc-export.def │ └── win64-tbbmalloc-export.def │ ├── tbbproxy │ ├── tbbproxy-windows.asm │ └── tbbproxy.cpp │ └── test │ ├── harness.h │ ├── harness_allocator.h │ ├── harness_allocator_overload.h │ ├── harness_assert.h │ ├── harness_bad_expr.h │ ├── harness_barrier.h │ ├── harness_checktype.h │ ├── harness_concurrency.h │ ├── harness_concurrency_tracker.h │ ├── harness_cpu.h │ ├── harness_defs.h │ ├── harness_dynamic_libs.h │ ├── harness_eh.h │ ├── harness_fp.h │ ├── harness_graph.h │ ├── harness_inject_scheduler.h │ ├── harness_iterator.h │ ├── harness_m128.h │ ├── harness_memory.h │ ├── harness_mic.h │ ├── harness_preload.h │ ├── harness_report.h │ ├── harness_runtime_loader.h │ ├── harness_state_trackable.h │ ├── harness_task.h │ ├── harness_tbb_independence.h │ ├── harness_test_cases_framework.h │ ├── harness_tls.h │ ├── harness_tsx.h │ ├── test_ScalableAllocator.cpp │ ├── test_ScalableAllocator_STL.cpp │ ├── test_aggregator.cpp │ ├── test_aligned_space.cpp │ ├── test_allocator.h │ ├── test_allocator_STL.h │ ├── test_assembly.cpp │ ├── test_async_msg.cpp │ ├── test_async_node.cpp │ ├── test_atomic.cpp │ ├── test_blocked_range.cpp │ ├── test_blocked_range2d.cpp │ ├── test_blocked_range3d.cpp │ ├── test_blocked_rangeNd.cpp │ ├── test_broadcast_node.cpp │ ├── test_buffer_node.cpp │ ├── test_cache_aligned_allocator.cpp │ ├── test_cache_aligned_allocator_STL.cpp │ ├── test_cilk_common.h │ ├── test_cilk_dynamic_load.cpp │ ├── test_cilk_interop.cpp │ ├── test_combinable.cpp │ ├── test_composite_node.cpp │ ├── test_concurrent_hash_map.cpp │ ├── test_concurrent_lru_cache.cpp │ ├── test_concurrent_monitor.cpp │ ├── test_concurrent_priority_queue.cpp │ ├── test_concurrent_queue.cpp │ ├── test_concurrent_queue_whitebox.cpp │ ├── test_concurrent_unordered_common.h │ ├── test_concurrent_unordered_map.cpp │ ├── test_concurrent_unordered_set.cpp │ ├── test_concurrent_vector.cpp │ ├── test_condition_variable.h │ ├── test_container_move_support.h │ ├── test_continue_node.cpp │ ├── test_critical_section.cpp │ ├── test_dynamic_link.cpp │ ├── test_eh_algorithms.cpp │ ├── test_eh_flow_graph.cpp │ ├── test_eh_tasks.cpp │ ├── test_enumerable_thread_specific.cpp │ ├── test_examples_common_utility.cpp │ ├── test_fast_random.cpp │ ├── test_flow_graph.cpp │ ├── test_flow_graph_whitebox.cpp │ ├── test_fp.cpp │ ├── test_function_node.cpp │ ├── test_gfx_factory.cpp │ ├── test_global_control.cpp │ ├── test_global_control_whitebox.cpp │ ├── test_halt.cpp │ ├── test_handle_perror.cpp │ ├── test_hw_concurrency.cpp │ ├── test_indexer_node.cpp │ ├── test_initializer_list.h │ ├── test_inits_loop.cpp │ ├── test_intrusive_list.cpp │ ├── test_ittnotify.cpp │ ├── test_join_node.cpp │ ├── test_join_node.h │ ├── test_join_node_key_matching.cpp │ ├── test_join_node_msg_key_matching.cpp │ ├── test_lambda.cpp │ ├── test_limiter_node.cpp │ ├── test_malloc_atexit.cpp │ ├── test_malloc_compliance.cpp │ ├── test_malloc_init_shutdown.cpp │ ├── test_malloc_lib_unload.cpp │ ├── test_malloc_new_handler.cpp │ ├── test_malloc_overload.cpp │ ├── test_malloc_pools.cpp │ ├── test_malloc_pure_c.c │ ├── test_malloc_regression.cpp │ ├── test_malloc_shutdown_hang.cpp │ ├── test_malloc_used_by_lib.cpp │ ├── test_malloc_whitebox.cpp │ ├── test_model_plugin.cpp │ ├── test_multifunction_node.cpp │ ├── test_mutex.cpp │ ├── test_mutex_native_threads.cpp │ ├── test_opencl_kernel_32.spir │ ├── test_opencl_kernel_64.spir │ ├── test_opencl_node.cl │ ├── test_opencl_node.cpp │ ├── test_opencl_precompiled_kernel_gpu_32.ir │ ├── test_opencl_precompiled_kernel_gpu_64.ir │ ├── test_openmp.cpp │ ├── test_overwrite_node.cpp │ ├── test_parallel_do.cpp │ ├── test_parallel_for.cpp │ ├── test_parallel_for_each.cpp │ ├── test_parallel_for_vectorization.cpp │ ├── test_parallel_invoke.cpp │ ├── test_parallel_pipeline.cpp │ ├── test_parallel_reduce.cpp │ ├── test_parallel_scan.cpp │ ├── test_parallel_sort.cpp │ ├── test_parallel_while.cpp │ ├── test_partitioner.h │ ├── test_partitioner_whitebox.cpp │ ├── test_partitioner_whitebox.h │ ├── test_pipeline.cpp │ ├── test_pipeline_with_tbf.cpp │ ├── test_priority_queue_node.cpp │ ├── test_queue_node.cpp │ ├── test_range_based_for.h │ ├── test_reader_writer_lock.cpp │ ├── test_runtime_loader.cpp │ ├── test_rwm_upgrade_downgrade.cpp │ ├── test_semaphore.cpp │ ├── test_sequencer_node.cpp │ ├── test_source_node.cpp │ ├── test_split_node.cpp │ ├── test_static_assert.cpp │ ├── test_std_thread.cpp │ ├── test_streaming_node.cpp │ ├── test_tagged_msg.cpp │ ├── test_task.cpp │ ├── test_task_arena.cpp │ ├── test_task_assertions.cpp │ ├── test_task_auto_init.cpp │ ├── test_task_enqueue.cpp │ ├── test_task_group.cpp │ ├── test_task_leaks.cpp │ ├── test_task_priority.cpp │ ├── test_task_scheduler_init.cpp │ ├── test_task_scheduler_observer.cpp │ ├── test_task_steal_limit.cpp │ ├── test_tbb_condition_variable.cpp │ ├── test_tbb_fork.cpp │ ├── test_tbb_header.cpp │ ├── test_tbb_thread.cpp │ ├── test_tbb_version.cpp │ ├── test_thread.h │ ├── test_tick_count.cpp │ ├── test_tuple.cpp │ ├── test_write_once_node.cpp │ └── test_yield.cpp ├── tiny_obj_loader ├── CMakeLists.txt ├── include │ └── tiny_obj_loader │ │ └── tiny_obj_loader.h └── tiny_obj_loader.cpp └── vk_mem_alloc ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── include └── vk_mem_alloc.h └── src └── vk_mem_alloc.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/CMakeSettings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/LICENSE -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/TODO.md -------------------------------------------------------------------------------- /cmake/AddCompilerFlag.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/cmake/AddCompilerFlag.cmake -------------------------------------------------------------------------------- /cmake/CheckCCompilerFlag.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/cmake/CheckCCompilerFlag.cmake -------------------------------------------------------------------------------- /cmake/CheckCXXCompilerFlag.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/cmake/CheckCXXCompilerFlag.cmake -------------------------------------------------------------------------------- /cmake/CheckMicCCompilerFlag.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/cmake/CheckMicCCompilerFlag.cmake -------------------------------------------------------------------------------- /cmake/CheckMicCXXCompilerFlag.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/cmake/CheckMicCXXCompilerFlag.cmake -------------------------------------------------------------------------------- /cmake/FindVulkan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/cmake/FindVulkan.cmake -------------------------------------------------------------------------------- /cmake/OptimizeForArchitecture.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/cmake/OptimizeForArchitecture.cmake -------------------------------------------------------------------------------- /cmake/SetSourceGroup.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/cmake/SetSourceGroup.cmake -------------------------------------------------------------------------------- /dev/compile_shaders.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/dev/compile_shaders.bat -------------------------------------------------------------------------------- /scenes/dragon_scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/scenes/dragon_scene.json -------------------------------------------------------------------------------- /scenes/nine_balls_scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/scenes/nine_balls_scene.json -------------------------------------------------------------------------------- /scenes/scene.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/scenes/scene.schema.json -------------------------------------------------------------------------------- /scenes/textured_cube_scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/scenes/textured_cube_scene.json -------------------------------------------------------------------------------- /source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/CMakeLists.txt -------------------------------------------------------------------------------- /source/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/CMakeLists.txt -------------------------------------------------------------------------------- /source/core/camera/frame_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/camera/frame_buffer.cpp -------------------------------------------------------------------------------- /source/core/camera/frame_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/camera/frame_buffer.h -------------------------------------------------------------------------------- /source/core/camera/pinhole_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/camera/pinhole_camera.cpp -------------------------------------------------------------------------------- /source/core/camera/pinhole_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/camera/pinhole_camera.h -------------------------------------------------------------------------------- /source/core/camera/reconstruction_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/camera/reconstruction_filter.cpp -------------------------------------------------------------------------------- /source/core/camera/reconstruction_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/camera/reconstruction_filter.h -------------------------------------------------------------------------------- /source/core/integrator/integrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/integrator/integrator.cpp -------------------------------------------------------------------------------- /source/core/integrator/integrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/integrator/integrator.h -------------------------------------------------------------------------------- /source/core/integrator/surface_interaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/integrator/surface_interaction.h -------------------------------------------------------------------------------- /source/core/io/file_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/io/file_io.h -------------------------------------------------------------------------------- /source/core/io/lantern_model_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/io/lantern_model_file.cpp -------------------------------------------------------------------------------- /source/core/io/lantern_model_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/io/lantern_model_file.h -------------------------------------------------------------------------------- /source/core/materials/bsdfs/bsdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/materials/bsdfs/bsdf.h -------------------------------------------------------------------------------- /source/core/materials/bsdfs/bsdf_lobe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/materials/bsdfs/bsdf_lobe.h -------------------------------------------------------------------------------- /source/core/materials/bsdfs/lambert_bsdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/materials/bsdfs/lambert_bsdf.h -------------------------------------------------------------------------------- /source/core/materials/bsdfs/mirror_bsdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/materials/bsdfs/mirror_bsdf.h -------------------------------------------------------------------------------- /source/core/materials/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/materials/material.h -------------------------------------------------------------------------------- /source/core/materials/media/medium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/materials/media/medium.h -------------------------------------------------------------------------------- /source/core/materials/media/non_scattering_medium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/materials/media/non_scattering_medium.h -------------------------------------------------------------------------------- /source/core/materials/textures/constant_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/materials/textures/constant_texture.h -------------------------------------------------------------------------------- /source/core/materials/textures/image_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/materials/textures/image_texture.h -------------------------------------------------------------------------------- /source/core/materials/textures/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/materials/textures/texture.h -------------------------------------------------------------------------------- /source/core/materials/textures/uv_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/materials/textures/uv_texture.h -------------------------------------------------------------------------------- /source/core/math/align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/math/align.h -------------------------------------------------------------------------------- /source/core/math/float_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/math/float_math.h -------------------------------------------------------------------------------- /source/core/math/int_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/math/int_types.h -------------------------------------------------------------------------------- /source/core/math/linearspace4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/math/linearspace4.h -------------------------------------------------------------------------------- /source/core/math/sampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/math/sampling.h -------------------------------------------------------------------------------- /source/core/math/uniform_sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/math/uniform_sampler.h -------------------------------------------------------------------------------- /source/core/math/vector_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/math/vector_math.cpp -------------------------------------------------------------------------------- /source/core/math/vector_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/math/vector_math.h -------------------------------------------------------------------------------- /source/core/math/vector_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/math/vector_types.h -------------------------------------------------------------------------------- /source/core/scene/area_light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/scene/area_light.cpp -------------------------------------------------------------------------------- /source/core/scene/area_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/scene/area_light.h -------------------------------------------------------------------------------- /source/core/scene/geometry_generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/scene/geometry_generator.cpp -------------------------------------------------------------------------------- /source/core/scene/geometry_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/scene/geometry_generator.h -------------------------------------------------------------------------------- /source/core/scene/image_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/scene/image_cache.cpp -------------------------------------------------------------------------------- /source/core/scene/image_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/scene/image_cache.h -------------------------------------------------------------------------------- /source/core/scene/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/scene/light.h -------------------------------------------------------------------------------- /source/core/scene/mesh_elements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/scene/mesh_elements.h -------------------------------------------------------------------------------- /source/core/scene/obj_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/scene/obj_loader.cpp -------------------------------------------------------------------------------- /source/core/scene/obj_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/scene/obj_loader.h -------------------------------------------------------------------------------- /source/core/scene/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/scene/scene.cpp -------------------------------------------------------------------------------- /source/core/scene/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/scene/scene.h -------------------------------------------------------------------------------- /source/core/visualizer/shaders/final_resolve_ps.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/visualizer/shaders/final_resolve_ps.glsl -------------------------------------------------------------------------------- /source/core/visualizer/visualizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/visualizer/visualizer.cpp -------------------------------------------------------------------------------- /source/core/visualizer/visualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/visualizer/visualizer.h -------------------------------------------------------------------------------- /source/core/visualizer/vulkan_function_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/core/visualizer/vulkan_function_loader.cpp -------------------------------------------------------------------------------- /source/lantern/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/lantern/CMakeLists.txt -------------------------------------------------------------------------------- /source/lantern/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/lantern/main.cpp -------------------------------------------------------------------------------- /source/lmf_compiler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/lmf_compiler/CMakeLists.txt -------------------------------------------------------------------------------- /source/lmf_compiler/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/source/lmf_compiler/main.cpp -------------------------------------------------------------------------------- /third_party/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/argparse/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/argparse/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/argparse/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/argparse/LICENSE -------------------------------------------------------------------------------- /third_party/argparse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/argparse/README.md -------------------------------------------------------------------------------- /third_party/argparse/argparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/argparse/argparse.c -------------------------------------------------------------------------------- /third_party/argparse/argparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/argparse/argparse.h -------------------------------------------------------------------------------- /third_party/embree/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/.gitignore -------------------------------------------------------------------------------- /third_party/embree/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/embree/CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/CTestConfig.cmake -------------------------------------------------------------------------------- /third_party/embree/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/LICENSE.txt -------------------------------------------------------------------------------- /third_party/embree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/README.md -------------------------------------------------------------------------------- /third_party/embree/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/embree/common/algorithms/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/algorithms/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/embree/common/algorithms/parallel_for.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/algorithms/parallel_for.h -------------------------------------------------------------------------------- /third_party/embree/common/algorithms/parallel_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/algorithms/parallel_map.h -------------------------------------------------------------------------------- /third_party/embree/common/algorithms/parallel_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/algorithms/parallel_set.h -------------------------------------------------------------------------------- /third_party/embree/common/algorithms/parallel_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/algorithms/parallel_sort.h -------------------------------------------------------------------------------- /third_party/embree/common/cmake/FindPNG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/cmake/FindPNG.cmake -------------------------------------------------------------------------------- /third_party/embree/common/cmake/FindTBB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/cmake/FindTBB.cmake -------------------------------------------------------------------------------- /third_party/embree/common/cmake/check_globals.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/cmake/check_globals.cmake -------------------------------------------------------------------------------- /third_party/embree/common/cmake/check_isa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/cmake/check_isa.cpp -------------------------------------------------------------------------------- /third_party/embree/common/cmake/clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/cmake/clang.cmake -------------------------------------------------------------------------------- /third_party/embree/common/cmake/crayprgenv.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/cmake/crayprgenv.cmake -------------------------------------------------------------------------------- /third_party/embree/common/cmake/embree-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/cmake/embree-config.cmake -------------------------------------------------------------------------------- /third_party/embree/common/cmake/gnu.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/cmake/gnu.cmake -------------------------------------------------------------------------------- /third_party/embree/common/cmake/intel.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/cmake/intel.cmake -------------------------------------------------------------------------------- /third_party/embree/common/cmake/ispc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/cmake/ispc.cmake -------------------------------------------------------------------------------- /third_party/embree/common/cmake/msvc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/cmake/msvc.cmake -------------------------------------------------------------------------------- /third_party/embree/common/cmake/msvc_post.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/cmake/msvc_post.cmake -------------------------------------------------------------------------------- /third_party/embree/common/cmake/package.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/cmake/package.cmake -------------------------------------------------------------------------------- /third_party/embree/common/cmake/rpm_ldconfig.sh: -------------------------------------------------------------------------------- 1 | /sbin/ldconfig 2 | -------------------------------------------------------------------------------- /third_party/embree/common/cmake/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/cmake/test.cmake -------------------------------------------------------------------------------- /third_party/embree/common/cmake/tutorial.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/cmake/tutorial.cmake -------------------------------------------------------------------------------- /third_party/embree/common/cmake/uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/cmake/uninstall.cmake.in -------------------------------------------------------------------------------- /third_party/embree/common/lexers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/lexers/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/embree/common/lexers/parsestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/lexers/parsestream.h -------------------------------------------------------------------------------- /third_party/embree/common/lexers/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/lexers/stream.h -------------------------------------------------------------------------------- /third_party/embree/common/lexers/streamfilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/lexers/streamfilters.h -------------------------------------------------------------------------------- /third_party/embree/common/lexers/stringstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/lexers/stringstream.cpp -------------------------------------------------------------------------------- /third_party/embree/common/lexers/stringstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/lexers/stringstream.h -------------------------------------------------------------------------------- /third_party/embree/common/lexers/tokenstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/lexers/tokenstream.cpp -------------------------------------------------------------------------------- /third_party/embree/common/lexers/tokenstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/lexers/tokenstream.h -------------------------------------------------------------------------------- /third_party/embree/common/math/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/math/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/embree/common/math/affinespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/math/affinespace.h -------------------------------------------------------------------------------- /third_party/embree/common/math/bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/math/bbox.h -------------------------------------------------------------------------------- /third_party/embree/common/math/col3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/math/col3.h -------------------------------------------------------------------------------- /third_party/embree/common/math/col4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/math/col4.h -------------------------------------------------------------------------------- /third_party/embree/common/math/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/math/color.h -------------------------------------------------------------------------------- /third_party/embree/common/math/constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/math/constants.cpp -------------------------------------------------------------------------------- /third_party/embree/common/math/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/math/constants.h -------------------------------------------------------------------------------- /third_party/embree/common/math/interval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/math/interval.h -------------------------------------------------------------------------------- /third_party/embree/common/math/lbbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/math/lbbox.h -------------------------------------------------------------------------------- /third_party/embree/common/math/linearspace2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/math/linearspace2.h -------------------------------------------------------------------------------- /third_party/embree/common/math/linearspace3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/math/linearspace3.h -------------------------------------------------------------------------------- /third_party/embree/common/math/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/math/math.h -------------------------------------------------------------------------------- /third_party/embree/common/math/obbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/math/obbox.h -------------------------------------------------------------------------------- /third_party/embree/common/math/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/math/quaternion.h -------------------------------------------------------------------------------- /third_party/embree/common/math/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/math/range.h -------------------------------------------------------------------------------- /third_party/embree/common/math/vec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/math/vec2.h -------------------------------------------------------------------------------- /third_party/embree/common/math/vec2fa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/math/vec2fa.h -------------------------------------------------------------------------------- /third_party/embree/common/math/vec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/math/vec3.h -------------------------------------------------------------------------------- /third_party/embree/common/math/vec3ba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/math/vec3ba.h -------------------------------------------------------------------------------- /third_party/embree/common/math/vec3fa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/math/vec3fa.h -------------------------------------------------------------------------------- /third_party/embree/common/math/vec3ia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/math/vec3ia.h -------------------------------------------------------------------------------- /third_party/embree/common/math/vec4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/math/vec4.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/embree/common/simd/avx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/avx.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/avx512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/avx512.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/simd.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/sse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/sse.cpp -------------------------------------------------------------------------------- /third_party/embree/common/simd/sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/sse.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/varying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/varying.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/vboold4_avx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/vboold4_avx.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/vboold4_avx512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/vboold4_avx512.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/vboold8_avx512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/vboold8_avx512.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/vboolf16_avx512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/vboolf16_avx512.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/vboolf4_avx512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/vboolf4_avx512.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/vboolf4_sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/vboolf4_sse2.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/vboolf8_avx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/vboolf8_avx.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/vboolf8_avx512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/vboolf8_avx512.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/vdouble4_avx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/vdouble4_avx.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/vdouble8_avx512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/vdouble8_avx512.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/vfloat16_avx512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/vfloat16_avx512.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/vfloat4_sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/vfloat4_sse2.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/vfloat8_avx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/vfloat8_avx.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/vint16_avx512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/vint16_avx512.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/vint4_sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/vint4_sse2.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/vint8_avx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/vint8_avx.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/vint8_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/vint8_avx2.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/vllong4_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/vllong4_avx2.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/vllong8_avx512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/vllong8_avx512.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/vuint16_avx512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/vuint16_avx512.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/vuint4_sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/vuint4_sse2.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/vuint8_avx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/vuint8_avx.h -------------------------------------------------------------------------------- /third_party/embree/common/simd/vuint8_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/simd/vuint8_avx2.h -------------------------------------------------------------------------------- /third_party/embree/common/sys/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/embree/common/sys/alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/alloc.cpp -------------------------------------------------------------------------------- /third_party/embree/common/sys/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/alloc.h -------------------------------------------------------------------------------- /third_party/embree/common/sys/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/array.h -------------------------------------------------------------------------------- /third_party/embree/common/sys/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/atomic.h -------------------------------------------------------------------------------- /third_party/embree/common/sys/barrier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/barrier.cpp -------------------------------------------------------------------------------- /third_party/embree/common/sys/barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/barrier.h -------------------------------------------------------------------------------- /third_party/embree/common/sys/condition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/condition.cpp -------------------------------------------------------------------------------- /third_party/embree/common/sys/condition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/condition.h -------------------------------------------------------------------------------- /third_party/embree/common/sys/filename.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/filename.cpp -------------------------------------------------------------------------------- /third_party/embree/common/sys/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/filename.h -------------------------------------------------------------------------------- /third_party/embree/common/sys/intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/intrinsics.h -------------------------------------------------------------------------------- /third_party/embree/common/sys/library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/library.cpp -------------------------------------------------------------------------------- /third_party/embree/common/sys/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/library.h -------------------------------------------------------------------------------- /third_party/embree/common/sys/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/mutex.cpp -------------------------------------------------------------------------------- /third_party/embree/common/sys/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/mutex.h -------------------------------------------------------------------------------- /third_party/embree/common/sys/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/platform.h -------------------------------------------------------------------------------- /third_party/embree/common/sys/ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/ref.h -------------------------------------------------------------------------------- /third_party/embree/common/sys/regression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/regression.cpp -------------------------------------------------------------------------------- /third_party/embree/common/sys/regression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/regression.h -------------------------------------------------------------------------------- /third_party/embree/common/sys/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/string.cpp -------------------------------------------------------------------------------- /third_party/embree/common/sys/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/string.h -------------------------------------------------------------------------------- /third_party/embree/common/sys/sysinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/sysinfo.cpp -------------------------------------------------------------------------------- /third_party/embree/common/sys/sysinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/sysinfo.h -------------------------------------------------------------------------------- /third_party/embree/common/sys/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/thread.cpp -------------------------------------------------------------------------------- /third_party/embree/common/sys/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/thread.h -------------------------------------------------------------------------------- /third_party/embree/common/sys/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/sys/vector.h -------------------------------------------------------------------------------- /third_party/embree/common/tasking/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/tasking/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/embree/common/tasking/taskscheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/tasking/taskscheduler.h -------------------------------------------------------------------------------- /third_party/embree/common/tasking/taskschedulerppl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/tasking/taskschedulerppl.h -------------------------------------------------------------------------------- /third_party/embree/common/tasking/taskschedulertbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/common/tasking/taskschedulertbb.h -------------------------------------------------------------------------------- /third_party/embree/include/embree3/rtcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/include/embree3/rtcore.h -------------------------------------------------------------------------------- /third_party/embree/include/embree3/rtcore.isph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/include/embree3/rtcore.isph -------------------------------------------------------------------------------- /third_party/embree/include/embree3/rtcore_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/include/embree3/rtcore_buffer.h -------------------------------------------------------------------------------- /third_party/embree/include/embree3/rtcore_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/include/embree3/rtcore_builder.h -------------------------------------------------------------------------------- /third_party/embree/include/embree3/rtcore_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/include/embree3/rtcore_common.h -------------------------------------------------------------------------------- /third_party/embree/include/embree3/rtcore_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/include/embree3/rtcore_device.h -------------------------------------------------------------------------------- /third_party/embree/include/embree3/rtcore_geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/include/embree3/rtcore_geometry.h -------------------------------------------------------------------------------- /third_party/embree/include/embree3/rtcore_ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/include/embree3/rtcore_ray.h -------------------------------------------------------------------------------- /third_party/embree/include/embree3/rtcore_ray.isph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/include/embree3/rtcore_ray.isph -------------------------------------------------------------------------------- /third_party/embree/include/embree3/rtcore_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/include/embree3/rtcore_scene.h -------------------------------------------------------------------------------- /third_party/embree/include/embree3/rtcore_scene.isph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/include/embree3/rtcore_scene.isph -------------------------------------------------------------------------------- /third_party/embree/include/embree3/rtcore_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/include/embree3/rtcore_version.h -------------------------------------------------------------------------------- /third_party/embree/kernels/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/embree/kernels/bvh/bvh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/bvh/bvh.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/bvh/bvh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/bvh/bvh.h -------------------------------------------------------------------------------- /third_party/embree/kernels/bvh/bvh4_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/bvh/bvh4_factory.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/bvh/bvh4_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/bvh/bvh4_factory.h -------------------------------------------------------------------------------- /third_party/embree/kernels/bvh/bvh8_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/bvh/bvh8_factory.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/bvh/bvh8_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/bvh/bvh8_factory.h -------------------------------------------------------------------------------- /third_party/embree/kernels/bvh/bvh_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/bvh/bvh_builder.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/bvh/bvh_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/bvh/bvh_builder.h -------------------------------------------------------------------------------- /third_party/embree/kernels/bvh/bvh_builder_hair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/bvh/bvh_builder_hair.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/bvh/bvh_builder_sah.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/bvh/bvh_builder_sah.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/bvh/bvh_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/bvh/bvh_factory.h -------------------------------------------------------------------------------- /third_party/embree/kernels/bvh/bvh_intersector1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/bvh/bvh_intersector1.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/bvh/bvh_intersector1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/bvh/bvh_intersector1.h -------------------------------------------------------------------------------- /third_party/embree/kernels/bvh/bvh_refit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/bvh/bvh_refit.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/bvh/bvh_refit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/bvh/bvh_refit.h -------------------------------------------------------------------------------- /third_party/embree/kernels/bvh/bvh_rotate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/bvh/bvh_rotate.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/bvh/bvh_rotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/bvh/bvh_rotate.h -------------------------------------------------------------------------------- /third_party/embree/kernels/bvh/bvh_statistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/bvh/bvh_statistics.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/bvh/bvh_statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/bvh/bvh_statistics.h -------------------------------------------------------------------------------- /third_party/embree/kernels/bvh/bvh_traverser1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/bvh/bvh_traverser1.h -------------------------------------------------------------------------------- /third_party/embree/kernels/bvh/node_intersector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/bvh/node_intersector.h -------------------------------------------------------------------------------- /third_party/embree/kernels/bvh/node_intersector1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/bvh/node_intersector1.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/accel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/accel.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/accelinstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/accelinstance.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/acceln.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/acceln.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/common/acceln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/acceln.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/accelset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/accelset.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/common/accelset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/accelset.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/alloc.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/common/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/alloc.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/buffer.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/builder.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/context.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/default.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/device.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/common/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/device.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/geometry.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/common/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/geometry.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/hit.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/isa.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/primref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/primref.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/primref_mb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/primref_mb.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/profile.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/ray.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/rtcore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/rtcore.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/common/rtcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/rtcore.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/rtcore_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/rtcore_builder.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/common/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/scene.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/common/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/scene.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/scene_curves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/scene_curves.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/common/scene_curves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/scene_curves.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/scene_grid_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/scene_grid_mesh.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/scene_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/scene_instance.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/common/scene_instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/scene_instance.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/scene_points.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/scene_points.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/common/scene_points.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/scene_points.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/scene_quad_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/scene_quad_mesh.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/stack_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/stack_item.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/stat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/stat.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/common/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/stat.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/state.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/common/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/state.h -------------------------------------------------------------------------------- /third_party/embree/kernels/common/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/common/vector.h -------------------------------------------------------------------------------- /third_party/embree/kernels/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/config.h.in -------------------------------------------------------------------------------- /third_party/embree/kernels/embree.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/embree.rc -------------------------------------------------------------------------------- /third_party/embree/kernels/export.linux.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/export.linux.map -------------------------------------------------------------------------------- /third_party/embree/kernels/export.macosx.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/export.macosx.map -------------------------------------------------------------------------------- /third_party/embree/kernels/geometry/curveNi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/geometry/curveNi.h -------------------------------------------------------------------------------- /third_party/embree/kernels/geometry/curveNi_mb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/geometry/curveNi_mb.h -------------------------------------------------------------------------------- /third_party/embree/kernels/geometry/curveNv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/geometry/curveNv.h -------------------------------------------------------------------------------- /third_party/embree/kernels/geometry/cylinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/geometry/cylinder.h -------------------------------------------------------------------------------- /third_party/embree/kernels/geometry/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/geometry/filter.h -------------------------------------------------------------------------------- /third_party/embree/kernels/geometry/grid_soa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/geometry/grid_soa.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/geometry/grid_soa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/geometry/grid_soa.h -------------------------------------------------------------------------------- /third_party/embree/kernels/geometry/instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/geometry/instance.h -------------------------------------------------------------------------------- /third_party/embree/kernels/geometry/linei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/geometry/linei.h -------------------------------------------------------------------------------- /third_party/embree/kernels/geometry/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/geometry/object.h -------------------------------------------------------------------------------- /third_party/embree/kernels/geometry/plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/geometry/plane.h -------------------------------------------------------------------------------- /third_party/embree/kernels/geometry/pointi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/geometry/pointi.h -------------------------------------------------------------------------------- /third_party/embree/kernels/geometry/primitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/geometry/primitive.h -------------------------------------------------------------------------------- /third_party/embree/kernels/geometry/primitive4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/geometry/primitive4.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/geometry/primitive8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/geometry/primitive8.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/geometry/quadi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/geometry/quadi.h -------------------------------------------------------------------------------- /third_party/embree/kernels/geometry/quadv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/geometry/quadv.h -------------------------------------------------------------------------------- /third_party/embree/kernels/geometry/subdivpatch1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/geometry/subdivpatch1.h -------------------------------------------------------------------------------- /third_party/embree/kernels/geometry/subgrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/geometry/subgrid.h -------------------------------------------------------------------------------- /third_party/embree/kernels/geometry/triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/geometry/triangle.h -------------------------------------------------------------------------------- /third_party/embree/kernels/geometry/trianglei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/geometry/trianglei.h -------------------------------------------------------------------------------- /third_party/embree/kernels/geometry/trianglev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/geometry/trianglev.h -------------------------------------------------------------------------------- /third_party/embree/kernels/geometry/trianglev_mb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/geometry/trianglev_mb.h -------------------------------------------------------------------------------- /third_party/embree/kernels/hash.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/hash.h.in -------------------------------------------------------------------------------- /third_party/embree/kernels/rtcore_version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/rtcore_version.h.in -------------------------------------------------------------------------------- /third_party/embree/kernels/subdiv/bezier_curve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/subdiv/bezier_curve.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/subdiv/bezier_curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/subdiv/bezier_curve.h -------------------------------------------------------------------------------- /third_party/embree/kernels/subdiv/bezier_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/subdiv/bezier_patch.h -------------------------------------------------------------------------------- /third_party/embree/kernels/subdiv/bilinear_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/subdiv/bilinear_patch.h -------------------------------------------------------------------------------- /third_party/embree/kernels/subdiv/bspline_curve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/subdiv/bspline_curve.cpp -------------------------------------------------------------------------------- /third_party/embree/kernels/subdiv/bspline_curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/subdiv/bspline_curve.h -------------------------------------------------------------------------------- /third_party/embree/kernels/subdiv/bspline_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/subdiv/bspline_patch.h -------------------------------------------------------------------------------- /third_party/embree/kernels/subdiv/gregory_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/subdiv/gregory_patch.h -------------------------------------------------------------------------------- /third_party/embree/kernels/subdiv/gridrange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/subdiv/gridrange.h -------------------------------------------------------------------------------- /third_party/embree/kernels/subdiv/half_edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/subdiv/half_edge.h -------------------------------------------------------------------------------- /third_party/embree/kernels/subdiv/hermite_curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/subdiv/hermite_curve.h -------------------------------------------------------------------------------- /third_party/embree/kernels/subdiv/patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/subdiv/patch.h -------------------------------------------------------------------------------- /third_party/embree/kernels/subdiv/patch_eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/subdiv/patch_eval.h -------------------------------------------------------------------------------- /third_party/embree/kernels/subdiv/patch_eval_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/subdiv/patch_eval_grid.h -------------------------------------------------------------------------------- /third_party/embree/kernels/subdiv/patch_eval_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/subdiv/patch_eval_simd.h -------------------------------------------------------------------------------- /third_party/embree/kernels/subdiv/subdivpatch1base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/subdiv/subdivpatch1base.h -------------------------------------------------------------------------------- /third_party/embree/kernels/subdiv/tessellation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/embree/kernels/subdiv/tessellation.h -------------------------------------------------------------------------------- /third_party/glfw/CMake/GenerateMappings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/CMake/GenerateMappings.cmake -------------------------------------------------------------------------------- /third_party/glfw/CMake/MacOSXBundleInfo.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/CMake/MacOSXBundleInfo.plist.in -------------------------------------------------------------------------------- /third_party/glfw/CMake/amd64-mingw32msvc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/CMake/amd64-mingw32msvc.cmake -------------------------------------------------------------------------------- /third_party/glfw/CMake/i586-mingw32msvc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/CMake/i586-mingw32msvc.cmake -------------------------------------------------------------------------------- /third_party/glfw/CMake/i686-pc-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/CMake/i686-pc-mingw32.cmake -------------------------------------------------------------------------------- /third_party/glfw/CMake/i686-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/CMake/i686-w64-mingw32.cmake -------------------------------------------------------------------------------- /third_party/glfw/CMake/modules/FindEpollShim.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/CMake/modules/FindEpollShim.cmake -------------------------------------------------------------------------------- /third_party/glfw/CMake/modules/FindOSMesa.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/CMake/modules/FindOSMesa.cmake -------------------------------------------------------------------------------- /third_party/glfw/CMake/modules/FindVulkan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/CMake/modules/FindVulkan.cmake -------------------------------------------------------------------------------- /third_party/glfw/CMake/modules/FindXKBCommon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/CMake/modules/FindXKBCommon.cmake -------------------------------------------------------------------------------- /third_party/glfw/CMake/x86_64-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/CMake/x86_64-w64-mingw32.cmake -------------------------------------------------------------------------------- /third_party/glfw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/glfw/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/LICENSE.md -------------------------------------------------------------------------------- /third_party/glfw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/README.md -------------------------------------------------------------------------------- /third_party/glfw/deps/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/deps/KHR/khrplatform.h -------------------------------------------------------------------------------- /third_party/glfw/deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/deps/getopt.c -------------------------------------------------------------------------------- /third_party/glfw/deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/deps/getopt.h -------------------------------------------------------------------------------- /third_party/glfw/deps/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/deps/glad.c -------------------------------------------------------------------------------- /third_party/glfw/deps/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/deps/glad/glad.h -------------------------------------------------------------------------------- /third_party/glfw/deps/linmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/deps/linmath.h -------------------------------------------------------------------------------- /third_party/glfw/deps/mingw/_mingw_dxhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/deps/mingw/_mingw_dxhelper.h -------------------------------------------------------------------------------- /third_party/glfw/deps/mingw/dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/deps/mingw/dinput.h -------------------------------------------------------------------------------- /third_party/glfw/deps/mingw/xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/deps/mingw/xinput.h -------------------------------------------------------------------------------- /third_party/glfw/deps/nuklear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/deps/nuklear.h -------------------------------------------------------------------------------- /third_party/glfw/deps/nuklear_glfw_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/deps/nuklear_glfw_gl2.h -------------------------------------------------------------------------------- /third_party/glfw/deps/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/deps/stb_image_write.h -------------------------------------------------------------------------------- /third_party/glfw/deps/tinycthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/deps/tinycthread.c -------------------------------------------------------------------------------- /third_party/glfw/deps/tinycthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/deps/tinycthread.h -------------------------------------------------------------------------------- /third_party/glfw/deps/vs2008/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/deps/vs2008/stdint.h -------------------------------------------------------------------------------- /third_party/glfw/deps/vulkan/vk_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/deps/vulkan/vk_platform.h -------------------------------------------------------------------------------- /third_party/glfw/deps/vulkan/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/deps/vulkan/vulkan.h -------------------------------------------------------------------------------- /third_party/glfw/deps/vulkan/vulkan_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/deps/vulkan/vulkan_core.h -------------------------------------------------------------------------------- /third_party/glfw/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /third_party/glfw/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /third_party/glfw/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/glfw/src/cocoa_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/cocoa_init.m -------------------------------------------------------------------------------- /third_party/glfw/src/cocoa_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/cocoa_joystick.h -------------------------------------------------------------------------------- /third_party/glfw/src/cocoa_joystick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/cocoa_joystick.m -------------------------------------------------------------------------------- /third_party/glfw/src/cocoa_monitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/cocoa_monitor.m -------------------------------------------------------------------------------- /third_party/glfw/src/cocoa_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/cocoa_platform.h -------------------------------------------------------------------------------- /third_party/glfw/src/cocoa_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/cocoa_time.c -------------------------------------------------------------------------------- /third_party/glfw/src/cocoa_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/cocoa_window.m -------------------------------------------------------------------------------- /third_party/glfw/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/context.c -------------------------------------------------------------------------------- /third_party/glfw/src/egl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/egl_context.c -------------------------------------------------------------------------------- /third_party/glfw/src/egl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/egl_context.h -------------------------------------------------------------------------------- /third_party/glfw/src/glfw3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/glfw3.pc.in -------------------------------------------------------------------------------- /third_party/glfw/src/glfw3Config.cmake.in: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/glfw3Targets.cmake") 2 | -------------------------------------------------------------------------------- /third_party/glfw/src/glfw_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/glfw_config.h.in -------------------------------------------------------------------------------- /third_party/glfw/src/glx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/glx_context.c -------------------------------------------------------------------------------- /third_party/glfw/src/glx_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/glx_context.h -------------------------------------------------------------------------------- /third_party/glfw/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/init.c -------------------------------------------------------------------------------- /third_party/glfw/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/input.c -------------------------------------------------------------------------------- /third_party/glfw/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/internal.h -------------------------------------------------------------------------------- /third_party/glfw/src/linux_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/linux_joystick.c -------------------------------------------------------------------------------- /third_party/glfw/src/linux_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/linux_joystick.h -------------------------------------------------------------------------------- /third_party/glfw/src/mappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/mappings.h -------------------------------------------------------------------------------- /third_party/glfw/src/mappings.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/mappings.h.in -------------------------------------------------------------------------------- /third_party/glfw/src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/monitor.c -------------------------------------------------------------------------------- /third_party/glfw/src/nsgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/nsgl_context.h -------------------------------------------------------------------------------- /third_party/glfw/src/nsgl_context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/nsgl_context.m -------------------------------------------------------------------------------- /third_party/glfw/src/null_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/null_init.c -------------------------------------------------------------------------------- /third_party/glfw/src/null_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/null_joystick.c -------------------------------------------------------------------------------- /third_party/glfw/src/null_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/null_joystick.h -------------------------------------------------------------------------------- /third_party/glfw/src/null_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/null_monitor.c -------------------------------------------------------------------------------- /third_party/glfw/src/null_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/null_platform.h -------------------------------------------------------------------------------- /third_party/glfw/src/null_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/null_window.c -------------------------------------------------------------------------------- /third_party/glfw/src/osmesa_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/osmesa_context.c -------------------------------------------------------------------------------- /third_party/glfw/src/osmesa_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/osmesa_context.h -------------------------------------------------------------------------------- /third_party/glfw/src/posix_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/posix_thread.c -------------------------------------------------------------------------------- /third_party/glfw/src/posix_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/posix_thread.h -------------------------------------------------------------------------------- /third_party/glfw/src/posix_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/posix_time.c -------------------------------------------------------------------------------- /third_party/glfw/src/posix_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/posix_time.h -------------------------------------------------------------------------------- /third_party/glfw/src/vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/vulkan.c -------------------------------------------------------------------------------- /third_party/glfw/src/wgl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/wgl_context.c -------------------------------------------------------------------------------- /third_party/glfw/src/wgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/wgl_context.h -------------------------------------------------------------------------------- /third_party/glfw/src/win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/win32_init.c -------------------------------------------------------------------------------- /third_party/glfw/src/win32_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/win32_joystick.c -------------------------------------------------------------------------------- /third_party/glfw/src/win32_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/win32_joystick.h -------------------------------------------------------------------------------- /third_party/glfw/src/win32_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/win32_monitor.c -------------------------------------------------------------------------------- /third_party/glfw/src/win32_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/win32_platform.h -------------------------------------------------------------------------------- /third_party/glfw/src/win32_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/win32_thread.c -------------------------------------------------------------------------------- /third_party/glfw/src/win32_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/win32_time.c -------------------------------------------------------------------------------- /third_party/glfw/src/win32_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/win32_window.c -------------------------------------------------------------------------------- /third_party/glfw/src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/window.c -------------------------------------------------------------------------------- /third_party/glfw/src/wl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/wl_init.c -------------------------------------------------------------------------------- /third_party/glfw/src/wl_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/wl_monitor.c -------------------------------------------------------------------------------- /third_party/glfw/src/wl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/wl_platform.h -------------------------------------------------------------------------------- /third_party/glfw/src/wl_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/wl_window.c -------------------------------------------------------------------------------- /third_party/glfw/src/x11_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/x11_init.c -------------------------------------------------------------------------------- /third_party/glfw/src/x11_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/x11_monitor.c -------------------------------------------------------------------------------- /third_party/glfw/src/x11_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/x11_platform.h -------------------------------------------------------------------------------- /third_party/glfw/src/x11_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/x11_window.c -------------------------------------------------------------------------------- /third_party/glfw/src/xkb_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/xkb_unicode.c -------------------------------------------------------------------------------- /third_party/glfw/src/xkb_unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/glfw/src/xkb_unicode.h -------------------------------------------------------------------------------- /third_party/imgui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/imgui/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/imgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/imgui/LICENSE.txt -------------------------------------------------------------------------------- /third_party/imgui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/imgui/README.md -------------------------------------------------------------------------------- /third_party/imgui/impl/imgui_impl_glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/imgui/impl/imgui_impl_glfw.cpp -------------------------------------------------------------------------------- /third_party/imgui/impl/imgui_impl_glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/imgui/impl/imgui_impl_glfw.h -------------------------------------------------------------------------------- /third_party/imgui/impl/imgui_impl_vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/imgui/impl/imgui_impl_vulkan.cpp -------------------------------------------------------------------------------- /third_party/imgui/impl/imgui_impl_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/imgui/impl/imgui_impl_vulkan.h -------------------------------------------------------------------------------- /third_party/imgui/include/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/imgui/include/imconfig.h -------------------------------------------------------------------------------- /third_party/imgui/include/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/imgui/include/imgui.h -------------------------------------------------------------------------------- /third_party/imgui/include/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/imgui/include/imstb_rectpack.h -------------------------------------------------------------------------------- /third_party/imgui/include/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/imgui/include/imstb_textedit.h -------------------------------------------------------------------------------- /third_party/imgui/include/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/imgui/include/imstb_truetype.h -------------------------------------------------------------------------------- /third_party/imgui/source/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/imgui/source/imgui.cpp -------------------------------------------------------------------------------- /third_party/imgui/source/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/imgui/source/imgui_demo.cpp -------------------------------------------------------------------------------- /third_party/imgui/source/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/imgui/source/imgui_draw.cpp -------------------------------------------------------------------------------- /third_party/imgui/source/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/imgui/source/imgui_internal.h -------------------------------------------------------------------------------- /third_party/imgui/source/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/imgui/source/imgui_widgets.cpp -------------------------------------------------------------------------------- /third_party/json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/json/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/json/LICENSE -------------------------------------------------------------------------------- /third_party/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/json/README.md -------------------------------------------------------------------------------- /third_party/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/json/json.hpp -------------------------------------------------------------------------------- /third_party/json_schema_validator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/json_schema_validator/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/json_schema_validator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/json_schema_validator/LICENSE -------------------------------------------------------------------------------- /third_party/json_schema_validator/src/json-uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/json_schema_validator/src/json-uri.cpp -------------------------------------------------------------------------------- /third_party/stb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/stb/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/stb/include/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/stb/include/stb_image.h -------------------------------------------------------------------------------- /third_party/stb/include/stb_rect_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/stb/include/stb_rect_pack.h -------------------------------------------------------------------------------- /third_party/stb/include/stb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/stb/include/stb_textedit.h -------------------------------------------------------------------------------- /third_party/stb/include/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/stb/include/stb_truetype.h -------------------------------------------------------------------------------- /third_party/stb/stb.cpp: -------------------------------------------------------------------------------- 1 | #define STB_IMAGE_IMPLEMENTATION 2 | #include "stb_image.h" 3 | -------------------------------------------------------------------------------- /third_party/tbb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/tbb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/LICENSE -------------------------------------------------------------------------------- /third_party/tbb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/README.md -------------------------------------------------------------------------------- /third_party/tbb/include/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/index.html -------------------------------------------------------------------------------- /third_party/tbb/include/serial/tbb/parallel_for.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/serial/tbb/parallel_for.h -------------------------------------------------------------------------------- /third_party/tbb/include/serial/tbb/tbb_annotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/serial/tbb/tbb_annotate.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/aggregator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/aggregator.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/aligned_space.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/aligned_space.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/atomic.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/blocked_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/blocked_range.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/blocked_range2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/blocked_range2d.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/blocked_range3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/blocked_range3d.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/blocked_rangeNd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/blocked_rangeNd.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/combinable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/combinable.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/compat/ppl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/compat/ppl.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/compat/thread: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/compat/thread -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/compat/tuple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/compat/tuple -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/concurrent_hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/concurrent_hash_map.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/concurrent_lru_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/concurrent_lru_cache.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/concurrent_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/concurrent_queue.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/concurrent_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/concurrent_vector.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/critical_section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/critical_section.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/flow_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/flow_graph.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/flow_graph_opencl_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/flow_graph_opencl_node.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/gfx_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/gfx_factory.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/global_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/global_control.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/index.html -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/internal/_tbb_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/internal/_tbb_strings.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/internal/_tbb_windef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/internal/_tbb_windef.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/iterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/iterators.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/machine/gcc_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/machine/gcc_arm.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/machine/gcc_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/machine/gcc_generic.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/machine/gcc_itsx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/machine/gcc_itsx.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/machine/ibm_aix51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/machine/ibm_aix51.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/machine/icc_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/machine/icc_generic.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/machine/linux_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/machine/linux_common.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/machine/linux_ia32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/machine/linux_ia32.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/machine/linux_ia64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/machine/linux_ia64.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/machine/linux_intel64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/machine/linux_intel64.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/machine/mac_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/machine/mac_ppc.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/machine/macos_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/machine/macos_common.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/machine/mic_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/machine/mic_common.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/machine/msvc_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/machine/msvc_armv7.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/machine/sunos_sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/machine/sunos_sparc.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/machine/windows_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/machine/windows_api.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/machine/windows_ia32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/machine/windows_ia32.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/memory_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/memory_pool.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/mutex.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/null_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/null_mutex.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/null_rw_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/null_rw_mutex.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/parallel_do.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/parallel_do.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/parallel_for.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/parallel_for.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/parallel_for_each.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/parallel_for_each.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/parallel_invoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/parallel_invoke.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/parallel_reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/parallel_reduce.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/parallel_scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/parallel_scan.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/parallel_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/parallel_sort.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/parallel_while.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/parallel_while.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/partitioner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/partitioner.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/pipeline.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/queuing_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/queuing_mutex.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/queuing_rw_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/queuing_rw_mutex.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/reader_writer_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/reader_writer_lock.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/recursive_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/recursive_mutex.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/runtime_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/runtime_loader.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/scalable_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/scalable_allocator.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/spin_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/spin_mutex.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/spin_rw_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/spin_rw_mutex.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/task.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/task_arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/task_arena.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/task_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/task_group.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/task_scheduler_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/task_scheduler_init.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/tbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/tbb.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/tbb_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/tbb_allocator.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/tbb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/tbb_config.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/tbb_disable_exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/tbb_disable_exceptions.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/tbb_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/tbb_exception.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/tbb_machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/tbb_machine.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/tbb_profiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/tbb_profiling.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/tbb_stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/tbb_stddef.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/tbb_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/tbb_thread.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/tbbmalloc_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/tbbmalloc_proxy.h -------------------------------------------------------------------------------- /third_party/tbb/include/tbb/tick_count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/include/tbb/tick_count.h -------------------------------------------------------------------------------- /third_party/tbb/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/Makefile -------------------------------------------------------------------------------- /third_party/tbb/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/index.html -------------------------------------------------------------------------------- /third_party/tbb/src/old/concurrent_queue_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/old/concurrent_queue_v2.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/old/concurrent_queue_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/old/concurrent_queue_v2.h -------------------------------------------------------------------------------- /third_party/tbb/src/old/concurrent_vector_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/old/concurrent_vector_v2.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/old/concurrent_vector_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/old/concurrent_vector_v2.h -------------------------------------------------------------------------------- /third_party/tbb/src/old/spin_rw_mutex_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/old/spin_rw_mutex_v2.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/old/spin_rw_mutex_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/old/spin_rw_mutex_v2.h -------------------------------------------------------------------------------- /third_party/tbb/src/old/task_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/old/task_v2.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/old/test_concurrent_queue_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/old/test_concurrent_queue_v2.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/old/test_mutex_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/old/test_mutex_v2.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/perf/cpq_pdes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/perf/cpq_pdes.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/perf/fibonacci_impl_tbb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/perf/fibonacci_impl_tbb.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/perf/perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/perf/perf.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/perf/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/perf/perf.h -------------------------------------------------------------------------------- /third_party/tbb/src/perf/perf_sched.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/perf/perf_sched.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/perf/run_statistics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/perf/run_statistics.sh -------------------------------------------------------------------------------- /third_party/tbb/src/perf/statistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/perf/statistics.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/perf/statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/perf/statistics.h -------------------------------------------------------------------------------- /third_party/tbb/src/perf/statistics_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/perf/statistics_xml.h -------------------------------------------------------------------------------- /third_party/tbb/src/perf/time_fibonacci_cutoff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/perf/time_fibonacci_cutoff.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/perf/time_framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/perf/time_framework.h -------------------------------------------------------------------------------- /third_party/tbb/src/perf/time_hash_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/perf/time_hash_map.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/perf/time_hash_map_fill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/perf/time_hash_map_fill.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/perf/time_hash_map_fill.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/perf/time_hash_map_fill.html -------------------------------------------------------------------------------- /third_party/tbb/src/perf/time_locked_work.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/perf/time_locked_work.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/perf/time_parallel_for_each.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/perf/time_parallel_for_each.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/perf/time_sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/perf/time_sandbox.h -------------------------------------------------------------------------------- /third_party/tbb/src/perf/time_split_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/perf/time_split_node.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/perf/time_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/perf/time_vector.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/rml/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/client/index.html -------------------------------------------------------------------------------- /third_party/tbb/src/rml/client/library_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/client/library_assert.h -------------------------------------------------------------------------------- /third_party/tbb/src/rml/client/omp_dynamic_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/client/omp_dynamic_link.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/rml/client/omp_dynamic_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/client/omp_dynamic_link.h -------------------------------------------------------------------------------- /third_party/tbb/src/rml/client/rml_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/client/rml_factory.h -------------------------------------------------------------------------------- /third_party/tbb/src/rml/client/rml_omp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/client/rml_omp.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/rml/client/rml_tbb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/client/rml_tbb.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/rml/include/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/include/index.html -------------------------------------------------------------------------------- /third_party/tbb/src/rml/include/rml_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/include/rml_base.h -------------------------------------------------------------------------------- /third_party/tbb/src/rml/include/rml_omp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/include/rml_omp.h -------------------------------------------------------------------------------- /third_party/tbb/src/rml/include/rml_tbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/include/rml_tbb.h -------------------------------------------------------------------------------- /third_party/tbb/src/rml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/index.html -------------------------------------------------------------------------------- /third_party/tbb/src/rml/perfor/omp_nested.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/perfor/omp_nested.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/rml/perfor/omp_simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/perfor/omp_simple.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/rml/perfor/tbb_multi_omp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/perfor/tbb_multi_omp.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/rml/perfor/tbb_simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/perfor/tbb_simple.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/rml/perfor/thread_level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/perfor/thread_level.h -------------------------------------------------------------------------------- /third_party/tbb/src/rml/server/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/server/index.html -------------------------------------------------------------------------------- /third_party/tbb/src/rml/server/irml.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/server/irml.rc -------------------------------------------------------------------------------- /third_party/tbb/src/rml/server/job_automaton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/server/job_automaton.h -------------------------------------------------------------------------------- /third_party/tbb/src/rml/server/lin-rml-export.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/server/lin-rml-export.def -------------------------------------------------------------------------------- /third_party/tbb/src/rml/server/rml_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/server/rml_server.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/rml/server/thread_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/server/thread_monitor.h -------------------------------------------------------------------------------- /third_party/tbb/src/rml/server/wait_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/server/wait_counter.h -------------------------------------------------------------------------------- /third_party/tbb/src/rml/server/win32-rml-export.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/server/win32-rml-export.def -------------------------------------------------------------------------------- /third_party/tbb/src/rml/server/win64-rml-export.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/server/win64-rml-export.def -------------------------------------------------------------------------------- /third_party/tbb/src/rml/test/rml_omp_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/test/rml_omp_stub.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/rml/test/test_job_automaton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/test/test_job_automaton.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/rml/test/test_rml_mixed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/test/test_rml_mixed.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/rml/test/test_rml_omp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/test/test_rml_omp.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/rml/test/test_rml_tbb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/test/test_rml_tbb.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/rml/test/test_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/rml/test/test_server.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/arena.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/arena.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/arena.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/cilk-tbb-interop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/cilk-tbb-interop.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/concurrent_hash_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/concurrent_hash_map.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/concurrent_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/concurrent_monitor.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/concurrent_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/concurrent_monitor.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/concurrent_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/concurrent_queue.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/concurrent_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/concurrent_vector.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/condition_variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/condition_variable.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/critical_section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/critical_section.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/custom_scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/custom_scheduler.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/dynamic_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/dynamic_link.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/dynamic_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/dynamic_link.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/governor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/governor.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/governor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/governor.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/ia32-masm/itsx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/ia32-masm/itsx.asm -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/ia32-masm/lock_byte.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/ia32-masm/lock_byte.asm -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/ia64-gas/atomic_support.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/ia64-gas/atomic_support.s -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/ia64-gas/ia64_misc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/ia64-gas/ia64_misc.s -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/ia64-gas/lock_byte.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/ia64-gas/lock_byte.s -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/ia64-gas/log2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/ia64-gas/log2.s -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/ia64-gas/pause.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/ia64-gas/pause.s -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/index.html -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/intel64-masm/itsx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/intel64-masm/itsx.asm -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/intrusive_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/intrusive_list.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/itt_notify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/itt_notify.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/itt_notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/itt_notify.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/lin32-tbb-export.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/lin32-tbb-export.def -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/lin32-tbb-export.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/lin32-tbb-export.lst -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/lin64-tbb-export.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/lin64-tbb-export.def -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/lin64-tbb-export.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/lin64-tbb-export.lst -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/lin64ipf-tbb-export.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/lin64ipf-tbb-export.def -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/lin64ipf-tbb-export.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/lin64ipf-tbb-export.lst -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/mac32-tbb-export.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/mac32-tbb-export.def -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/mac32-tbb-export.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/mac32-tbb-export.lst -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/mac64-tbb-export.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/mac64-tbb-export.def -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/mac64-tbb-export.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/mac64-tbb-export.lst -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/mailbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/mailbox.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/market.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/market.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/market.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/market.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/mutex.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/observer_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/observer_proxy.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/observer_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/observer_proxy.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/pipeline.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/private_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/private_server.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/queuing_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/queuing_mutex.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/queuing_rw_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/queuing_rw_mutex.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/reader_writer_lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/reader_writer_lock.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/recursive_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/recursive_mutex.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/scheduler.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/scheduler.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/scheduler_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/scheduler_common.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/scheduler_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/scheduler_utility.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/semaphore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/semaphore.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/semaphore.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/spin_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/spin_mutex.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/spin_rw_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/spin_rw_mutex.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/task.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/task_group_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/task_group_context.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/task_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/task_stream.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/tbb_assert_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/tbb_assert_impl.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/tbb_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/tbb_main.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/tbb_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/tbb_main.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/tbb_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/tbb_misc.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/tbb_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/tbb_misc.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/tbb_misc_ex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/tbb_misc_ex.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/tbb_resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/tbb_resource.rc -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/tbb_statistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/tbb_statistics.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/tbb_statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/tbb_statistics.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/tbb_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/tbb_thread.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/tbb_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/tbb_version.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/tls.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/tools_api/ittnotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/tools_api/ittnotify.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/win32-tbb-export.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/win32-tbb-export.def -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/win32-tbb-export.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/win32-tbb-export.lst -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/win64-gcc-tbb-export.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/win64-gcc-tbb-export.def -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/win64-gcc-tbb-export.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/win64-gcc-tbb-export.lst -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/win64-tbb-export.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/win64-tbb-export.def -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/win64-tbb-export.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/win64-tbb-export.lst -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/winrt-tbb-export.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/winrt-tbb-export.lst -------------------------------------------------------------------------------- /third_party/tbb/src/tbb/x86_rtm_rw_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbb/x86_rtm_rw_mutex.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbbmalloc/Customize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbbmalloc/Customize.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbbmalloc/MapMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbbmalloc/MapMemory.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbbmalloc/Statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbbmalloc/Statistics.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbbmalloc/Synchronize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbbmalloc/Synchronize.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbbmalloc/TypeDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbbmalloc/TypeDefinitions.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbbmalloc/backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbbmalloc/backend.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbbmalloc/backref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbbmalloc/backref.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbbmalloc/frontend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbbmalloc/frontend.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbbmalloc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbbmalloc/index.html -------------------------------------------------------------------------------- /third_party/tbb/src/tbbmalloc/large_objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbbmalloc/large_objects.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbbmalloc/proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbbmalloc/proxy.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbbmalloc/proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbbmalloc/proxy.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbbmalloc/shared_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbbmalloc/shared_utils.h -------------------------------------------------------------------------------- /third_party/tbb/src/tbbmalloc/tbbmalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbbmalloc/tbbmalloc.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/tbbmalloc/tbbmalloc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbbmalloc/tbbmalloc.rc -------------------------------------------------------------------------------- /third_party/tbb/src/tbbproxy/tbbproxy-windows.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbbproxy/tbbproxy-windows.asm -------------------------------------------------------------------------------- /third_party/tbb/src/tbbproxy/tbbproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/tbbproxy/tbbproxy.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/harness.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/harness_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/harness_allocator.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/harness_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/harness_assert.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/harness_bad_expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/harness_bad_expr.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/harness_barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/harness_barrier.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/harness_checktype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/harness_checktype.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/harness_concurrency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/harness_concurrency.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/harness_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/harness_cpu.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/harness_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/harness_defs.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/harness_dynamic_libs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/harness_dynamic_libs.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/harness_eh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/harness_eh.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/harness_fp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/harness_fp.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/harness_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/harness_graph.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/harness_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/harness_iterator.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/harness_m128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/harness_m128.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/harness_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/harness_memory.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/harness_mic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/harness_mic.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/harness_preload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/harness_preload.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/harness_report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/harness_report.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/harness_runtime_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/harness_runtime_loader.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/harness_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/harness_task.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/harness_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/harness_tls.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/harness_tsx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/harness_tsx.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_aggregator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_aggregator.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_aligned_space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_aligned_space.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_allocator.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_allocator_STL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_allocator_STL.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_assembly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_assembly.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_async_msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_async_msg.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_async_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_async_node.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_atomic.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_blocked_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_blocked_range.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_blocked_range2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_blocked_range2d.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_blocked_range3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_blocked_range3d.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_blocked_rangeNd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_blocked_rangeNd.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_broadcast_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_broadcast_node.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_buffer_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_buffer_node.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_cilk_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_cilk_common.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_cilk_interop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_cilk_interop.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_combinable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_combinable.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_composite_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_composite_node.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_continue_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_continue_node.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_dynamic_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_dynamic_link.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_eh_algorithms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_eh_algorithms.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_eh_flow_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_eh_flow_graph.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_eh_tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_eh_tasks.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_fast_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_fast_random.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_flow_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_flow_graph.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_fp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_fp.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_function_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_function_node.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_gfx_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_gfx_factory.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_global_control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_global_control.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_halt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_halt.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_handle_perror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_handle_perror.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_hw_concurrency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_hw_concurrency.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_indexer_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_indexer_node.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_initializer_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_initializer_list.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_inits_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_inits_loop.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_intrusive_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_intrusive_list.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_ittnotify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_ittnotify.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_join_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_join_node.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_join_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_join_node.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_lambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_lambda.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_limiter_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_limiter_node.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_malloc_atexit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_malloc_atexit.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_malloc_overload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_malloc_overload.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_malloc_pools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_malloc_pools.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_malloc_pure_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_malloc_pure_c.c -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_malloc_whitebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_malloc_whitebox.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_model_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_model_plugin.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_mutex.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_opencl_node.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_opencl_node.cl -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_opencl_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_opencl_node.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_openmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_openmp.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_overwrite_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_overwrite_node.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_parallel_do.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_parallel_do.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_parallel_for.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_parallel_invoke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_parallel_invoke.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_parallel_reduce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_parallel_reduce.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_parallel_scan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_parallel_scan.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_parallel_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_parallel_sort.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_parallel_while.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_parallel_while.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_partitioner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_partitioner.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_pipeline.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_queue_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_queue_node.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_range_based_for.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_range_based_for.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_runtime_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_runtime_loader.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_semaphore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_semaphore.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_sequencer_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_sequencer_node.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_source_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_source_node.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_split_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_split_node.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_static_assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_static_assert.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_std_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_std_thread.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_streaming_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_streaming_node.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_tagged_msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_tagged_msg.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_task.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_task_arena.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_task_arena.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_task_assertions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_task_assertions.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_task_auto_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_task_auto_init.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_task_enqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_task_enqueue.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_task_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_task_group.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_task_leaks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_task_leaks.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_task_priority.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_task_priority.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_tbb_fork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_tbb_fork.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_tbb_header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_tbb_header.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_tbb_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_tbb_thread.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_tbb_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_tbb_version.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_thread.h -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_tick_count.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_tick_count.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_tuple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_tuple.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_write_once_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_write_once_node.cpp -------------------------------------------------------------------------------- /third_party/tbb/src/test/test_yield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tbb/src/test/test_yield.cpp -------------------------------------------------------------------------------- /third_party/tiny_obj_loader/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tiny_obj_loader/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/tiny_obj_loader/tiny_obj_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/tiny_obj_loader/tiny_obj_loader.cpp -------------------------------------------------------------------------------- /third_party/vk_mem_alloc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/vk_mem_alloc/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/vk_mem_alloc/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/vk_mem_alloc/LICENSE.txt -------------------------------------------------------------------------------- /third_party/vk_mem_alloc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/vk_mem_alloc/README.md -------------------------------------------------------------------------------- /third_party/vk_mem_alloc/include/vk_mem_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/vk_mem_alloc/include/vk_mem_alloc.h -------------------------------------------------------------------------------- /third_party/vk_mem_alloc/src/vk_mem_alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichieSams/lantern/HEAD/third_party/vk_mem_alloc/src/vk_mem_alloc.cpp --------------------------------------------------------------------------------