├── LICENSE ├── readme.md ├── sceneprocessor ├── build │ ├── dependencies │ │ ├── boost │ │ │ ├── LICENSE_1_0.txt │ │ │ └── boost │ │ │ │ ├── array.hpp │ │ │ │ ├── assert.hpp │ │ │ │ ├── circular_buffer.hpp │ │ │ │ ├── circular_buffer │ │ │ │ ├── allocators.hpp │ │ │ │ ├── base.hpp │ │ │ │ ├── debug.hpp │ │ │ │ ├── details.hpp │ │ │ │ └── space_optimized.hpp │ │ │ │ ├── circular_buffer_fwd.hpp │ │ │ │ ├── concept │ │ │ │ ├── assert.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── backward_compatibility.hpp │ │ │ │ │ ├── borland.hpp │ │ │ │ │ ├── concept_def.hpp │ │ │ │ │ ├── concept_undef.hpp │ │ │ │ │ ├── general.hpp │ │ │ │ │ ├── has_constraints.hpp │ │ │ │ │ └── msvc.hpp │ │ │ │ └── usage.hpp │ │ │ │ ├── concept_check.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── config │ │ │ │ ├── abi │ │ │ │ │ ├── borland_prefix.hpp │ │ │ │ │ ├── borland_suffix.hpp │ │ │ │ │ ├── msvc_prefix.hpp │ │ │ │ │ └── msvc_suffix.hpp │ │ │ │ ├── abi_prefix.hpp │ │ │ │ ├── abi_suffix.hpp │ │ │ │ ├── auto_link.hpp │ │ │ │ ├── compiler │ │ │ │ │ ├── borland.hpp │ │ │ │ │ ├── clang.hpp │ │ │ │ │ ├── codegear.hpp │ │ │ │ │ ├── comeau.hpp │ │ │ │ │ ├── common_edg.hpp │ │ │ │ │ ├── compaq_cxx.hpp │ │ │ │ │ ├── cray.hpp │ │ │ │ │ ├── diab.hpp │ │ │ │ │ ├── digitalmars.hpp │ │ │ │ │ ├── gcc.hpp │ │ │ │ │ ├── gcc_xml.hpp │ │ │ │ │ ├── greenhills.hpp │ │ │ │ │ ├── hp_acc.hpp │ │ │ │ │ ├── intel.hpp │ │ │ │ │ ├── kai.hpp │ │ │ │ │ ├── metrowerks.hpp │ │ │ │ │ ├── mpw.hpp │ │ │ │ │ ├── nvcc.hpp │ │ │ │ │ ├── pathscale.hpp │ │ │ │ │ ├── pgi.hpp │ │ │ │ │ ├── sgi_mipspro.hpp │ │ │ │ │ ├── sunpro_cc.hpp │ │ │ │ │ ├── vacpp.hpp │ │ │ │ │ ├── visualc.hpp │ │ │ │ │ ├── xlcpp.hpp │ │ │ │ │ └── xlcpp_zos.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── posix_features.hpp │ │ │ │ │ ├── select_compiler_config.hpp │ │ │ │ │ ├── select_platform_config.hpp │ │ │ │ │ ├── select_stdlib_config.hpp │ │ │ │ │ └── suffix.hpp │ │ │ │ ├── header_deprecated.hpp │ │ │ │ ├── helper_macros.hpp │ │ │ │ ├── no_tr1 │ │ │ │ │ ├── cmath.hpp │ │ │ │ │ ├── complex.hpp │ │ │ │ │ ├── functional.hpp │ │ │ │ │ ├── memory.hpp │ │ │ │ │ └── utility.hpp │ │ │ │ ├── platform │ │ │ │ │ ├── aix.hpp │ │ │ │ │ ├── amigaos.hpp │ │ │ │ │ ├── beos.hpp │ │ │ │ │ ├── bsd.hpp │ │ │ │ │ ├── cloudabi.hpp │ │ │ │ │ ├── cray.hpp │ │ │ │ │ ├── cygwin.hpp │ │ │ │ │ ├── haiku.hpp │ │ │ │ │ ├── hpux.hpp │ │ │ │ │ ├── irix.hpp │ │ │ │ │ ├── linux.hpp │ │ │ │ │ ├── macos.hpp │ │ │ │ │ ├── qnxnto.hpp │ │ │ │ │ ├── solaris.hpp │ │ │ │ │ ├── symbian.hpp │ │ │ │ │ ├── vms.hpp │ │ │ │ │ ├── vxworks.hpp │ │ │ │ │ ├── win32.hpp │ │ │ │ │ └── zos.hpp │ │ │ │ ├── pragma_message.hpp │ │ │ │ ├── requires_threads.hpp │ │ │ │ ├── stdlib │ │ │ │ │ ├── dinkumware.hpp │ │ │ │ │ ├── libcomo.hpp │ │ │ │ │ ├── libcpp.hpp │ │ │ │ │ ├── libstdcpp3.hpp │ │ │ │ │ ├── modena.hpp │ │ │ │ │ ├── msl.hpp │ │ │ │ │ ├── roguewave.hpp │ │ │ │ │ ├── sgi.hpp │ │ │ │ │ ├── stlport.hpp │ │ │ │ │ ├── vacpp.hpp │ │ │ │ │ └── xlcpp_zos.hpp │ │ │ │ ├── user.hpp │ │ │ │ ├── warning_disable.hpp │ │ │ │ └── workaround.hpp │ │ │ │ ├── core │ │ │ │ ├── addressof.hpp │ │ │ │ ├── empty_value.hpp │ │ │ │ ├── enable_if.hpp │ │ │ │ ├── no_exceptions_support.hpp │ │ │ │ ├── pointer_traits.hpp │ │ │ │ ├── swap.hpp │ │ │ │ └── use_default.hpp │ │ │ │ ├── cstdint.hpp │ │ │ │ ├── current_function.hpp │ │ │ │ ├── detail │ │ │ │ ├── indirect_traits.hpp │ │ │ │ ├── is_xxx.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── select_type.hpp │ │ │ │ └── workaround.hpp │ │ │ │ ├── exception │ │ │ │ └── exception.hpp │ │ │ │ ├── heap │ │ │ │ ├── detail │ │ │ │ │ ├── heap_comparison.hpp │ │ │ │ │ ├── heap_node.hpp │ │ │ │ │ ├── stable_heap.hpp │ │ │ │ │ └── tree_iterator.hpp │ │ │ │ ├── fibonacci_heap.hpp │ │ │ │ ├── heap_concepts.hpp │ │ │ │ ├── heap_merge.hpp │ │ │ │ └── policies.hpp │ │ │ │ ├── intrusive │ │ │ │ ├── circular_list_algorithms.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── algo_type.hpp │ │ │ │ │ ├── algorithm.hpp │ │ │ │ │ ├── array_initializer.hpp │ │ │ │ │ ├── assert.hpp │ │ │ │ │ ├── config_begin.hpp │ │ │ │ │ ├── config_end.hpp │ │ │ │ │ ├── default_header_holder.hpp │ │ │ │ │ ├── ebo_functor_holder.hpp │ │ │ │ │ ├── equal_to_value.hpp │ │ │ │ │ ├── exception_disposer.hpp │ │ │ │ │ ├── function_detector.hpp │ │ │ │ │ ├── generic_hook.hpp │ │ │ │ │ ├── get_value_traits.hpp │ │ │ │ │ ├── hook_traits.hpp │ │ │ │ │ ├── iiterator.hpp │ │ │ │ │ ├── is_stateful_value_traits.hpp │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ ├── key_nodeptr_comp.hpp │ │ │ │ │ ├── list_iterator.hpp │ │ │ │ │ ├── list_node.hpp │ │ │ │ │ ├── minimal_less_equal_header.hpp │ │ │ │ │ ├── mpl.hpp │ │ │ │ │ ├── node_holder.hpp │ │ │ │ │ ├── parent_from_member.hpp │ │ │ │ │ ├── reverse_iterator.hpp │ │ │ │ │ ├── simple_disposers.hpp │ │ │ │ │ ├── size_holder.hpp │ │ │ │ │ ├── std_fwd.hpp │ │ │ │ │ ├── tree_value_compare.hpp │ │ │ │ │ ├── uncast.hpp │ │ │ │ │ └── workaround.hpp │ │ │ │ ├── intrusive_fwd.hpp │ │ │ │ ├── link_mode.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── list_hook.hpp │ │ │ │ ├── options.hpp │ │ │ │ ├── pack_options.hpp │ │ │ │ ├── pointer_rebind.hpp │ │ │ │ └── pointer_traits.hpp │ │ │ │ ├── iterator │ │ │ │ ├── detail │ │ │ │ │ ├── config_def.hpp │ │ │ │ │ ├── config_undef.hpp │ │ │ │ │ ├── enable_if.hpp │ │ │ │ │ └── facade_iterator_category.hpp │ │ │ │ ├── interoperable.hpp │ │ │ │ ├── iterator_adaptor.hpp │ │ │ │ ├── iterator_categories.hpp │ │ │ │ ├── iterator_facade.hpp │ │ │ │ └── iterator_traits.hpp │ │ │ │ ├── limits.hpp │ │ │ │ ├── move │ │ │ │ ├── adl_move_swap.hpp │ │ │ │ ├── algo │ │ │ │ │ └── move.hpp │ │ │ │ ├── algorithm.hpp │ │ │ │ ├── core.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── config_begin.hpp │ │ │ │ │ ├── config_end.hpp │ │ │ │ │ ├── iterator_to_raw_pointer.hpp │ │ │ │ │ ├── iterator_traits.hpp │ │ │ │ │ ├── meta_utils.hpp │ │ │ │ │ ├── meta_utils_core.hpp │ │ │ │ │ ├── pointer_element.hpp │ │ │ │ │ ├── std_ns_begin.hpp │ │ │ │ │ ├── std_ns_end.hpp │ │ │ │ │ ├── to_raw_pointer.hpp │ │ │ │ │ ├── type_traits.hpp │ │ │ │ │ └── workaround.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── move.hpp │ │ │ │ ├── traits.hpp │ │ │ │ ├── utility.hpp │ │ │ │ └── utility_core.hpp │ │ │ │ ├── mpl │ │ │ │ ├── O1_size.hpp │ │ │ │ ├── O1_size_fwd.hpp │ │ │ │ ├── always.hpp │ │ │ │ ├── and.hpp │ │ │ │ ├── apply.hpp │ │ │ │ ├── apply_fwd.hpp │ │ │ │ ├── apply_wrap.hpp │ │ │ │ ├── arg.hpp │ │ │ │ ├── arg_fwd.hpp │ │ │ │ ├── assert.hpp │ │ │ │ ├── at_fwd.hpp │ │ │ │ ├── aux_ │ │ │ │ │ ├── O1_size_impl.hpp │ │ │ │ │ ├── adl_barrier.hpp │ │ │ │ │ ├── arg_typedef.hpp │ │ │ │ │ ├── arity.hpp │ │ │ │ │ ├── arity_spec.hpp │ │ │ │ │ ├── begin_end_impl.hpp │ │ │ │ │ ├── clear_impl.hpp │ │ │ │ │ ├── common_name_wknd.hpp │ │ │ │ │ ├── config │ │ │ │ │ │ ├── adl.hpp │ │ │ │ │ │ ├── arrays.hpp │ │ │ │ │ │ ├── bcc.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── compiler.hpp │ │ │ │ │ │ ├── ctps.hpp │ │ │ │ │ │ ├── dmc_ambiguous_ctps.hpp │ │ │ │ │ │ ├── dtp.hpp │ │ │ │ │ │ ├── eti.hpp │ │ │ │ │ │ ├── forwarding.hpp │ │ │ │ │ │ ├── gcc.hpp │ │ │ │ │ │ ├── gpu.hpp │ │ │ │ │ │ ├── has_apply.hpp │ │ │ │ │ │ ├── has_xxx.hpp │ │ │ │ │ │ ├── integral.hpp │ │ │ │ │ │ ├── intel.hpp │ │ │ │ │ │ ├── lambda.hpp │ │ │ │ │ │ ├── msvc.hpp │ │ │ │ │ │ ├── msvc_typename.hpp │ │ │ │ │ │ ├── nttp.hpp │ │ │ │ │ │ ├── operators.hpp │ │ │ │ │ │ ├── overload_resolution.hpp │ │ │ │ │ │ ├── pp_counter.hpp │ │ │ │ │ │ ├── preprocessor.hpp │ │ │ │ │ │ ├── static_constant.hpp │ │ │ │ │ │ ├── ttp.hpp │ │ │ │ │ │ ├── use_preprocessed.hpp │ │ │ │ │ │ └── workaround.hpp │ │ │ │ │ ├── count_args.hpp │ │ │ │ │ ├── find_if_pred.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── fold_impl_body.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── has_apply.hpp │ │ │ │ │ ├── has_begin.hpp │ │ │ │ │ ├── has_key_impl.hpp │ │ │ │ │ ├── has_rebind.hpp │ │ │ │ │ ├── has_size.hpp │ │ │ │ │ ├── has_tag.hpp │ │ │ │ │ ├── has_type.hpp │ │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ │ ├── insert_impl.hpp │ │ │ │ │ ├── integral_wrapper.hpp │ │ │ │ │ ├── is_msvc_eti_arg.hpp │ │ │ │ │ ├── iter_apply.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── lambda_arity_param.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── lambda_spec.hpp │ │ │ │ │ ├── lambda_support.hpp │ │ │ │ │ ├── logical_op.hpp │ │ │ │ │ ├── msvc_dtw.hpp │ │ │ │ │ ├── msvc_eti_base.hpp │ │ │ │ │ ├── msvc_is_class.hpp │ │ │ │ │ ├── msvc_never_true.hpp │ │ │ │ │ ├── msvc_type.hpp │ │ │ │ │ ├── na.hpp │ │ │ │ │ ├── na_assert.hpp │ │ │ │ │ ├── na_fwd.hpp │ │ │ │ │ ├── na_spec.hpp │ │ │ │ │ ├── nested_type_wknd.hpp │ │ │ │ │ ├── nttp_decl.hpp │ │ │ │ │ ├── overload_names.hpp │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ ├── bcc │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── bcc551 │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── bcc_pre590 │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── dmc │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── gcc │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── msvc60 │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── msvc70 │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── mwcw │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── no_ctps │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── no_ttp │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ └── plain │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── preprocessor │ │ │ │ │ │ ├── add.hpp │ │ │ │ │ │ ├── def_params_tail.hpp │ │ │ │ │ │ ├── default_params.hpp │ │ │ │ │ │ ├── enum.hpp │ │ │ │ │ │ ├── ext_params.hpp │ │ │ │ │ │ ├── filter_params.hpp │ │ │ │ │ │ ├── params.hpp │ │ │ │ │ │ ├── partial_spec_params.hpp │ │ │ │ │ │ ├── range.hpp │ │ │ │ │ │ ├── repeat.hpp │ │ │ │ │ │ ├── sub.hpp │ │ │ │ │ │ └── tuple.hpp │ │ │ │ │ ├── ptr_to_ref.hpp │ │ │ │ │ ├── push_front_impl.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_fold_impl_body.hpp │ │ │ │ │ ├── sequence_wrapper.hpp │ │ │ │ │ ├── static_cast.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── template_arity_fwd.hpp │ │ │ │ │ ├── traits_lambda_spec.hpp │ │ │ │ │ ├── type_wrapper.hpp │ │ │ │ │ ├── value_wknd.hpp │ │ │ │ │ └── yes_no.hpp │ │ │ │ ├── base.hpp │ │ │ │ ├── begin.hpp │ │ │ │ ├── begin_end.hpp │ │ │ │ ├── begin_end_fwd.hpp │ │ │ │ ├── bind.hpp │ │ │ │ ├── bind_fwd.hpp │ │ │ │ ├── bool.hpp │ │ │ │ ├── bool_fwd.hpp │ │ │ │ ├── clear.hpp │ │ │ │ ├── clear_fwd.hpp │ │ │ │ ├── deref.hpp │ │ │ │ ├── empty_fwd.hpp │ │ │ │ ├── end.hpp │ │ │ │ ├── erase_fwd.hpp │ │ │ │ ├── erase_key_fwd.hpp │ │ │ │ ├── eval_if.hpp │ │ │ │ ├── find.hpp │ │ │ │ ├── find_if.hpp │ │ │ │ ├── fold.hpp │ │ │ │ ├── front_fwd.hpp │ │ │ │ ├── has_key.hpp │ │ │ │ ├── has_key_fwd.hpp │ │ │ │ ├── has_xxx.hpp │ │ │ │ ├── identity.hpp │ │ │ │ ├── if.hpp │ │ │ │ ├── insert.hpp │ │ │ │ ├── insert_fwd.hpp │ │ │ │ ├── insert_range_fwd.hpp │ │ │ │ ├── int.hpp │ │ │ │ ├── int_fwd.hpp │ │ │ │ ├── integral_c.hpp │ │ │ │ ├── integral_c_fwd.hpp │ │ │ │ ├── integral_c_tag.hpp │ │ │ │ ├── is_placeholder.hpp │ │ │ │ ├── iter_fold_if.hpp │ │ │ │ ├── iterator_range.hpp │ │ │ │ ├── iterator_tags.hpp │ │ │ │ ├── key_type_fwd.hpp │ │ │ │ ├── lambda.hpp │ │ │ │ ├── lambda_fwd.hpp │ │ │ │ ├── limits │ │ │ │ │ ├── arity.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ └── unrolling.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── list │ │ │ │ │ ├── aux_ │ │ │ │ │ │ ├── O1_size.hpp │ │ │ │ │ │ ├── begin_end.hpp │ │ │ │ │ │ ├── clear.hpp │ │ │ │ │ │ ├── empty.hpp │ │ │ │ │ │ ├── front.hpp │ │ │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ │ │ ├── item.hpp │ │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ │ ├── numbered.hpp │ │ │ │ │ │ ├── numbered_c.hpp │ │ │ │ │ │ ├── pop_front.hpp │ │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ │ └── plain │ │ │ │ │ │ │ │ ├── list10.hpp │ │ │ │ │ │ │ │ ├── list10_c.hpp │ │ │ │ │ │ │ │ ├── list20.hpp │ │ │ │ │ │ │ │ ├── list20_c.hpp │ │ │ │ │ │ │ │ ├── list30.hpp │ │ │ │ │ │ │ │ ├── list30_c.hpp │ │ │ │ │ │ │ │ ├── list40.hpp │ │ │ │ │ │ │ │ ├── list40_c.hpp │ │ │ │ │ │ │ │ ├── list50.hpp │ │ │ │ │ │ │ │ └── list50_c.hpp │ │ │ │ │ │ ├── push_back.hpp │ │ │ │ │ │ ├── push_front.hpp │ │ │ │ │ │ ├── size.hpp │ │ │ │ │ │ └── tag.hpp │ │ │ │ │ ├── list0.hpp │ │ │ │ │ ├── list0_c.hpp │ │ │ │ │ ├── list10.hpp │ │ │ │ │ ├── list10_c.hpp │ │ │ │ │ ├── list20.hpp │ │ │ │ │ ├── list20_c.hpp │ │ │ │ │ ├── list30.hpp │ │ │ │ │ ├── list30_c.hpp │ │ │ │ │ ├── list40.hpp │ │ │ │ │ ├── list40_c.hpp │ │ │ │ │ ├── list50.hpp │ │ │ │ │ └── list50_c.hpp │ │ │ │ ├── logical.hpp │ │ │ │ ├── long.hpp │ │ │ │ ├── long_fwd.hpp │ │ │ │ ├── next.hpp │ │ │ │ ├── next_prior.hpp │ │ │ │ ├── not.hpp │ │ │ │ ├── or.hpp │ │ │ │ ├── pair.hpp │ │ │ │ ├── placeholders.hpp │ │ │ │ ├── pop_front_fwd.hpp │ │ │ │ ├── prior.hpp │ │ │ │ ├── protect.hpp │ │ │ │ ├── push_back_fwd.hpp │ │ │ │ ├── push_front.hpp │ │ │ │ ├── push_front_fwd.hpp │ │ │ │ ├── quote.hpp │ │ │ │ ├── reverse_fold.hpp │ │ │ │ ├── same_as.hpp │ │ │ │ ├── sequence_tag.hpp │ │ │ │ ├── sequence_tag_fwd.hpp │ │ │ │ ├── set │ │ │ │ │ ├── aux_ │ │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ │ ├── begin_end_impl.hpp │ │ │ │ │ │ ├── clear_impl.hpp │ │ │ │ │ │ ├── empty_impl.hpp │ │ │ │ │ │ ├── erase_impl.hpp │ │ │ │ │ │ ├── erase_key_impl.hpp │ │ │ │ │ │ ├── has_key_impl.hpp │ │ │ │ │ │ ├── insert_impl.hpp │ │ │ │ │ │ ├── insert_range_impl.hpp │ │ │ │ │ │ ├── item.hpp │ │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ │ ├── key_type_impl.hpp │ │ │ │ │ │ ├── set0.hpp │ │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ │ ├── tag.hpp │ │ │ │ │ │ └── value_type_impl.hpp │ │ │ │ │ └── set0.hpp │ │ │ │ ├── size_fwd.hpp │ │ │ │ ├── value_type_fwd.hpp │ │ │ │ ├── void.hpp │ │ │ │ └── void_fwd.hpp │ │ │ │ ├── parameter.hpp │ │ │ │ ├── parameter │ │ │ │ ├── aux_ │ │ │ │ │ ├── arg_list.hpp │ │ │ │ │ ├── cast.hpp │ │ │ │ │ ├── default.hpp │ │ │ │ │ ├── is_maybe.hpp │ │ │ │ │ ├── overloads.hpp │ │ │ │ │ ├── parameter_requirements.hpp │ │ │ │ │ ├── parenthesized_type.hpp │ │ │ │ │ ├── preprocessor │ │ │ │ │ │ ├── flatten.hpp │ │ │ │ │ │ └── for_each.hpp │ │ │ │ │ ├── result_of0.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── tag.hpp │ │ │ │ │ ├── tagged_argument.hpp │ │ │ │ │ ├── template_keyword.hpp │ │ │ │ │ ├── unwrap_cv_reference.hpp │ │ │ │ │ ├── void.hpp │ │ │ │ │ └── yesno.hpp │ │ │ │ ├── binding.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── keyword.hpp │ │ │ │ ├── macros.hpp │ │ │ │ ├── match.hpp │ │ │ │ ├── name.hpp │ │ │ │ ├── parameters.hpp │ │ │ │ ├── preprocessor.hpp │ │ │ │ └── value_type.hpp │ │ │ │ ├── preprocessor │ │ │ │ ├── arithmetic │ │ │ │ │ ├── add.hpp │ │ │ │ │ ├── dec.hpp │ │ │ │ │ ├── inc.hpp │ │ │ │ │ └── sub.hpp │ │ │ │ ├── array │ │ │ │ │ ├── data.hpp │ │ │ │ │ ├── elem.hpp │ │ │ │ │ └── size.hpp │ │ │ │ ├── cat.hpp │ │ │ │ ├── comma_if.hpp │ │ │ │ ├── comparison │ │ │ │ │ ├── equal.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ └── not_equal.hpp │ │ │ │ ├── config │ │ │ │ │ └── config.hpp │ │ │ │ ├── control │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── dmc │ │ │ │ │ │ │ └── while.hpp │ │ │ │ │ │ ├── edg │ │ │ │ │ │ │ └── while.hpp │ │ │ │ │ │ ├── msvc │ │ │ │ │ │ │ └── while.hpp │ │ │ │ │ │ └── while.hpp │ │ │ │ │ ├── expr_if.hpp │ │ │ │ │ ├── expr_iif.hpp │ │ │ │ │ ├── if.hpp │ │ │ │ │ ├── iif.hpp │ │ │ │ │ └── while.hpp │ │ │ │ ├── debug │ │ │ │ │ └── error.hpp │ │ │ │ ├── dec.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── auto_rec.hpp │ │ │ │ │ ├── check.hpp │ │ │ │ │ ├── dmc │ │ │ │ │ │ └── auto_rec.hpp │ │ │ │ │ ├── is_binary.hpp │ │ │ │ │ ├── is_nullary.hpp │ │ │ │ │ └── split.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── enum_params.hpp │ │ │ │ ├── enum_params_with_a_default.hpp │ │ │ │ ├── enum_shifted_params.hpp │ │ │ │ ├── expr_if.hpp │ │ │ │ ├── facilities │ │ │ │ │ ├── detail │ │ │ │ │ │ └── is_empty.hpp │ │ │ │ │ ├── empty.hpp │ │ │ │ │ ├── expand.hpp │ │ │ │ │ ├── identity.hpp │ │ │ │ │ ├── intercept.hpp │ │ │ │ │ ├── is_1.hpp │ │ │ │ │ ├── is_empty.hpp │ │ │ │ │ ├── is_empty_variadic.hpp │ │ │ │ │ └── overload.hpp │ │ │ │ ├── for.hpp │ │ │ │ ├── identity.hpp │ │ │ │ ├── inc.hpp │ │ │ │ ├── iterate.hpp │ │ │ │ ├── iteration │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── bounds │ │ │ │ │ │ │ ├── lower1.hpp │ │ │ │ │ │ │ ├── lower2.hpp │ │ │ │ │ │ │ ├── lower3.hpp │ │ │ │ │ │ │ ├── lower4.hpp │ │ │ │ │ │ │ ├── lower5.hpp │ │ │ │ │ │ │ ├── upper1.hpp │ │ │ │ │ │ │ ├── upper2.hpp │ │ │ │ │ │ │ ├── upper3.hpp │ │ │ │ │ │ │ ├── upper4.hpp │ │ │ │ │ │ │ └── upper5.hpp │ │ │ │ │ │ ├── finish.hpp │ │ │ │ │ │ ├── iter │ │ │ │ │ │ │ ├── forward1.hpp │ │ │ │ │ │ │ ├── forward2.hpp │ │ │ │ │ │ │ ├── forward3.hpp │ │ │ │ │ │ │ ├── forward4.hpp │ │ │ │ │ │ │ ├── forward5.hpp │ │ │ │ │ │ │ ├── reverse1.hpp │ │ │ │ │ │ │ ├── reverse2.hpp │ │ │ │ │ │ │ ├── reverse3.hpp │ │ │ │ │ │ │ ├── reverse4.hpp │ │ │ │ │ │ │ └── reverse5.hpp │ │ │ │ │ │ ├── local.hpp │ │ │ │ │ │ ├── rlocal.hpp │ │ │ │ │ │ ├── self.hpp │ │ │ │ │ │ └── start.hpp │ │ │ │ │ ├── iterate.hpp │ │ │ │ │ ├── local.hpp │ │ │ │ │ └── self.hpp │ │ │ │ ├── list │ │ │ │ │ ├── adt.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── dmc │ │ │ │ │ │ │ └── fold_left.hpp │ │ │ │ │ │ ├── edg │ │ │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ │ │ └── fold_right.hpp │ │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ │ └── fold_right.hpp │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ ├── fold_right.hpp │ │ │ │ │ ├── for_each_i.hpp │ │ │ │ │ └── reverse.hpp │ │ │ │ ├── logical │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bool.hpp │ │ │ │ │ ├── compl.hpp │ │ │ │ │ └── not.hpp │ │ │ │ ├── punctuation │ │ │ │ │ ├── comma.hpp │ │ │ │ │ ├── comma_if.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ └── is_begin_parens.hpp │ │ │ │ │ └── is_begin_parens.hpp │ │ │ │ ├── repeat.hpp │ │ │ │ ├── repetition │ │ │ │ │ ├── deduce_r.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── dmc │ │ │ │ │ │ │ └── for.hpp │ │ │ │ │ │ ├── edg │ │ │ │ │ │ │ └── for.hpp │ │ │ │ │ │ ├── for.hpp │ │ │ │ │ │ └── msvc │ │ │ │ │ │ │ └── for.hpp │ │ │ │ │ ├── enum.hpp │ │ │ │ │ ├── enum_binary_params.hpp │ │ │ │ │ ├── enum_params.hpp │ │ │ │ │ ├── enum_params_with_a_default.hpp │ │ │ │ │ ├── enum_shifted.hpp │ │ │ │ │ ├── enum_shifted_params.hpp │ │ │ │ │ ├── enum_trailing.hpp │ │ │ │ │ ├── enum_trailing_params.hpp │ │ │ │ │ ├── for.hpp │ │ │ │ │ ├── repeat.hpp │ │ │ │ │ └── repeat_from_to.hpp │ │ │ │ ├── selection │ │ │ │ │ └── max.hpp │ │ │ │ ├── seq │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── is_empty.hpp │ │ │ │ │ │ └── split.hpp │ │ │ │ │ ├── elem.hpp │ │ │ │ │ ├── enum.hpp │ │ │ │ │ ├── first_n.hpp │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ ├── for_each.hpp │ │ │ │ │ ├── for_each_i.hpp │ │ │ │ │ ├── for_each_product.hpp │ │ │ │ │ ├── push_back.hpp │ │ │ │ │ ├── rest_n.hpp │ │ │ │ │ ├── seq.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ └── subseq.hpp │ │ │ │ ├── slot │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── counter.hpp │ │ │ │ │ │ ├── def.hpp │ │ │ │ │ │ ├── shared.hpp │ │ │ │ │ │ ├── slot1.hpp │ │ │ │ │ │ ├── slot2.hpp │ │ │ │ │ │ ├── slot3.hpp │ │ │ │ │ │ ├── slot4.hpp │ │ │ │ │ │ └── slot5.hpp │ │ │ │ │ └── slot.hpp │ │ │ │ ├── stringize.hpp │ │ │ │ ├── tuple │ │ │ │ │ ├── detail │ │ │ │ │ │ └── is_single_return.hpp │ │ │ │ │ ├── eat.hpp │ │ │ │ │ ├── elem.hpp │ │ │ │ │ ├── rem.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ └── to_list.hpp │ │ │ │ └── variadic │ │ │ │ │ ├── elem.hpp │ │ │ │ │ └── size.hpp │ │ │ │ ├── static_assert.hpp │ │ │ │ ├── swap.hpp │ │ │ │ ├── throw_exception.hpp │ │ │ │ ├── type_traits │ │ │ │ ├── add_const.hpp │ │ │ │ ├── add_lvalue_reference.hpp │ │ │ │ ├── add_pointer.hpp │ │ │ │ ├── add_reference.hpp │ │ │ │ ├── add_rvalue_reference.hpp │ │ │ │ ├── conditional.hpp │ │ │ │ ├── conversion_traits.hpp │ │ │ │ ├── declval.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── is_function_cxx_03.hpp │ │ │ │ │ ├── is_function_cxx_11.hpp │ │ │ │ │ ├── is_function_msvc10_fix.hpp │ │ │ │ │ ├── is_function_ptr_helper.hpp │ │ │ │ │ ├── is_function_ptr_tester.hpp │ │ │ │ │ ├── is_mem_fun_pointer_impl.hpp │ │ │ │ │ ├── is_mem_fun_pointer_tester.hpp │ │ │ │ │ ├── is_member_function_pointer_cxx_03.hpp │ │ │ │ │ ├── is_member_function_pointer_cxx_11.hpp │ │ │ │ │ ├── is_rvalue_reference_msvc10_fix.hpp │ │ │ │ │ └── yes_no_type.hpp │ │ │ │ ├── enable_if.hpp │ │ │ │ ├── has_nothrow_assign.hpp │ │ │ │ ├── has_nothrow_copy.hpp │ │ │ │ ├── has_trivial_assign.hpp │ │ │ │ ├── has_trivial_constructor.hpp │ │ │ │ ├── has_trivial_copy.hpp │ │ │ │ ├── has_trivial_destructor.hpp │ │ │ │ ├── has_trivial_move_assign.hpp │ │ │ │ ├── has_trivial_move_constructor.hpp │ │ │ │ ├── integral_constant.hpp │ │ │ │ ├── intrinsics.hpp │ │ │ │ ├── is_abstract.hpp │ │ │ │ ├── is_arithmetic.hpp │ │ │ │ ├── is_array.hpp │ │ │ │ ├── is_assignable.hpp │ │ │ │ ├── is_base_and_derived.hpp │ │ │ │ ├── is_class.hpp │ │ │ │ ├── is_complete.hpp │ │ │ │ ├── is_const.hpp │ │ │ │ ├── is_constructible.hpp │ │ │ │ ├── is_convertible.hpp │ │ │ │ ├── is_copy_constructible.hpp │ │ │ │ ├── is_default_constructible.hpp │ │ │ │ ├── is_destructible.hpp │ │ │ │ ├── is_empty.hpp │ │ │ │ ├── is_enum.hpp │ │ │ │ ├── is_floating_point.hpp │ │ │ │ ├── is_function.hpp │ │ │ │ ├── is_integral.hpp │ │ │ │ ├── is_lvalue_reference.hpp │ │ │ │ ├── is_member_function_pointer.hpp │ │ │ │ ├── is_member_pointer.hpp │ │ │ │ ├── is_noncopyable.hpp │ │ │ │ ├── is_nothrow_move_assignable.hpp │ │ │ │ ├── is_nothrow_move_constructible.hpp │ │ │ │ ├── is_pod.hpp │ │ │ │ ├── is_pointer.hpp │ │ │ │ ├── is_polymorphic.hpp │ │ │ │ ├── is_reference.hpp │ │ │ │ ├── is_rvalue_reference.hpp │ │ │ │ ├── is_same.hpp │ │ │ │ ├── is_scalar.hpp │ │ │ │ ├── is_stateless.hpp │ │ │ │ ├── is_union.hpp │ │ │ │ ├── is_void.hpp │ │ │ │ ├── is_volatile.hpp │ │ │ │ ├── remove_const.hpp │ │ │ │ ├── remove_cv.hpp │ │ │ │ ├── remove_pointer.hpp │ │ │ │ ├── remove_reference.hpp │ │ │ │ └── type_identity.hpp │ │ │ │ ├── utility │ │ │ │ ├── detail │ │ │ │ │ └── result_of_iterate.hpp │ │ │ │ ├── enable_if.hpp │ │ │ │ └── result_of.hpp │ │ │ │ └── version.hpp │ │ ├── core_tools │ │ │ ├── LICENSE │ │ │ ├── build │ │ │ │ └── vs2017 │ │ │ │ │ └── core_tools.props │ │ │ └── include │ │ │ │ └── core │ │ │ │ ├── containers │ │ │ │ ├── sequential_unordered_map │ │ │ │ └── sequential_unordered_set │ │ │ │ ├── interface │ │ │ │ ├── iterators │ │ │ │ ├── transform_iterator │ │ │ │ └── zip_iterator │ │ │ │ ├── ranges │ │ │ │ ├── range │ │ │ │ └── transformed_view │ │ │ │ └── utils │ │ │ │ ├── io │ │ │ │ └── memory │ │ ├── dependencies.props │ │ ├── directxmesh │ │ │ ├── DirectXMesh │ │ │ │ ├── DirectXMesh.h │ │ │ │ ├── DirectXMesh.inl │ │ │ │ ├── DirectXMeshAdjacency.cpp │ │ │ │ ├── DirectXMeshClean.cpp │ │ │ │ ├── DirectXMeshGSAdjacency.cpp │ │ │ │ ├── DirectXMeshNormals.cpp │ │ │ │ ├── DirectXMeshOptimize.cpp │ │ │ │ ├── DirectXMeshOptimizeLRU.cpp │ │ │ │ ├── DirectXMeshOptimizeTVC.cpp │ │ │ │ ├── DirectXMeshP.h │ │ │ │ ├── DirectXMeshRemap.cpp │ │ │ │ ├── DirectXMeshTangentFrame.cpp │ │ │ │ ├── DirectXMeshUtil.cpp │ │ │ │ ├── DirectXMeshVBReader.cpp │ │ │ │ ├── DirectXMeshVBWriter.cpp │ │ │ │ ├── DirectXMeshValidate.cpp │ │ │ │ ├── DirectXMeshWeldVertices.cpp │ │ │ │ ├── DirectXMesh_Desktop_2017_Win10.vcxproj │ │ │ │ ├── DirectXMesh_Desktop_2017_Win10.vcxproj.filters │ │ │ │ └── scoped.h │ │ │ ├── DirectXMesh_Desktop_2017_Win10.sln │ │ │ └── LICENSE │ │ └── tootle │ │ │ ├── LICENSE │ │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── TootleLib │ │ │ ├── CMakeLists.txt │ │ │ ├── RayTracer │ │ │ │ ├── JRT │ │ │ │ │ ├── JRTBoundingBox.cpp │ │ │ │ │ ├── JRTBoundingBox.h │ │ │ │ │ ├── JRTCamera.cpp │ │ │ │ │ ├── JRTCamera.h │ │ │ │ │ ├── JRTCommon.h │ │ │ │ │ ├── JRTCore.cpp │ │ │ │ │ ├── JRTCore.h │ │ │ │ │ ├── JRTCoreUtils.cpp │ │ │ │ │ ├── JRTCoreUtils.h │ │ │ │ │ ├── JRTH2KDTreeBuilder.cpp │ │ │ │ │ ├── JRTH2KDTreeBuilder.h │ │ │ │ │ ├── JRTHeuristicKDTreeBuilder.cpp │ │ │ │ │ ├── JRTHeuristicKDTreeBuilder.h │ │ │ │ │ ├── JRTKDTree.cpp │ │ │ │ │ ├── JRTKDTree.h │ │ │ │ │ ├── JRTKDTreeBuilder.cpp │ │ │ │ │ ├── JRTKDTreeBuilder.h │ │ │ │ │ ├── JRTMesh.cpp │ │ │ │ │ ├── JRTMesh.h │ │ │ │ │ ├── JRTOrthoCamera.cpp │ │ │ │ │ ├── JRTOrthoCamera.h │ │ │ │ │ ├── JRTPPMImage.cpp │ │ │ │ │ ├── JRTPPMImage.h │ │ │ │ │ ├── JRTTriangleIntersection.cpp │ │ │ │ │ └── JRTTriangleIntersection.h │ │ │ │ ├── Math │ │ │ │ │ ├── JML.h │ │ │ │ │ ├── JMLFuncs.cpp │ │ │ │ │ ├── JMLFuncs.h │ │ │ │ │ ├── JMLMatrix.h │ │ │ │ │ ├── JMLSSEVec.h │ │ │ │ │ ├── JMLScalar.h │ │ │ │ │ ├── JMLVec2.h │ │ │ │ │ └── JMLVec3.h │ │ │ │ ├── TootleRaytracer.cpp │ │ │ │ └── TootleRaytracer.h │ │ │ ├── Stripifier.cpp │ │ │ ├── Stripifier.h │ │ │ ├── Timer.cpp │ │ │ ├── Timer.h │ │ │ ├── TootlePCH.h │ │ │ ├── aligned_malloc.cpp │ │ │ ├── aligned_malloc.h │ │ │ ├── bbox.h │ │ │ ├── cloud.h │ │ │ ├── clustering.cpp │ │ │ ├── clustering.h │ │ │ ├── color.h │ │ │ ├── d3doverdrawwindow.cpp │ │ │ ├── d3doverdrawwindow.h │ │ │ ├── d3dwindow.h │ │ │ ├── d3dwm.cpp │ │ │ ├── d3dwm.h │ │ │ ├── error.c │ │ │ ├── error.h │ │ │ ├── feedback.cpp │ │ │ ├── feedback.h │ │ │ ├── fit.cpp │ │ │ ├── fit.h │ │ │ ├── gdiwindow.h │ │ │ ├── gdiwm.cpp │ │ │ ├── gdiwm.h │ │ │ ├── heap.c │ │ │ ├── heap.h │ │ │ ├── include │ │ │ │ └── tootlelib.h │ │ │ ├── matrix.h │ │ │ ├── mesh.h │ │ │ ├── option.h │ │ │ ├── overdraw.cpp │ │ │ ├── overdraw.h │ │ │ ├── quaternion.h │ │ │ ├── scalar.h │ │ │ ├── soup.cpp │ │ │ ├── soup.h │ │ │ ├── souptomesh.cpp │ │ │ ├── souptomesh.h │ │ │ ├── tootlelib.cpp │ │ │ ├── triorder.cpp │ │ │ ├── triorder.h │ │ │ ├── vector.h │ │ │ ├── viewpoints.h │ │ │ └── window.h │ │ │ └── TootleSample │ │ │ ├── CMakeLists.txt │ │ │ ├── MaterialSort.cpp │ │ │ ├── ObjLoader.cpp │ │ │ ├── ObjLoader.h │ │ │ ├── Timer.cpp │ │ │ ├── Timer.h │ │ │ ├── Tootle.cpp │ │ │ └── option.h │ └── vs2017 │ │ ├── autotuner.vcxproj │ │ ├── autotuner.vcxproj.filters │ │ ├── sceneprocessor.sln │ │ ├── sceneprocessor.vcxproj │ │ └── sceneprocessor.vcxproj.filters └── source │ ├── ProcessingLayer.h │ ├── Scene.cpp │ ├── Scene.h │ ├── SceneBuilder.h │ ├── SceneProcessor.cpp │ ├── SceneProcessor.h │ ├── autotuner.cpp │ ├── cmd_args.cpp │ ├── cmd_args.h │ ├── file_formats │ ├── binscene.cpp │ ├── binscene.h │ ├── candy_scene.cpp │ ├── candy_scene.h │ ├── obj.cpp │ ├── obj.h │ ├── sdkmesh.cpp │ ├── sdkmesh.h │ ├── tris.cpp │ └── tris.h │ ├── io.h │ ├── layers │ ├── BatchEnumerator.cpp │ ├── BatchEnumerator.h │ ├── BatchOptimizer.cpp │ ├── BatchOptimizer.h │ ├── BatchSimulationParameters.h │ ├── BatchSimulator.h │ ├── CentralVertexCacheSimulation.cpp │ ├── CentralVertexCacheSimulation.h │ ├── GBatchOptimizer.cpp │ ├── GBatchOptimizer.h │ ├── HoppeOptimizer.cpp │ ├── HoppeOptimizer.h │ ├── LRUVertexCacheSimulation.cpp │ ├── LRUVertexCacheSimulation.h │ ├── LinYuOptimizer.cpp │ ├── LinYuOptimizer.h │ ├── ModifiedTomFOptimizer.cpp │ ├── ModifiedTomFOptimizer.h │ ├── Randi.cpp │ ├── Randi.h │ ├── Timing.cpp │ ├── Timing.h │ ├── TipsifyOptimizer.cpp │ ├── TipsifyOptimizer.h │ ├── TomFOptimizer.cpp │ ├── TomFOptimizer.h │ ├── UnweldVertices.cpp │ ├── UnweldVertices.h │ ├── VertexCacheSimulation.cpp │ ├── VertexCacheSimulation.h │ ├── VertexReuseStats.cpp │ ├── VertexReuseStats.h │ ├── WeldVertices.cpp │ ├── WeldVertices.h │ ├── WindingOrderFlip.cpp │ ├── WindingOrderFlip.h │ ├── ZFlip.cpp │ └── ZFlip.h │ └── main.cpp ├── setup.py └── visualizer ├── build ├── dependencies │ ├── COFF_tools │ │ ├── LICENSE │ │ └── dotNET │ │ │ ├── COFF.cs │ │ │ ├── COFF_tools.csproj │ │ │ ├── COFF_tools.sln │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── COM_core_tools │ │ ├── LICENSE │ │ ├── build │ │ │ └── vs2017 │ │ │ │ ├── COM_core_tools.props │ │ │ │ ├── COM_core_tools.sln │ │ │ │ ├── COM_core_tools.vcxproj │ │ │ │ ├── COM_core_tools.vcxproj.filters │ │ │ │ └── dependencies.props.template │ │ ├── include │ │ │ └── COM │ │ │ │ ├── error.h │ │ │ │ ├── init.h │ │ │ │ ├── shared_ptr.h │ │ │ │ ├── unique_ptr.h │ │ │ │ └── utility.h │ │ └── source │ │ │ └── error.cpp │ ├── GLSL_build_tools │ │ ├── GLSL.props │ │ ├── GLSL.targets │ │ ├── GLSL.xml │ │ ├── LICENSE │ │ ├── build │ │ │ └── vs2017 │ │ │ │ ├── EmbedGLSL │ │ │ │ └── EmbedGLSL.csproj │ │ │ │ ├── GLSL_build_tools.sln │ │ │ │ ├── glsl2cpp │ │ │ │ ├── glsl2cpp.vcxproj │ │ │ │ └── glsl2cpp.vcxproj.filters │ │ │ │ └── test │ │ │ │ ├── test.vcxproj │ │ │ │ └── test.vcxproj.filters │ │ └── source │ │ │ ├── EmbedGLSL │ │ │ ├── AssemblyInfo.cs │ │ │ ├── CommandLine.cs │ │ │ ├── Dependencies.cs │ │ │ ├── EmbedGLSL.cs │ │ │ └── LogListener.cs │ │ │ ├── GLSLStream.cpp │ │ │ ├── GLSLStream.h │ │ │ ├── Log.h │ │ │ ├── StdStreamLog.cpp │ │ │ ├── StdStreamLog.h │ │ │ ├── glsl2cpp.cpp │ │ │ ├── interface.h │ │ │ ├── io.h │ │ │ ├── main.cpp │ │ │ └── test │ │ │ ├── bla.glsl │ │ │ └── test.cpp │ ├── GL_core_tools │ │ ├── LICENSE │ │ ├── build │ │ │ └── vs2017 │ │ │ │ ├── GL_core_tools.props │ │ │ │ ├── GL_core_tools.sln │ │ │ │ ├── GL_core_tools.vcxproj │ │ │ │ ├── GL_core_tools.vcxproj.filters │ │ │ │ └── dependencies.props.template │ │ ├── include │ │ │ └── GL │ │ │ │ ├── buffer.h │ │ │ │ ├── error.h │ │ │ │ ├── event.h │ │ │ │ ├── framebuffer.h │ │ │ │ ├── sampler.h │ │ │ │ ├── shader.h │ │ │ │ ├── texture.h │ │ │ │ ├── transform_feedback.h │ │ │ │ ├── unique_name.h │ │ │ │ └── vertex_array.h │ │ └── source │ │ │ ├── buffer.cpp │ │ │ ├── error.cpp │ │ │ ├── event.cpp │ │ │ ├── framebuffer.cpp │ │ │ ├── shader.cpp │ │ │ ├── texture.cpp │ │ │ ├── transform_feedback.cpp │ │ │ └── vertex_array.cpp │ ├── GL_platform_tools │ │ ├── LICENSE │ │ ├── build │ │ │ └── vs2017 │ │ │ │ ├── GL_platform_tools.props │ │ │ │ ├── GL_platform_tools.sln │ │ │ │ ├── GL_platform_tools.vcxproj │ │ │ │ ├── GL_platform_tools.vcxproj.filters │ │ │ │ ├── dependencies.props.template │ │ │ │ ├── glcore.vcxproj │ │ │ │ └── glcore.vcxproj.filters │ │ ├── include │ │ │ ├── GL │ │ │ │ └── platform │ │ │ │ │ ├── Application.h │ │ │ │ │ ├── Context.h │ │ │ │ │ ├── DefaultDisplayHandler.h │ │ │ │ │ ├── DefaultInputHandler.h │ │ │ │ │ ├── DisplayHandler.h │ │ │ │ │ ├── InputHandler.h │ │ │ │ │ ├── Renderer.h │ │ │ │ │ ├── Window.h │ │ │ │ │ ├── interface.h │ │ │ │ │ └── window_fwd.h │ │ │ └── khrplatform.h │ │ └── source │ │ │ ├── DefaultDisplayHandler.cpp │ │ │ ├── DefaultInputHandler.cpp │ │ │ ├── egl │ │ │ ├── glcore │ │ │ │ ├── context.cpp │ │ │ │ └── context.h │ │ │ └── include │ │ │ │ ├── GL │ │ │ │ └── gl.h │ │ │ │ └── glcore.h │ │ │ ├── win32 │ │ │ ├── Win32GLApplication.cpp │ │ │ ├── Win32GLApplication.h │ │ │ ├── Win32GLContext.cpp │ │ │ ├── Win32GLContext.h │ │ │ ├── Win32GLWindow.cpp │ │ │ ├── Win32GLWindow.h │ │ │ ├── Win32Input.h │ │ │ ├── glcore │ │ │ │ ├── DllMain.cpp │ │ │ │ ├── context.cpp │ │ │ │ └── context.h │ │ │ ├── include │ │ │ │ ├── GL │ │ │ │ │ └── gl.h │ │ │ │ └── win32 │ │ │ │ │ └── glcore.h │ │ │ └── wglext.h │ │ │ └── x11 │ │ │ ├── X11ColormapHandle.h │ │ │ ├── X11Display.cpp │ │ │ ├── X11Display.h │ │ │ ├── X11GLApplication.cpp │ │ │ ├── X11GLApplication.h │ │ │ ├── X11GLContext.cpp │ │ │ ├── X11GLContext.h │ │ │ ├── X11GLWindow.cpp │ │ │ ├── X11GLWindow.h │ │ │ ├── X11Input.h │ │ │ ├── X11WindowHandle.h │ │ │ ├── glxext.h │ │ │ ├── include │ │ │ └── GL │ │ │ │ └── gl.h │ │ │ ├── platform.h │ │ │ └── x11_ptr.h │ ├── Win32_core_tools │ │ ├── LICENSE │ │ ├── build │ │ │ └── vs2017 │ │ │ │ ├── Win32_core_tools.props │ │ │ │ ├── Win32_core_tools.sln │ │ │ │ ├── Win32_core_tools.vcxproj │ │ │ │ └── Win32_core_tools.vcxproj.filters │ │ ├── include │ │ │ └── win32 │ │ │ │ ├── WindowClass.h │ │ │ │ ├── async_io.h │ │ │ │ ├── crypt.h │ │ │ │ ├── error.h │ │ │ │ ├── event.h │ │ │ │ ├── file.h │ │ │ │ ├── handle.h │ │ │ │ ├── memory.h │ │ │ │ ├── module.h │ │ │ │ ├── platform.h │ │ │ │ ├── unicode.h │ │ │ │ ├── unique_handle.h │ │ │ │ └── window.h │ │ └── source │ │ │ ├── async_io.cpp │ │ │ ├── crypt.cpp │ │ │ ├── error.cpp │ │ │ ├── event.cpp │ │ │ ├── file.cpp │ │ │ ├── handle.cpp │ │ │ ├── memory.cpp │ │ │ ├── module.cpp │ │ │ ├── unicode.cpp │ │ │ └── window.cpp │ ├── config_tools │ │ ├── LICENSE │ │ ├── build │ │ │ └── vs2017 │ │ │ │ ├── config_tools.props │ │ │ │ ├── config_tools.sln │ │ │ │ ├── config_tools.vcxproj │ │ │ │ ├── config_tools.vcxproj.filters │ │ │ │ └── dependencies.props.template │ │ ├── include │ │ │ ├── config │ │ │ │ ├── Database.h │ │ │ │ ├── DefaultVisitor.h │ │ │ │ ├── InMemoryDatabase.h │ │ │ │ ├── Overlay.h │ │ │ │ └── error.h │ │ │ ├── configfile.h │ │ │ └── configfile │ │ │ │ ├── DefaultLog.h │ │ │ │ ├── Log.h │ │ │ │ ├── Parser.h │ │ │ │ └── Stream.h │ │ └── source │ │ │ ├── Database.cpp │ │ │ ├── DefaultVisitor.cpp │ │ │ ├── InMemoryDatabase.cpp │ │ │ ├── Overlay.cpp │ │ │ ├── configfile │ │ │ ├── Parser.cpp │ │ │ ├── Stream.cpp │ │ │ └── configfile.cpp │ │ │ └── error.cpp │ ├── core_tools │ │ ├── LICENSE │ │ ├── build │ │ │ └── vs2017 │ │ │ │ └── core_tools.props │ │ └── include │ │ │ └── core │ │ │ ├── containers │ │ │ ├── sequential_unordered_map │ │ │ └── sequential_unordered_set │ │ │ ├── interface │ │ │ ├── iterators │ │ │ ├── transform_iterator │ │ │ └── zip_iterator │ │ │ ├── ranges │ │ │ ├── range │ │ │ └── transformed_view │ │ │ └── utils │ │ │ ├── io │ │ │ └── memory │ ├── dependencies.props │ ├── image_tools │ │ ├── LICENSE │ │ ├── build │ │ │ └── vs2017 │ │ │ │ ├── dependencies.props.template │ │ │ │ ├── image_tools.props │ │ │ │ ├── image_tools.sln │ │ │ │ ├── image_tools.vcxproj │ │ │ │ └── image_tools.vcxproj.filters │ │ ├── include │ │ │ ├── color.h │ │ │ ├── dds.h │ │ │ ├── image.h │ │ │ ├── pfm.h │ │ │ ├── png.h │ │ │ ├── rgb32f.h │ │ │ ├── rgba32f.h │ │ │ └── rgba8.h │ │ └── source │ │ │ ├── dds.cpp │ │ │ ├── pfm.cpp │ │ │ └── win32 │ │ │ ├── png.cpp │ │ │ ├── wic.cpp │ │ │ └── wic.h │ └── math │ │ ├── build │ │ └── vs │ │ │ └── math.props │ │ └── include │ │ └── math │ │ ├── math.h │ │ ├── matrix.h │ │ ├── quaternion.h │ │ └── vector.h └── vs2017 │ ├── visualizer.sln │ ├── visualizer.vcxproj │ └── visualizer.vcxproj.filters └── source ├── BatchSilhouette.cpp ├── BatchSilhouette.h ├── Camera.h ├── Display.cpp ├── Display.h ├── GLSL ├── camera.glsl.h ├── color.fs.glsl ├── geometry.fs.glsl ├── geometry.vs.glsl ├── geometry_show_batches.fs.glsl ├── geometry_show_invocations.vs.glsl ├── geometry_show_order.fs.glsl ├── geometry_vertex_color.fs.glsl ├── invocation_counter.fs.glsl ├── invocation_counter.gs.glsl ├── invocation_counter.vs.glsl └── projected_geometry.vs.glsl ├── Geometry.h ├── GeometryViz.cpp ├── GeometryViz.h ├── InvocationChecker.cpp ├── InvocationChecker.h ├── Navigator.h ├── OrbitalNavigator.cpp ├── OrbitalNavigator.h ├── PerspectiveCamera.cpp ├── PerspectiveCamera.h ├── TriOrderCurve.cpp ├── TriOrderCurve.h ├── Visualizer.cpp ├── Visualizer.h ├── argparse.cpp ├── argparse.h └── main.cpp /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/LICENSE -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/readme.md -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/LICENSE_1_0.txt -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/array.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/assert.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/circular_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/circular_buffer.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/circular_buffer/allocators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/circular_buffer/allocators.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/circular_buffer/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/circular_buffer/base.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/circular_buffer/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/circular_buffer/debug.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/circular_buffer/details.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/circular_buffer/details.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/circular_buffer_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/circular_buffer_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/concept/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/concept/assert.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/concept/detail/borland.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/concept/detail/borland.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/concept/detail/concept_def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/concept/detail/concept_def.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/concept/detail/general.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/concept/detail/general.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/concept/detail/msvc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/concept/detail/msvc.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/concept/usage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/concept/usage.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/concept_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/concept_check.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/abi/borland_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/abi/borland_prefix.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/abi/borland_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/abi/borland_suffix.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/abi/msvc_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/abi/msvc_prefix.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/abi/msvc_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/abi/msvc_suffix.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/abi_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/abi_prefix.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/abi_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/abi_suffix.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/auto_link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/auto_link.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/compiler/borland.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/compiler/borland.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/compiler/clang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/compiler/clang.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/compiler/codegear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/compiler/codegear.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/compiler/comeau.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/compiler/comeau.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/compiler/common_edg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/compiler/common_edg.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/compiler/compaq_cxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/compiler/compaq_cxx.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/compiler/cray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/compiler/cray.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/compiler/diab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/compiler/diab.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/compiler/gcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/compiler/gcc.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/compiler/gcc_xml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/compiler/gcc_xml.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/compiler/greenhills.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/compiler/greenhills.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/compiler/hp_acc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/compiler/hp_acc.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/compiler/intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/compiler/intel.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/compiler/kai.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/compiler/kai.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/compiler/metrowerks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/compiler/metrowerks.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/compiler/mpw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/compiler/mpw.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/compiler/nvcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/compiler/nvcc.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/compiler/pathscale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/compiler/pathscale.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/compiler/pgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/compiler/pgi.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/compiler/sunpro_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/compiler/sunpro_cc.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/compiler/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/compiler/vacpp.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/compiler/visualc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/compiler/visualc.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/compiler/xlcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/compiler/xlcpp.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/compiler/xlcpp_zos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/compiler/xlcpp_zos.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/detail/suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/detail/suffix.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/header_deprecated.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/header_deprecated.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/helper_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/helper_macros.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/no_tr1/cmath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/no_tr1/cmath.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/no_tr1/complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/no_tr1/complex.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/no_tr1/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/no_tr1/functional.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/no_tr1/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/no_tr1/memory.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/no_tr1/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/no_tr1/utility.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/platform/aix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/platform/aix.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/platform/amigaos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/platform/amigaos.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/platform/beos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/platform/beos.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/platform/bsd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/platform/bsd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/platform/cloudabi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/platform/cloudabi.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/platform/cray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/platform/cray.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/platform/cygwin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/platform/cygwin.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/platform/haiku.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/platform/haiku.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/platform/hpux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/platform/hpux.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/platform/irix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/platform/irix.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/platform/linux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/platform/linux.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/platform/macos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/platform/macos.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/platform/qnxnto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/platform/qnxnto.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/platform/solaris.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/platform/solaris.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/platform/symbian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/platform/symbian.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/platform/vms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/platform/vms.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/platform/vxworks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/platform/vxworks.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/platform/win32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/platform/win32.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/platform/zos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/platform/zos.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/pragma_message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/pragma_message.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/requires_threads.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/requires_threads.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/stdlib/dinkumware.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/stdlib/dinkumware.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/stdlib/libcomo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/stdlib/libcomo.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/stdlib/libcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/stdlib/libcpp.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/stdlib/libstdcpp3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/stdlib/libstdcpp3.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/stdlib/modena.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/stdlib/modena.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/stdlib/msl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/stdlib/msl.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/stdlib/roguewave.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/stdlib/roguewave.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/stdlib/sgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/stdlib/sgi.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/stdlib/stlport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/stdlib/stlport.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/stdlib/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/stdlib/vacpp.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/stdlib/xlcpp_zos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/stdlib/xlcpp_zos.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/user.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/warning_disable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/warning_disable.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/config/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/config/workaround.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/core/addressof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/core/addressof.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/core/empty_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/core/empty_value.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/core/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/core/enable_if.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/core/no_exceptions_support.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/core/no_exceptions_support.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/core/pointer_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/core/pointer_traits.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/core/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/core/swap.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/core/use_default.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/core/use_default.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/cstdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/cstdint.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/current_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/current_function.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/detail/indirect_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/detail/indirect_traits.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/detail/is_xxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/detail/is_xxx.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/detail/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/detail/iterator.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/detail/select_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/detail/select_type.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/detail/workaround.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/exception/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/exception/exception.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/heap/detail/heap_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/heap/detail/heap_node.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/heap/detail/stable_heap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/heap/detail/stable_heap.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/heap/detail/tree_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/heap/detail/tree_iterator.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/heap/fibonacci_heap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/heap/fibonacci_heap.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/heap/heap_concepts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/heap/heap_concepts.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/heap/heap_merge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/heap/heap_merge.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/heap/policies.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/heap/policies.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/intrusive/detail/algo_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/intrusive/detail/algo_type.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/intrusive/detail/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/intrusive/detail/algorithm.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/intrusive/detail/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/intrusive/detail/assert.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/intrusive/detail/iiterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/intrusive/detail/iiterator.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/intrusive/detail/mpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/intrusive/detail/mpl.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/intrusive/detail/uncast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/intrusive/detail/uncast.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/intrusive/intrusive_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/intrusive/intrusive_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/intrusive/link_mode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/intrusive/link_mode.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/intrusive/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/intrusive/list.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/intrusive/list_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/intrusive/list_hook.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/intrusive/options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/intrusive/options.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/intrusive/pack_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/intrusive/pack_options.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/iterator/interoperable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/iterator/interoperable.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/limits.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/move/adl_move_swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/move/adl_move_swap.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/move/algo/move.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/move/algo/move.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/move/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/move/algorithm.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/move/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/move/core.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/move/detail/config_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/move/detail/config_end.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/move/detail/meta_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/move/detail/meta_utils.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/move/detail/std_ns_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/move/detail/std_ns_end.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/move/detail/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/move/detail/type_traits.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/move/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/move/detail/workaround.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/move/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/move/iterator.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/move/move.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/move/move.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/move/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/move/traits.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/move/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/move/utility.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/move/utility_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/move/utility_core.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/O1_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/O1_size.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/O1_size_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/O1_size_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/always.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/always.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/and.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/apply.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/apply_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/apply_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/apply_wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/apply_wrap.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/arg.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/arg_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/arg_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/assert.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/at_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/at_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/O1_size_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/O1_size_impl.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/adl_barrier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/adl_barrier.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/arg_typedef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/arg_typedef.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/arity.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/arity_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/arity_spec.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/begin_end_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/begin_end_impl.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/clear_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/clear_impl.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/adl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/adl.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/arrays.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/arrays.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/bcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/bcc.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/bind.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/ctps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/ctps.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/dtp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/dtp.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/eti.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/eti.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/gcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/gcc.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/gpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/gpu.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/has_xxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/has_xxx.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/intel.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/lambda.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/msvc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/msvc.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/nttp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/nttp.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/ttp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/config/ttp.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/count_args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/count_args.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/find_if_pred.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/find_if_pred.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/fold_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/fold_impl.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/fold_impl_body.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/fold_impl_body.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/full_lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/full_lambda.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/has_apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/has_apply.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/has_begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/has_begin.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/has_key_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/has_key_impl.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/has_rebind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/has_rebind.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/has_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/has_size.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/has_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/has_tag.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/has_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/has_type.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/insert_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/insert_impl.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/iter_apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/iter_apply.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/lambda_no_ctps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/lambda_no_ctps.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/lambda_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/lambda_spec.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/lambda_support.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/lambda_support.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/logical_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/logical_op.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/msvc_dtw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/msvc_dtw.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/msvc_eti_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/msvc_eti_base.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/msvc_is_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/msvc_is_class.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/msvc_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/msvc_type.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/na.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/na.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/na_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/na_assert.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/na_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/na_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/na_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/na_spec.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/nttp_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/nttp_decl.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/overload_names.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/overload_names.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/ptr_to_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/ptr_to_ref.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/static_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/static_cast.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/template_arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/template_arity.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/type_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/type_wrapper.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/value_wknd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/value_wknd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/aux_/yes_no.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/aux_/yes_no.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/base.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/begin.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/begin_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/begin_end.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/begin_end_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/begin_end_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/bind.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/bind_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/bind_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/bool.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/bool_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/bool_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/clear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/clear.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/clear_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/clear_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/deref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/deref.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/empty_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/empty_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/end.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/erase_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/erase_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/erase_key_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/erase_key_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/eval_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/eval_if.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/find.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/find_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/find_if.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/fold.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/front_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/front_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/has_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/has_key.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/has_key_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/has_key_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/has_xxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/has_xxx.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/identity.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/if.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/insert.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/insert_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/insert_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/insert_range_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/insert_range_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/int.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/int_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/int_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/integral_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/integral_c.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/integral_c_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/integral_c_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/integral_c_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/integral_c_tag.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/is_placeholder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/is_placeholder.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/iter_fold_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/iter_fold_if.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/iterator_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/iterator_range.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/iterator_tags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/iterator_tags.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/key_type_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/key_type_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/lambda.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/lambda_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/lambda_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/limits/arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/limits/arity.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/limits/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/limits/list.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/limits/unrolling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/limits/unrolling.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/list.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/list/aux_/O1_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/list/aux_/O1_size.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/list/aux_/begin_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/list/aux_/begin_end.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/list/aux_/clear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/list/aux_/clear.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/list/aux_/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/list/aux_/empty.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/list/aux_/front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/list/aux_/front.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/list/aux_/item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/list/aux_/item.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/list/aux_/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/list/aux_/iterator.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/list/aux_/numbered.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/list/aux_/numbered.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/list/aux_/pop_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/list/aux_/pop_front.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/list/aux_/push_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/list/aux_/push_back.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/list/aux_/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/list/aux_/size.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/list/aux_/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/list/aux_/tag.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/list/list0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/list/list0.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/list/list0_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/list/list0_c.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/list/list10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/list/list10.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/list/list10_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/list/list10_c.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/list/list20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/list/list20.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/list/list20_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/list/list20_c.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/list/list30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/list/list30.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/list/list30_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/list/list30_c.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/list/list40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/list/list40.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/list/list40_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/list/list40_c.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/list/list50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/list/list50.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/list/list50_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/list/list50_c.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/logical.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/logical.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/long.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/long.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/long_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/long_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/next.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/next.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/next_prior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/next_prior.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/not.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/not.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/or.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/pair.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/placeholders.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/pop_front_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/pop_front_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/prior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/prior.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/protect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/protect.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/push_back_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/push_back_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/push_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/push_front.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/push_front_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/push_front_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/quote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/quote.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/reverse_fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/reverse_fold.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/same_as.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/same_as.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/sequence_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/sequence_tag.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/sequence_tag_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/sequence_tag_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/set/aux_/at_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/set/aux_/at_impl.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/set/aux_/clear_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/set/aux_/clear_impl.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/set/aux_/empty_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/set/aux_/empty_impl.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/set/aux_/erase_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/set/aux_/erase_impl.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/set/aux_/item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/set/aux_/item.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/set/aux_/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/set/aux_/iterator.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/set/aux_/set0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/set/aux_/set0.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/set/aux_/size_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/set/aux_/size_impl.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/set/aux_/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/set/aux_/tag.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/set/set0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/set/set0.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/size_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/size_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/value_type_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/value_type_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/void.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/mpl/void_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/mpl/void_fwd.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/parameter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/parameter.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/parameter/aux_/arg_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/parameter/aux_/arg_list.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/parameter/aux_/cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/parameter/aux_/cast.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/parameter/aux_/default.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/parameter/aux_/default.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/parameter/aux_/is_maybe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/parameter/aux_/is_maybe.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/parameter/aux_/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/parameter/aux_/set.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/parameter/aux_/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/parameter/aux_/tag.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/parameter/aux_/void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/parameter/aux_/void.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/parameter/aux_/yesno.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/parameter/aux_/yesno.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/parameter/binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/parameter/binding.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/parameter/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/parameter/config.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/parameter/keyword.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/parameter/keyword.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/parameter/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/parameter/macros.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/parameter/match.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/parameter/match.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/parameter/name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/parameter/name.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/parameter/parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/parameter/parameters.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/parameter/preprocessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/parameter/preprocessor.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/parameter/value_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/parameter/value_type.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/array/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/array/data.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/array/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/array/elem.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/array/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/array/size.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/cat.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/comma_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/comma_if.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/control/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/control/if.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/dec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/dec.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/empty.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/enum.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/expr_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/expr_if.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/for.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/identity.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/inc.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/iterate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/iterate.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/list/adt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/list/adt.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/repeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/repeat.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/seq/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/seq/elem.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/seq/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/seq/enum.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/seq/rest_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/seq/rest_n.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/seq/seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/seq/seq.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/seq/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/seq/size.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/seq/subseq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/seq/subseq.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/slot/slot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/slot/slot.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/stringize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/stringize.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/tuple/eat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/tuple/eat.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/tuple/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/tuple/elem.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/tuple/rem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/tuple/rem.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/preprocessor/tuple/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/preprocessor/tuple/size.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/static_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/static_assert.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/swap.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/throw_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/throw_exception.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/type_traits/add_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/type_traits/add_const.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/type_traits/add_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/type_traits/add_pointer.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/type_traits/conditional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/type_traits/conditional.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/type_traits/declval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/type_traits/declval.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/type_traits/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/type_traits/enable_if.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/type_traits/intrinsics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/type_traits/intrinsics.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/type_traits/is_abstract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/type_traits/is_abstract.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/type_traits/is_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/type_traits/is_array.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/type_traits/is_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/type_traits/is_class.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/type_traits/is_complete.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/type_traits/is_complete.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/type_traits/is_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/type_traits/is_const.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/type_traits/is_empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/type_traits/is_empty.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/type_traits/is_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/type_traits/is_enum.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/type_traits/is_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/type_traits/is_function.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/type_traits/is_integral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/type_traits/is_integral.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/type_traits/is_pod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/type_traits/is_pod.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/type_traits/is_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/type_traits/is_pointer.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/type_traits/is_same.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/type_traits/is_same.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/type_traits/is_scalar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/type_traits/is_scalar.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/type_traits/is_union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/type_traits/is_union.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/type_traits/is_void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/type_traits/is_void.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/type_traits/is_volatile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/type_traits/is_volatile.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/type_traits/remove_cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/type_traits/remove_cv.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/utility/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/utility/enable_if.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/utility/result_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/utility/result_of.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/boost/boost/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/boost/boost/version.hpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/core_tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/core_tools/LICENSE -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/core_tools/include/core/interface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/core_tools/include/core/interface -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/core_tools/include/core/ranges/range: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/core_tools/include/core/ranges/range -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/core_tools/include/core/utils/io: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/core_tools/include/core/utils/io -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/core_tools/include/core/utils/memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/core_tools/include/core/utils/memory -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/dependencies.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/dependencies.props -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/directxmesh/DirectXMesh/DirectXMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/directxmesh/DirectXMesh/DirectXMesh.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/directxmesh/DirectXMesh/DirectXMesh.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/directxmesh/DirectXMesh/DirectXMesh.inl -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/directxmesh/DirectXMesh/DirectXMeshP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/directxmesh/DirectXMesh/DirectXMeshP.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/directxmesh/DirectXMesh/scoped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/directxmesh/DirectXMesh/scoped.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/directxmesh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/directxmesh/LICENSE -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/LICENSE -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/CMakeLists.txt -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/CMakeLists.txt -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/Stripifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/Stripifier.cpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/Stripifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/Stripifier.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/Timer.cpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/Timer.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/TootlePCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/TootlePCH.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/aligned_malloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/aligned_malloc.cpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/aligned_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/aligned_malloc.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/bbox.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/cloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/cloud.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/clustering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/clustering.cpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/clustering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/clustering.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/color.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/d3dwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/d3dwindow.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/d3dwm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/d3dwm.cpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/d3dwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/d3dwm.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/error.c -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/error.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/feedback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/feedback.cpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/feedback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/feedback.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/fit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/fit.cpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/fit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/fit.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/gdiwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/gdiwindow.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/gdiwm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/gdiwm.cpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/gdiwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/gdiwm.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/heap.c -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/heap.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/matrix.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/mesh.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/option.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/overdraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/overdraw.cpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/overdraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/overdraw.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/quaternion.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/scalar.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/soup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/soup.cpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/soup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/soup.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/souptomesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/souptomesh.cpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/souptomesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/souptomesh.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/tootlelib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/tootlelib.cpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/triorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/triorder.cpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/triorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/triorder.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/vector.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/viewpoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/viewpoints.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleLib/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleLib/window.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleSample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleSample/CMakeLists.txt -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleSample/ObjLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleSample/ObjLoader.cpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleSample/ObjLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleSample/ObjLoader.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleSample/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleSample/Timer.cpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleSample/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleSample/Timer.h -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleSample/Tootle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleSample/Tootle.cpp -------------------------------------------------------------------------------- /sceneprocessor/build/dependencies/tootle/src/TootleSample/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/dependencies/tootle/src/TootleSample/option.h -------------------------------------------------------------------------------- /sceneprocessor/build/vs2017/autotuner.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/vs2017/autotuner.vcxproj -------------------------------------------------------------------------------- /sceneprocessor/build/vs2017/autotuner.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/vs2017/autotuner.vcxproj.filters -------------------------------------------------------------------------------- /sceneprocessor/build/vs2017/sceneprocessor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/vs2017/sceneprocessor.sln -------------------------------------------------------------------------------- /sceneprocessor/build/vs2017/sceneprocessor.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/vs2017/sceneprocessor.vcxproj -------------------------------------------------------------------------------- /sceneprocessor/build/vs2017/sceneprocessor.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/build/vs2017/sceneprocessor.vcxproj.filters -------------------------------------------------------------------------------- /sceneprocessor/source/ProcessingLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/ProcessingLayer.h -------------------------------------------------------------------------------- /sceneprocessor/source/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/Scene.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/Scene.h -------------------------------------------------------------------------------- /sceneprocessor/source/SceneBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/SceneBuilder.h -------------------------------------------------------------------------------- /sceneprocessor/source/SceneProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/SceneProcessor.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/SceneProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/SceneProcessor.h -------------------------------------------------------------------------------- /sceneprocessor/source/autotuner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/autotuner.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/cmd_args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/cmd_args.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/cmd_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/cmd_args.h -------------------------------------------------------------------------------- /sceneprocessor/source/file_formats/binscene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/file_formats/binscene.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/file_formats/binscene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/file_formats/binscene.h -------------------------------------------------------------------------------- /sceneprocessor/source/file_formats/candy_scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/file_formats/candy_scene.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/file_formats/candy_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/file_formats/candy_scene.h -------------------------------------------------------------------------------- /sceneprocessor/source/file_formats/obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/file_formats/obj.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/file_formats/obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/file_formats/obj.h -------------------------------------------------------------------------------- /sceneprocessor/source/file_formats/sdkmesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/file_formats/sdkmesh.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/file_formats/sdkmesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/file_formats/sdkmesh.h -------------------------------------------------------------------------------- /sceneprocessor/source/file_formats/tris.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/file_formats/tris.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/file_formats/tris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/file_formats/tris.h -------------------------------------------------------------------------------- /sceneprocessor/source/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/io.h -------------------------------------------------------------------------------- /sceneprocessor/source/layers/BatchEnumerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/BatchEnumerator.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/layers/BatchEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/BatchEnumerator.h -------------------------------------------------------------------------------- /sceneprocessor/source/layers/BatchOptimizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/BatchOptimizer.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/layers/BatchOptimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/BatchOptimizer.h -------------------------------------------------------------------------------- /sceneprocessor/source/layers/BatchSimulationParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/BatchSimulationParameters.h -------------------------------------------------------------------------------- /sceneprocessor/source/layers/BatchSimulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/BatchSimulator.h -------------------------------------------------------------------------------- /sceneprocessor/source/layers/CentralVertexCacheSimulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/CentralVertexCacheSimulation.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/layers/CentralVertexCacheSimulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/CentralVertexCacheSimulation.h -------------------------------------------------------------------------------- /sceneprocessor/source/layers/GBatchOptimizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/GBatchOptimizer.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/layers/GBatchOptimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/GBatchOptimizer.h -------------------------------------------------------------------------------- /sceneprocessor/source/layers/HoppeOptimizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/HoppeOptimizer.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/layers/HoppeOptimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/HoppeOptimizer.h -------------------------------------------------------------------------------- /sceneprocessor/source/layers/LRUVertexCacheSimulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/LRUVertexCacheSimulation.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/layers/LRUVertexCacheSimulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/LRUVertexCacheSimulation.h -------------------------------------------------------------------------------- /sceneprocessor/source/layers/LinYuOptimizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/LinYuOptimizer.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/layers/LinYuOptimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/LinYuOptimizer.h -------------------------------------------------------------------------------- /sceneprocessor/source/layers/ModifiedTomFOptimizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/ModifiedTomFOptimizer.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/layers/ModifiedTomFOptimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/ModifiedTomFOptimizer.h -------------------------------------------------------------------------------- /sceneprocessor/source/layers/Randi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/Randi.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/layers/Randi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/Randi.h -------------------------------------------------------------------------------- /sceneprocessor/source/layers/Timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/Timing.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/layers/Timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/Timing.h -------------------------------------------------------------------------------- /sceneprocessor/source/layers/TipsifyOptimizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/TipsifyOptimizer.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/layers/TipsifyOptimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/TipsifyOptimizer.h -------------------------------------------------------------------------------- /sceneprocessor/source/layers/TomFOptimizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/TomFOptimizer.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/layers/TomFOptimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/TomFOptimizer.h -------------------------------------------------------------------------------- /sceneprocessor/source/layers/UnweldVertices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/UnweldVertices.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/layers/UnweldVertices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/UnweldVertices.h -------------------------------------------------------------------------------- /sceneprocessor/source/layers/VertexCacheSimulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/VertexCacheSimulation.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/layers/VertexCacheSimulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/VertexCacheSimulation.h -------------------------------------------------------------------------------- /sceneprocessor/source/layers/VertexReuseStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/VertexReuseStats.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/layers/VertexReuseStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/VertexReuseStats.h -------------------------------------------------------------------------------- /sceneprocessor/source/layers/WeldVertices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/WeldVertices.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/layers/WeldVertices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/WeldVertices.h -------------------------------------------------------------------------------- /sceneprocessor/source/layers/WindingOrderFlip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/WindingOrderFlip.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/layers/WindingOrderFlip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/WindingOrderFlip.h -------------------------------------------------------------------------------- /sceneprocessor/source/layers/ZFlip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/ZFlip.cpp -------------------------------------------------------------------------------- /sceneprocessor/source/layers/ZFlip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/layers/ZFlip.h -------------------------------------------------------------------------------- /sceneprocessor/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/sceneprocessor/source/main.cpp -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/setup.py -------------------------------------------------------------------------------- /visualizer/build/dependencies/COFF_tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/COFF_tools/LICENSE -------------------------------------------------------------------------------- /visualizer/build/dependencies/COFF_tools/dotNET/COFF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/COFF_tools/dotNET/COFF.cs -------------------------------------------------------------------------------- /visualizer/build/dependencies/COFF_tools/dotNET/COFF_tools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/COFF_tools/dotNET/COFF_tools.csproj -------------------------------------------------------------------------------- /visualizer/build/dependencies/COFF_tools/dotNET/COFF_tools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/COFF_tools/dotNET/COFF_tools.sln -------------------------------------------------------------------------------- /visualizer/build/dependencies/COM_core_tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/COM_core_tools/LICENSE -------------------------------------------------------------------------------- /visualizer/build/dependencies/COM_core_tools/include/COM/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/COM_core_tools/include/COM/error.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/COM_core_tools/include/COM/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/COM_core_tools/include/COM/init.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/COM_core_tools/include/COM/shared_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/COM_core_tools/include/COM/shared_ptr.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/COM_core_tools/include/COM/unique_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/COM_core_tools/include/COM/unique_ptr.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/COM_core_tools/include/COM/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/COM_core_tools/include/COM/utility.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/COM_core_tools/source/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/COM_core_tools/source/error.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/GLSL_build_tools/GLSL.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GLSL_build_tools/GLSL.props -------------------------------------------------------------------------------- /visualizer/build/dependencies/GLSL_build_tools/GLSL.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GLSL_build_tools/GLSL.targets -------------------------------------------------------------------------------- /visualizer/build/dependencies/GLSL_build_tools/GLSL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GLSL_build_tools/GLSL.xml -------------------------------------------------------------------------------- /visualizer/build/dependencies/GLSL_build_tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GLSL_build_tools/LICENSE -------------------------------------------------------------------------------- /visualizer/build/dependencies/GLSL_build_tools/source/GLSLStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GLSL_build_tools/source/GLSLStream.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/GLSL_build_tools/source/GLSLStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GLSL_build_tools/source/GLSLStream.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/GLSL_build_tools/source/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GLSL_build_tools/source/Log.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/GLSL_build_tools/source/StdStreamLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GLSL_build_tools/source/StdStreamLog.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/GLSL_build_tools/source/StdStreamLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GLSL_build_tools/source/StdStreamLog.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/GLSL_build_tools/source/glsl2cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GLSL_build_tools/source/glsl2cpp.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/GLSL_build_tools/source/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GLSL_build_tools/source/interface.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/GLSL_build_tools/source/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GLSL_build_tools/source/io.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/GLSL_build_tools/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GLSL_build_tools/source/main.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/GLSL_build_tools/source/test/bla.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GLSL_build_tools/source/test/bla.glsl -------------------------------------------------------------------------------- /visualizer/build/dependencies/GLSL_build_tools/source/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GLSL_build_tools/source/test/test.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_core_tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_core_tools/LICENSE -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_core_tools/include/GL/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_core_tools/include/GL/buffer.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_core_tools/include/GL/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_core_tools/include/GL/error.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_core_tools/include/GL/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_core_tools/include/GL/event.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_core_tools/include/GL/framebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_core_tools/include/GL/framebuffer.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_core_tools/include/GL/sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_core_tools/include/GL/sampler.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_core_tools/include/GL/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_core_tools/include/GL/shader.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_core_tools/include/GL/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_core_tools/include/GL/texture.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_core_tools/include/GL/unique_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_core_tools/include/GL/unique_name.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_core_tools/include/GL/vertex_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_core_tools/include/GL/vertex_array.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_core_tools/source/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_core_tools/source/buffer.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_core_tools/source/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_core_tools/source/error.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_core_tools/source/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_core_tools/source/event.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_core_tools/source/framebuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_core_tools/source/framebuffer.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_core_tools/source/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_core_tools/source/shader.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_core_tools/source/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_core_tools/source/texture.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_core_tools/source/transform_feedback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_core_tools/source/transform_feedback.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_core_tools/source/vertex_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_core_tools/source/vertex_array.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_platform_tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_platform_tools/LICENSE -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_platform_tools/include/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_platform_tools/include/khrplatform.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_platform_tools/source/win32/Win32Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_platform_tools/source/win32/Win32Input.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_platform_tools/source/win32/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_platform_tools/source/win32/wglext.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_platform_tools/source/x11/X11Display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_platform_tools/source/x11/X11Display.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_platform_tools/source/x11/X11Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_platform_tools/source/x11/X11Display.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_platform_tools/source/x11/X11GLContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_platform_tools/source/x11/X11GLContext.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_platform_tools/source/x11/X11GLWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_platform_tools/source/x11/X11GLWindow.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_platform_tools/source/x11/X11Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_platform_tools/source/x11/X11Input.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_platform_tools/source/x11/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_platform_tools/source/x11/glxext.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_platform_tools/source/x11/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_platform_tools/source/x11/platform.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/GL_platform_tools/source/x11/x11_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/GL_platform_tools/source/x11/x11_ptr.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/Win32_core_tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/Win32_core_tools/LICENSE -------------------------------------------------------------------------------- /visualizer/build/dependencies/Win32_core_tools/include/win32/async_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/Win32_core_tools/include/win32/async_io.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/Win32_core_tools/include/win32/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/Win32_core_tools/include/win32/crypt.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/Win32_core_tools/include/win32/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/Win32_core_tools/include/win32/error.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/Win32_core_tools/include/win32/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/Win32_core_tools/include/win32/event.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/Win32_core_tools/include/win32/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/Win32_core_tools/include/win32/file.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/Win32_core_tools/include/win32/handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/Win32_core_tools/include/win32/handle.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/Win32_core_tools/include/win32/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/Win32_core_tools/include/win32/memory.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/Win32_core_tools/include/win32/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/Win32_core_tools/include/win32/module.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/Win32_core_tools/include/win32/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/Win32_core_tools/include/win32/platform.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/Win32_core_tools/include/win32/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/Win32_core_tools/include/win32/unicode.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/Win32_core_tools/include/win32/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/Win32_core_tools/include/win32/window.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/Win32_core_tools/source/async_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/Win32_core_tools/source/async_io.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/Win32_core_tools/source/crypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/Win32_core_tools/source/crypt.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/Win32_core_tools/source/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/Win32_core_tools/source/error.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/Win32_core_tools/source/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/Win32_core_tools/source/event.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/Win32_core_tools/source/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/Win32_core_tools/source/file.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/Win32_core_tools/source/handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/Win32_core_tools/source/handle.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/Win32_core_tools/source/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/Win32_core_tools/source/memory.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/Win32_core_tools/source/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/Win32_core_tools/source/module.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/Win32_core_tools/source/unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/Win32_core_tools/source/unicode.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/Win32_core_tools/source/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/Win32_core_tools/source/window.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/config_tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/config_tools/LICENSE -------------------------------------------------------------------------------- /visualizer/build/dependencies/config_tools/build/vs2017/config_tools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/config_tools/build/vs2017/config_tools.sln -------------------------------------------------------------------------------- /visualizer/build/dependencies/config_tools/include/config/Database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/config_tools/include/config/Database.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/config_tools/include/config/Overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/config_tools/include/config/Overlay.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/config_tools/include/config/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/config_tools/include/config/error.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/config_tools/include/configfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/config_tools/include/configfile.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/config_tools/include/configfile/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/config_tools/include/configfile/Log.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/config_tools/include/configfile/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/config_tools/include/configfile/Parser.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/config_tools/include/configfile/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/config_tools/include/configfile/Stream.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/config_tools/source/Database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/config_tools/source/Database.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/config_tools/source/DefaultVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/config_tools/source/DefaultVisitor.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/config_tools/source/InMemoryDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/config_tools/source/InMemoryDatabase.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/config_tools/source/Overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/config_tools/source/Overlay.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/config_tools/source/configfile/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/config_tools/source/configfile/Parser.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/config_tools/source/configfile/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/config_tools/source/configfile/Stream.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/config_tools/source/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/config_tools/source/error.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/core_tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/core_tools/LICENSE -------------------------------------------------------------------------------- /visualizer/build/dependencies/core_tools/build/vs2017/core_tools.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/core_tools/build/vs2017/core_tools.props -------------------------------------------------------------------------------- /visualizer/build/dependencies/core_tools/include/core/interface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/core_tools/include/core/interface -------------------------------------------------------------------------------- /visualizer/build/dependencies/core_tools/include/core/ranges/range: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/core_tools/include/core/ranges/range -------------------------------------------------------------------------------- /visualizer/build/dependencies/core_tools/include/core/utils/io: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/core_tools/include/core/utils/io -------------------------------------------------------------------------------- /visualizer/build/dependencies/core_tools/include/core/utils/memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/core_tools/include/core/utils/memory -------------------------------------------------------------------------------- /visualizer/build/dependencies/dependencies.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/dependencies.props -------------------------------------------------------------------------------- /visualizer/build/dependencies/image_tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/image_tools/LICENSE -------------------------------------------------------------------------------- /visualizer/build/dependencies/image_tools/build/vs2017/image_tools.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/image_tools/build/vs2017/image_tools.props -------------------------------------------------------------------------------- /visualizer/build/dependencies/image_tools/build/vs2017/image_tools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/image_tools/build/vs2017/image_tools.sln -------------------------------------------------------------------------------- /visualizer/build/dependencies/image_tools/include/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/image_tools/include/color.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/image_tools/include/dds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/image_tools/include/dds.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/image_tools/include/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/image_tools/include/image.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/image_tools/include/pfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/image_tools/include/pfm.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/image_tools/include/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/image_tools/include/png.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/image_tools/include/rgb32f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/image_tools/include/rgb32f.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/image_tools/include/rgba32f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/image_tools/include/rgba32f.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/image_tools/include/rgba8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/image_tools/include/rgba8.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/image_tools/source/dds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/image_tools/source/dds.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/image_tools/source/pfm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/image_tools/source/pfm.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/image_tools/source/win32/png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/image_tools/source/win32/png.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/image_tools/source/win32/wic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/image_tools/source/win32/wic.cpp -------------------------------------------------------------------------------- /visualizer/build/dependencies/image_tools/source/win32/wic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/image_tools/source/win32/wic.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/math/build/vs/math.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/math/build/vs/math.props -------------------------------------------------------------------------------- /visualizer/build/dependencies/math/include/math/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/math/include/math/math.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/math/include/math/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/math/include/math/matrix.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/math/include/math/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/math/include/math/quaternion.h -------------------------------------------------------------------------------- /visualizer/build/dependencies/math/include/math/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/dependencies/math/include/math/vector.h -------------------------------------------------------------------------------- /visualizer/build/vs2017/visualizer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/vs2017/visualizer.sln -------------------------------------------------------------------------------- /visualizer/build/vs2017/visualizer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/vs2017/visualizer.vcxproj -------------------------------------------------------------------------------- /visualizer/build/vs2017/visualizer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/build/vs2017/visualizer.vcxproj.filters -------------------------------------------------------------------------------- /visualizer/source/BatchSilhouette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/BatchSilhouette.cpp -------------------------------------------------------------------------------- /visualizer/source/BatchSilhouette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/BatchSilhouette.h -------------------------------------------------------------------------------- /visualizer/source/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/Camera.h -------------------------------------------------------------------------------- /visualizer/source/Display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/Display.cpp -------------------------------------------------------------------------------- /visualizer/source/Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/Display.h -------------------------------------------------------------------------------- /visualizer/source/GLSL/camera.glsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/GLSL/camera.glsl.h -------------------------------------------------------------------------------- /visualizer/source/GLSL/color.fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/GLSL/color.fs.glsl -------------------------------------------------------------------------------- /visualizer/source/GLSL/geometry.fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/GLSL/geometry.fs.glsl -------------------------------------------------------------------------------- /visualizer/source/GLSL/geometry.vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/GLSL/geometry.vs.glsl -------------------------------------------------------------------------------- /visualizer/source/GLSL/geometry_show_batches.fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/GLSL/geometry_show_batches.fs.glsl -------------------------------------------------------------------------------- /visualizer/source/GLSL/geometry_show_invocations.vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/GLSL/geometry_show_invocations.vs.glsl -------------------------------------------------------------------------------- /visualizer/source/GLSL/geometry_show_order.fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/GLSL/geometry_show_order.fs.glsl -------------------------------------------------------------------------------- /visualizer/source/GLSL/geometry_vertex_color.fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/GLSL/geometry_vertex_color.fs.glsl -------------------------------------------------------------------------------- /visualizer/source/GLSL/invocation_counter.fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/GLSL/invocation_counter.fs.glsl -------------------------------------------------------------------------------- /visualizer/source/GLSL/invocation_counter.gs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/GLSL/invocation_counter.gs.glsl -------------------------------------------------------------------------------- /visualizer/source/GLSL/invocation_counter.vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/GLSL/invocation_counter.vs.glsl -------------------------------------------------------------------------------- /visualizer/source/GLSL/projected_geometry.vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/GLSL/projected_geometry.vs.glsl -------------------------------------------------------------------------------- /visualizer/source/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/Geometry.h -------------------------------------------------------------------------------- /visualizer/source/GeometryViz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/GeometryViz.cpp -------------------------------------------------------------------------------- /visualizer/source/GeometryViz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/GeometryViz.h -------------------------------------------------------------------------------- /visualizer/source/InvocationChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/InvocationChecker.cpp -------------------------------------------------------------------------------- /visualizer/source/InvocationChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/InvocationChecker.h -------------------------------------------------------------------------------- /visualizer/source/Navigator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/Navigator.h -------------------------------------------------------------------------------- /visualizer/source/OrbitalNavigator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/OrbitalNavigator.cpp -------------------------------------------------------------------------------- /visualizer/source/OrbitalNavigator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/OrbitalNavigator.h -------------------------------------------------------------------------------- /visualizer/source/PerspectiveCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/PerspectiveCamera.cpp -------------------------------------------------------------------------------- /visualizer/source/PerspectiveCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/PerspectiveCamera.h -------------------------------------------------------------------------------- /visualizer/source/TriOrderCurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/TriOrderCurve.cpp -------------------------------------------------------------------------------- /visualizer/source/TriOrderCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/TriOrderCurve.h -------------------------------------------------------------------------------- /visualizer/source/Visualizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/Visualizer.cpp -------------------------------------------------------------------------------- /visualizer/source/Visualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/Visualizer.h -------------------------------------------------------------------------------- /visualizer/source/argparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/argparse.cpp -------------------------------------------------------------------------------- /visualizer/source/argparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/argparse.h -------------------------------------------------------------------------------- /visualizer/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUPeople/vertex_batch_optimization/HEAD/visualizer/source/main.cpp --------------------------------------------------------------------------------