├── .gitattributes ├── .gitignore ├── 3rdParty ├── Boost │ ├── Readme.txt │ └── boost │ │ ├── assert.hpp │ │ ├── config.hpp │ │ ├── config │ │ ├── compiler │ │ │ ├── borland.hpp │ │ │ ├── clang.hpp │ │ │ ├── clang_version.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 │ │ │ ├── cxx_composite.hpp │ │ │ ├── posix_features.hpp │ │ │ ├── select_compiler_config.hpp │ │ │ ├── select_platform_config.hpp │ │ │ ├── select_stdlib_config.hpp │ │ │ └── suffix.hpp │ │ ├── helper_macros.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 │ │ │ ├── wasm.hpp │ │ │ ├── win32.hpp │ │ │ └── zos.hpp │ │ ├── pragma_message.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 │ │ ├── cstdint.hpp │ │ ├── intrusive │ │ ├── any_hook.hpp │ │ ├── avl_set.hpp │ │ ├── avl_set_hook.hpp │ │ ├── avltree.hpp │ │ ├── avltree_algorithms.hpp │ │ ├── bs_set.hpp │ │ ├── bs_set_hook.hpp │ │ ├── bstree.hpp │ │ ├── bstree_algorithms.hpp │ │ ├── circular_list_algorithms.hpp │ │ ├── circular_slist_algorithms.hpp │ │ ├── derivation_value_traits.hpp │ │ ├── detail │ │ │ ├── algo_type.hpp │ │ │ ├── algorithm.hpp │ │ │ ├── any_node_and_algorithms.hpp │ │ │ ├── array_initializer.hpp │ │ │ ├── assert.hpp │ │ │ ├── avltree_node.hpp │ │ │ ├── bstree_algorithms_base.hpp │ │ │ ├── common_slist_algorithms.hpp │ │ │ ├── config_begin.hpp │ │ │ ├── config_end.hpp │ │ │ ├── default_header_holder.hpp │ │ │ ├── ebo_functor_holder.hpp │ │ │ ├── empty_node_checker.hpp │ │ │ ├── equal_to_value.hpp │ │ │ ├── exception_disposer.hpp │ │ │ ├── function_detector.hpp │ │ │ ├── generic_hook.hpp │ │ │ ├── get_value_traits.hpp │ │ │ ├── has_member_function_callable_with.hpp │ │ │ ├── hash.hpp │ │ │ ├── hash_combine.hpp │ │ │ ├── hash_integral.hpp │ │ │ ├── hash_mix.hpp │ │ │ ├── hashtable_node.hpp │ │ │ ├── hook_traits.hpp │ │ │ ├── iiterator.hpp │ │ │ ├── is_stateful_value_traits.hpp │ │ │ ├── iterator.hpp │ │ │ ├── key_nodeptr_comp.hpp │ │ │ ├── list_iterator.hpp │ │ │ ├── list_node.hpp │ │ │ ├── math.hpp │ │ │ ├── minimal_less_equal_header.hpp │ │ │ ├── minimal_pair_header.hpp │ │ │ ├── mpl.hpp │ │ │ ├── node_cloner_disposer.hpp │ │ │ ├── node_holder.hpp │ │ │ ├── node_to_value.hpp │ │ │ ├── parent_from_member.hpp │ │ │ ├── rbtree_node.hpp │ │ │ ├── reverse_iterator.hpp │ │ │ ├── simple_disposers.hpp │ │ │ ├── size_holder.hpp │ │ │ ├── slist_iterator.hpp │ │ │ ├── slist_node.hpp │ │ │ ├── std_fwd.hpp │ │ │ ├── transform_iterator.hpp │ │ │ ├── tree_iterator.hpp │ │ │ ├── tree_node.hpp │ │ │ ├── tree_value_compare.hpp │ │ │ ├── twin.hpp │ │ │ ├── uncast.hpp │ │ │ ├── value_functors.hpp │ │ │ └── workaround.hpp │ │ ├── hashtable.hpp │ │ ├── intrusive_fwd.hpp │ │ ├── linear_slist_algorithms.hpp │ │ ├── link_mode.hpp │ │ ├── list.hpp │ │ ├── list_hook.hpp │ │ ├── member_value_traits.hpp │ │ ├── options.hpp │ │ ├── pack_options.hpp │ │ ├── parent_from_member.hpp │ │ ├── pointer_plus_bits.hpp │ │ ├── pointer_rebind.hpp │ │ ├── pointer_traits.hpp │ │ ├── priority_compare.hpp │ │ ├── rbtree.hpp │ │ ├── rbtree_algorithms.hpp │ │ ├── set.hpp │ │ ├── set_hook.hpp │ │ ├── sg_set.hpp │ │ ├── sgtree.hpp │ │ ├── sgtree_algorithms.hpp │ │ ├── slist.hpp │ │ ├── slist_hook.hpp │ │ ├── splay_set.hpp │ │ ├── splaytree.hpp │ │ ├── splaytree_algorithms.hpp │ │ ├── treap.hpp │ │ ├── treap_algorithms.hpp │ │ ├── treap_set.hpp │ │ ├── trivial_value_traits.hpp │ │ ├── unordered_set.hpp │ │ └── unordered_set_hook.hpp │ │ ├── move │ │ ├── adl_move_swap.hpp │ │ ├── core.hpp │ │ ├── detail │ │ │ ├── addressof.hpp │ │ │ ├── config_begin.hpp │ │ │ ├── config_end.hpp │ │ │ ├── force_ptr.hpp │ │ │ ├── iterator_traits.hpp │ │ │ ├── launder.hpp │ │ │ ├── meta_utils.hpp │ │ │ ├── meta_utils_core.hpp │ │ │ ├── placement_new.hpp │ │ │ ├── pointer_element.hpp │ │ │ ├── reverse_iterator.hpp │ │ │ ├── std_ns_begin.hpp │ │ │ ├── std_ns_end.hpp │ │ │ ├── to_raw_pointer.hpp │ │ │ ├── type_traits.hpp │ │ │ └── workaround.hpp │ │ └── utility_core.hpp │ │ └── version.hpp ├── GL │ ├── GL │ │ └── glext.h │ ├── KHR │ │ └── khrplatform.h │ └── Readme.txt ├── GLM │ ├── Readme.txt │ └── glm │ │ ├── CMakeLists.txt │ │ ├── common.hpp │ │ ├── detail │ │ ├── _features.hpp │ │ ├── _fixes.hpp │ │ ├── _noise.hpp │ │ ├── _swizzle.hpp │ │ ├── _swizzle_func.hpp │ │ ├── _vectorize.hpp │ │ ├── compute_common.hpp │ │ ├── compute_vector_relational.hpp │ │ ├── func_common.inl │ │ ├── func_common_simd.inl │ │ ├── func_exponential.inl │ │ ├── func_exponential_simd.inl │ │ ├── func_geometric.inl │ │ ├── func_geometric_simd.inl │ │ ├── func_integer.inl │ │ ├── func_integer_simd.inl │ │ ├── func_matrix.inl │ │ ├── func_matrix_simd.inl │ │ ├── func_packing.inl │ │ ├── func_packing_simd.inl │ │ ├── func_trigonometric.inl │ │ ├── func_trigonometric_simd.inl │ │ ├── func_vector_relational.inl │ │ ├── func_vector_relational_simd.inl │ │ ├── glm.cpp │ │ ├── qualifier.hpp │ │ ├── setup.hpp │ │ ├── type_float.hpp │ │ ├── type_half.hpp │ │ ├── type_half.inl │ │ ├── type_mat2x2.hpp │ │ ├── type_mat2x2.inl │ │ ├── type_mat2x3.hpp │ │ ├── type_mat2x3.inl │ │ ├── type_mat2x4.hpp │ │ ├── type_mat2x4.inl │ │ ├── type_mat3x2.hpp │ │ ├── type_mat3x2.inl │ │ ├── type_mat3x3.hpp │ │ ├── type_mat3x3.inl │ │ ├── type_mat3x4.hpp │ │ ├── type_mat3x4.inl │ │ ├── type_mat4x2.hpp │ │ ├── type_mat4x2.inl │ │ ├── type_mat4x3.hpp │ │ ├── type_mat4x3.inl │ │ ├── type_mat4x4.hpp │ │ ├── type_mat4x4.inl │ │ ├── type_mat4x4_simd.inl │ │ ├── type_quat.hpp │ │ ├── type_quat.inl │ │ ├── type_quat_simd.inl │ │ ├── type_vec1.hpp │ │ ├── type_vec1.inl │ │ ├── type_vec2.hpp │ │ ├── type_vec2.inl │ │ ├── type_vec3.hpp │ │ ├── type_vec3.inl │ │ ├── type_vec4.hpp │ │ ├── type_vec4.inl │ │ └── type_vec4_simd.inl │ │ ├── exponential.hpp │ │ ├── ext.hpp │ │ ├── ext │ │ ├── matrix_clip_space.hpp │ │ ├── matrix_clip_space.inl │ │ ├── matrix_common.hpp │ │ ├── matrix_common.inl │ │ ├── matrix_double2x2.hpp │ │ ├── matrix_double2x2_precision.hpp │ │ ├── matrix_double2x3.hpp │ │ ├── matrix_double2x3_precision.hpp │ │ ├── matrix_double2x4.hpp │ │ ├── matrix_double2x4_precision.hpp │ │ ├── matrix_double3x2.hpp │ │ ├── matrix_double3x2_precision.hpp │ │ ├── matrix_double3x3.hpp │ │ ├── matrix_double3x3_precision.hpp │ │ ├── matrix_double3x4.hpp │ │ ├── matrix_double3x4_precision.hpp │ │ ├── matrix_double4x2.hpp │ │ ├── matrix_double4x2_precision.hpp │ │ ├── matrix_double4x3.hpp │ │ ├── matrix_double4x3_precision.hpp │ │ ├── matrix_double4x4.hpp │ │ ├── matrix_double4x4_precision.hpp │ │ ├── matrix_float2x2.hpp │ │ ├── matrix_float2x2_precision.hpp │ │ ├── matrix_float2x3.hpp │ │ ├── matrix_float2x3_precision.hpp │ │ ├── matrix_float2x4.hpp │ │ ├── matrix_float2x4_precision.hpp │ │ ├── matrix_float3x2.hpp │ │ ├── matrix_float3x2_precision.hpp │ │ ├── matrix_float3x3.hpp │ │ ├── matrix_float3x3_precision.hpp │ │ ├── matrix_float3x4.hpp │ │ ├── matrix_float3x4_precision.hpp │ │ ├── matrix_float4x2.hpp │ │ ├── matrix_float4x2_precision.hpp │ │ ├── matrix_float4x3.hpp │ │ ├── matrix_float4x3_precision.hpp │ │ ├── matrix_float4x4.hpp │ │ ├── matrix_float4x4_precision.hpp │ │ ├── matrix_projection.hpp │ │ ├── matrix_projection.inl │ │ ├── matrix_relational.hpp │ │ ├── matrix_relational.inl │ │ ├── matrix_transform.hpp │ │ ├── matrix_transform.inl │ │ ├── quaternion_common.hpp │ │ ├── quaternion_common.inl │ │ ├── quaternion_common_simd.inl │ │ ├── quaternion_double.hpp │ │ ├── quaternion_double_precision.hpp │ │ ├── quaternion_exponential.hpp │ │ ├── quaternion_exponential.inl │ │ ├── quaternion_float.hpp │ │ ├── quaternion_float_precision.hpp │ │ ├── quaternion_geometric.hpp │ │ ├── quaternion_geometric.inl │ │ ├── quaternion_relational.hpp │ │ ├── quaternion_relational.inl │ │ ├── quaternion_transform.hpp │ │ ├── quaternion_transform.inl │ │ ├── quaternion_trigonometric.hpp │ │ ├── quaternion_trigonometric.inl │ │ ├── scalar_common.hpp │ │ ├── scalar_common.inl │ │ ├── scalar_constants.hpp │ │ ├── scalar_constants.inl │ │ ├── scalar_int_sized.hpp │ │ ├── scalar_relational.hpp │ │ ├── scalar_relational.inl │ │ ├── scalar_uint_sized.hpp │ │ ├── scalar_ulp.hpp │ │ ├── scalar_ulp.inl │ │ ├── vector_bool1.hpp │ │ ├── vector_bool1_precision.hpp │ │ ├── vector_bool2.hpp │ │ ├── vector_bool2_precision.hpp │ │ ├── vector_bool3.hpp │ │ ├── vector_bool3_precision.hpp │ │ ├── vector_bool4.hpp │ │ ├── vector_bool4_precision.hpp │ │ ├── vector_common.hpp │ │ ├── vector_common.inl │ │ ├── vector_double1.hpp │ │ ├── vector_double1_precision.hpp │ │ ├── vector_double2.hpp │ │ ├── vector_double2_precision.hpp │ │ ├── vector_double3.hpp │ │ ├── vector_double3_precision.hpp │ │ ├── vector_double4.hpp │ │ ├── vector_double4_precision.hpp │ │ ├── vector_float1.hpp │ │ ├── vector_float1_precision.hpp │ │ ├── vector_float2.hpp │ │ ├── vector_float2_precision.hpp │ │ ├── vector_float3.hpp │ │ ├── vector_float3_precision.hpp │ │ ├── vector_float4.hpp │ │ ├── vector_float4_precision.hpp │ │ ├── vector_int1.hpp │ │ ├── vector_int1_precision.hpp │ │ ├── vector_int2.hpp │ │ ├── vector_int2_precision.hpp │ │ ├── vector_int3.hpp │ │ ├── vector_int3_precision.hpp │ │ ├── vector_int4.hpp │ │ ├── vector_int4_precision.hpp │ │ ├── vector_relational.hpp │ │ ├── vector_relational.inl │ │ ├── vector_uint1.hpp │ │ ├── vector_uint1_precision.hpp │ │ ├── vector_uint2.hpp │ │ ├── vector_uint2_precision.hpp │ │ ├── vector_uint3.hpp │ │ ├── vector_uint3_precision.hpp │ │ ├── vector_uint4.hpp │ │ ├── vector_uint4_precision.hpp │ │ ├── vector_ulp.hpp │ │ └── vector_ulp.inl │ │ ├── fwd.hpp │ │ ├── geometric.hpp │ │ ├── glm.hpp │ │ ├── gtc │ │ ├── bitfield.hpp │ │ ├── bitfield.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── constants.hpp │ │ ├── constants.inl │ │ ├── epsilon.hpp │ │ ├── epsilon.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── matrix_access.hpp │ │ ├── matrix_access.inl │ │ ├── matrix_integer.hpp │ │ ├── matrix_inverse.hpp │ │ ├── matrix_inverse.inl │ │ ├── matrix_transform.hpp │ │ ├── matrix_transform.inl │ │ ├── noise.hpp │ │ ├── noise.inl │ │ ├── packing.hpp │ │ ├── packing.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── quaternion_simd.inl │ │ ├── random.hpp │ │ ├── random.inl │ │ ├── reciprocal.hpp │ │ ├── reciprocal.inl │ │ ├── round.hpp │ │ ├── round.inl │ │ ├── type_aligned.hpp │ │ ├── type_precision.hpp │ │ ├── type_precision.inl │ │ ├── type_ptr.hpp │ │ ├── type_ptr.inl │ │ ├── ulp.hpp │ │ ├── ulp.inl │ │ └── vec1.hpp │ │ ├── gtx │ │ ├── associated_min_max.hpp │ │ ├── associated_min_max.inl │ │ ├── bit.hpp │ │ ├── bit.inl │ │ ├── closest_point.hpp │ │ ├── closest_point.inl │ │ ├── color_encoding.hpp │ │ ├── color_encoding.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── color_space_YCoCg.hpp │ │ ├── color_space_YCoCg.inl │ │ ├── common.hpp │ │ ├── common.inl │ │ ├── compatibility.hpp │ │ ├── compatibility.inl │ │ ├── component_wise.hpp │ │ ├── component_wise.inl │ │ ├── dual_quaternion.hpp │ │ ├── dual_quaternion.inl │ │ ├── easing.hpp │ │ ├── easing.inl │ │ ├── euler_angles.hpp │ │ ├── euler_angles.inl │ │ ├── extend.hpp │ │ ├── extend.inl │ │ ├── extended_min_max.hpp │ │ ├── extended_min_max.inl │ │ ├── exterior_product.hpp │ │ ├── exterior_product.inl │ │ ├── fast_exponential.hpp │ │ ├── fast_exponential.inl │ │ ├── fast_square_root.hpp │ │ ├── fast_square_root.inl │ │ ├── fast_trigonometry.hpp │ │ ├── fast_trigonometry.inl │ │ ├── float_notmalize.inl │ │ ├── functions.hpp │ │ ├── functions.inl │ │ ├── gradient_paint.hpp │ │ ├── gradient_paint.inl │ │ ├── handed_coordinate_space.hpp │ │ ├── handed_coordinate_space.inl │ │ ├── hash.hpp │ │ ├── hash.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── intersect.hpp │ │ ├── intersect.inl │ │ ├── io.hpp │ │ ├── io.inl │ │ ├── log_base.hpp │ │ ├── log_base.inl │ │ ├── matrix_cross_product.hpp │ │ ├── matrix_cross_product.inl │ │ ├── matrix_decompose.hpp │ │ ├── matrix_decompose.inl │ │ ├── matrix_factorisation.hpp │ │ ├── matrix_factorisation.inl │ │ ├── matrix_interpolation.hpp │ │ ├── matrix_interpolation.inl │ │ ├── matrix_major_storage.hpp │ │ ├── matrix_major_storage.inl │ │ ├── matrix_operation.hpp │ │ ├── matrix_operation.inl │ │ ├── matrix_query.hpp │ │ ├── matrix_query.inl │ │ ├── matrix_transform_2d.hpp │ │ ├── matrix_transform_2d.inl │ │ ├── mixed_product.hpp │ │ ├── mixed_product.inl │ │ ├── norm.hpp │ │ ├── norm.inl │ │ ├── normal.hpp │ │ ├── normal.inl │ │ ├── normalize_dot.hpp │ │ ├── normalize_dot.inl │ │ ├── number_precision.hpp │ │ ├── number_precision.inl │ │ ├── optimum_pow.hpp │ │ ├── optimum_pow.inl │ │ ├── orthonormalize.hpp │ │ ├── orthonormalize.inl │ │ ├── perpendicular.hpp │ │ ├── perpendicular.inl │ │ ├── polar_coordinates.hpp │ │ ├── polar_coordinates.inl │ │ ├── projection.hpp │ │ ├── projection.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── range.hpp │ │ ├── raw_data.hpp │ │ ├── raw_data.inl │ │ ├── rotate_normalized_axis.hpp │ │ ├── rotate_normalized_axis.inl │ │ ├── rotate_vector.hpp │ │ ├── rotate_vector.inl │ │ ├── scalar_multiplication.hpp │ │ ├── scalar_relational.hpp │ │ ├── scalar_relational.inl │ │ ├── spline.hpp │ │ ├── spline.inl │ │ ├── std_based_type.hpp │ │ ├── std_based_type.inl │ │ ├── string_cast.hpp │ │ ├── string_cast.inl │ │ ├── texture.hpp │ │ ├── texture.inl │ │ ├── transform.hpp │ │ ├── transform.inl │ │ ├── transform2.hpp │ │ ├── transform2.inl │ │ ├── type_aligned.hpp │ │ ├── type_aligned.inl │ │ ├── type_trait.hpp │ │ ├── type_trait.inl │ │ ├── vec_swizzle.hpp │ │ ├── vector_angle.hpp │ │ ├── vector_angle.inl │ │ ├── vector_query.hpp │ │ ├── vector_query.inl │ │ ├── wrap.hpp │ │ └── wrap.inl │ │ ├── integer.hpp │ │ ├── mat2x2.hpp │ │ ├── mat2x3.hpp │ │ ├── mat2x4.hpp │ │ ├── mat3x2.hpp │ │ ├── mat3x3.hpp │ │ ├── mat3x4.hpp │ │ ├── mat4x2.hpp │ │ ├── mat4x3.hpp │ │ ├── mat4x4.hpp │ │ ├── matrix.hpp │ │ ├── packing.hpp │ │ ├── simd │ │ ├── common.h │ │ ├── exponential.h │ │ ├── geometric.h │ │ ├── integer.h │ │ ├── matrix.h │ │ ├── packing.h │ │ ├── platform.h │ │ ├── trigonometric.h │ │ └── vector_relational.h │ │ ├── trigonometric.hpp │ │ ├── vec2.hpp │ │ ├── vec3.hpp │ │ ├── vec4.hpp │ │ └── vector_relational.hpp ├── Vulkan │ ├── Readme.txt │ ├── bin │ │ ├── glslangValidator │ │ └── glslangValidator.exe │ ├── include │ │ └── vulkan │ │ │ ├── vk_icd.h │ │ │ ├── vk_layer.h │ │ │ ├── vk_platform.h │ │ │ ├── vk_sdk_platform.h │ │ │ ├── vulkan.h │ │ │ ├── vulkan.hpp │ │ │ ├── vulkan_android.h │ │ │ ├── vulkan_beta.h │ │ │ ├── vulkan_core.h │ │ │ ├── vulkan_directfb.h │ │ │ ├── vulkan_fuchsia.h │ │ │ ├── vulkan_ggp.h │ │ │ ├── vulkan_ios.h │ │ │ ├── vulkan_macos.h │ │ │ ├── vulkan_metal.h │ │ │ ├── vulkan_vi.h │ │ │ ├── vulkan_wayland.h │ │ │ ├── vulkan_win32.h │ │ │ ├── vulkan_xcb.h │ │ │ ├── vulkan_xlib.h │ │ │ └── vulkan_xlib_xrandr.h │ └── lib │ │ ├── libvulkan.so │ │ ├── libvulkan.so.1 │ │ ├── libvulkan.so.1.2.154 │ │ └── vulkan-1.lib ├── json-nlohmann │ ├── LICENSE.MIT │ ├── Readme.txt │ └── include │ │ └── nlohmann │ │ ├── adl_serializer.hpp │ │ ├── byte_container_with_subtype.hpp │ │ ├── detail │ │ ├── abi_macros.hpp │ │ ├── conversions │ │ │ ├── from_json.hpp │ │ │ ├── to_chars.hpp │ │ │ └── to_json.hpp │ │ ├── exceptions.hpp │ │ ├── hash.hpp │ │ ├── input │ │ │ ├── binary_reader.hpp │ │ │ ├── input_adapters.hpp │ │ │ ├── json_sax.hpp │ │ │ ├── lexer.hpp │ │ │ ├── parser.hpp │ │ │ └── position_t.hpp │ │ ├── iterators │ │ │ ├── internal_iterator.hpp │ │ │ ├── iter_impl.hpp │ │ │ ├── iteration_proxy.hpp │ │ │ ├── iterator_traits.hpp │ │ │ ├── json_reverse_iterator.hpp │ │ │ └── primitive_iterator.hpp │ │ ├── json_custom_base_class.hpp │ │ ├── json_pointer.hpp │ │ ├── json_ref.hpp │ │ ├── macro_scope.hpp │ │ ├── macro_unscope.hpp │ │ ├── meta │ │ │ ├── call_std │ │ │ │ ├── begin.hpp │ │ │ │ └── end.hpp │ │ │ ├── cpp_future.hpp │ │ │ ├── detected.hpp │ │ │ ├── identity_tag.hpp │ │ │ ├── is_sax.hpp │ │ │ ├── std_fs.hpp │ │ │ ├── type_traits.hpp │ │ │ └── void_t.hpp │ │ ├── output │ │ │ ├── binary_writer.hpp │ │ │ ├── output_adapters.hpp │ │ │ └── serializer.hpp │ │ ├── string_concat.hpp │ │ ├── string_escape.hpp │ │ ├── string_utils.hpp │ │ └── value_t.hpp │ │ ├── json.hpp │ │ ├── json_fwd.hpp │ │ ├── ordered_map.hpp │ │ └── thirdparty │ │ └── hedley │ │ ├── hedley.hpp │ │ └── hedley_undef.hpp └── stb │ ├── Readme.txt │ ├── stb_image.h │ └── update-from-repo.bat ├── CMakeLists.txt ├── CMakeModules ├── CADRMacros.cmake ├── FindBoost.cmake ├── FindOpenGL.cmake ├── FindSDL2.cmake ├── FindSDL3.cmake ├── FindVulkan.cmake ├── FindWayland.cmake ├── Findglfw3.cmake ├── Findglm.cmake └── Findnlohmann_json.cmake ├── LICENSE ├── README.md ├── examples ├── CMakeLists.txt ├── HelloQtWindow │ ├── CMakeLists.txt │ ├── VulkanWindow.cpp │ ├── VulkanWindow.h │ ├── main.cpp │ ├── shader.frag │ └── shader.vert ├── OpenGLInteroperability │ ├── CMakeLists.txt │ ├── main.cpp │ ├── merge.frag │ ├── merge.vert │ ├── twoTriangles.frag │ └── twoTriangles.vert ├── RenderingPerformance │ ├── CMakeLists.txt │ ├── Tests.cpp │ ├── Tests.h │ ├── VulkanWindow.cmake │ ├── VulkanWindow.cpp │ ├── VulkanWindow.h │ ├── main.cpp │ ├── shader-performance.frag │ ├── shader-picking.frag │ ├── shader.frag │ └── shader.vert ├── VulkanAttributesAndUniforms │ ├── CMakeLists.txt │ ├── main.cpp │ ├── shader.frag │ └── shader.vert ├── VulkanComputeShader │ ├── CMakeLists.txt │ ├── FindVulkan.cmake │ ├── main.cpp │ ├── shader.comp │ └── text-cz │ │ └── make-zip.sh ├── VulkanInfo │ ├── CMakeLists.txt │ └── main.cpp └── gltfReader │ ├── CMakeLists.txt │ ├── PipelineLibrary.cpp │ ├── PipelineLibrary.h │ ├── StbImageImplementation.cpp │ ├── VulkanWindow.cmake │ ├── VulkanWindow.cpp │ ├── VulkanWindow.h │ ├── main.cpp │ └── shaders │ ├── baseColorUberShader.frag │ ├── baseColorUberShader.vert │ ├── coordinates.vert │ ├── phongUberShader.frag │ ├── phongUberShader.vert │ └── unspecifiedMaterial.frag ├── src ├── CMakeLists.txt ├── CadPL │ ├── CMakeLists.txt │ ├── PipelineLibrary.cpp │ ├── PipelineLibrary.h │ ├── PipelineSceneGraph.cpp │ ├── PipelineSceneGraph.h │ ├── ShaderGenerator.cpp │ ├── ShaderGenerator.h │ ├── ShaderLibrary.cpp │ ├── ShaderLibrary.h │ ├── UberShader.frag │ ├── UberShader.geom │ ├── UberShader.vert │ ├── UberShaderInterface.glsl │ └── UberShaderReadFuncs.glsl └── CadR │ ├── BoundingBox.h │ ├── BoundingSphere.h │ ├── CADRConfig.cmake.in │ ├── CMakeLists.txt │ ├── CallbackList.h │ ├── CircularAllocationMemory.h │ ├── DataAllocation.cpp │ ├── DataAllocation.h │ ├── DataMemory.cpp │ ├── DataMemory.h │ ├── DataStorage.cpp │ ├── DataStorage.h │ ├── Drawable.cpp │ ├── Drawable.h │ ├── Exceptions.h │ ├── FrameInfo.h │ ├── Geometry.cpp │ ├── Geometry.h │ ├── HandleTable.cpp │ ├── HandleTable.h │ ├── ImageAllocation.cpp │ ├── ImageAllocation.h │ ├── ImageMemory.cpp │ ├── ImageMemory.h │ ├── ImageStorage.cpp │ ├── ImageStorage.h │ ├── ParentChildList.h │ ├── Pipeline.cpp │ ├── Pipeline.h │ ├── PrimitiveSet.cpp │ ├── PrimitiveSet.h │ ├── RenderPass.cpp │ ├── RenderPass.h │ ├── Renderer.cpp │ ├── Renderer.h │ ├── Sampler.cpp │ ├── Sampler.h │ ├── StagingBuffer.cpp │ ├── StagingBuffer.h │ ├── StagingData.cpp │ ├── StagingData.h │ ├── StagingManager.cpp │ ├── StagingManager.h │ ├── StagingMemory.cpp │ ├── StagingMemory.h │ ├── StateSet.cpp │ ├── StateSet.h │ ├── Texture.cpp │ ├── Texture.h │ ├── TransferResources.h │ ├── VulkanDevice.cpp │ ├── VulkanDevice.h │ ├── VulkanInstance.cpp │ ├── VulkanInstance.h │ ├── VulkanLibrary.cpp │ ├── VulkanLibrary.h │ └── shaders │ └── processDrawables.comp └── tests ├── CMakeLists.txt ├── DataAllocationTest.cpp ├── ParentChildTest.cpp └── VulkanDeviceAndInstanceTest.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/.gitignore -------------------------------------------------------------------------------- /3rdParty/Boost/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/Readme.txt -------------------------------------------------------------------------------- /3rdParty/Boost/boost/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/assert.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/borland.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/borland.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/clang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/clang.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/clang_version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/clang_version.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/codegear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/codegear.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/comeau.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/comeau.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/common_edg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/common_edg.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/compaq_cxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/compaq_cxx.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/cray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/cray.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/diab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/diab.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/digitalmars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/digitalmars.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/gcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/gcc.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/gcc_xml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/gcc_xml.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/greenhills.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/greenhills.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/hp_acc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/hp_acc.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/intel.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/kai.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/kai.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/metrowerks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/metrowerks.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/mpw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/mpw.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/nvcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/nvcc.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/pathscale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/pathscale.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/pgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/pgi.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/sgi_mipspro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/sgi_mipspro.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/sunpro_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/sunpro_cc.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/vacpp.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/visualc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/visualc.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/xlcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/xlcpp.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/compiler/xlcpp_zos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/compiler/xlcpp_zos.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/detail/cxx_composite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/detail/cxx_composite.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/detail/posix_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/detail/posix_features.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/detail/select_compiler_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/detail/select_compiler_config.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/detail/select_platform_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/detail/select_platform_config.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/detail/select_stdlib_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/detail/select_stdlib_config.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/detail/suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/detail/suffix.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/helper_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/helper_macros.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/platform/aix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/platform/aix.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/platform/amigaos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/platform/amigaos.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/platform/beos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/platform/beos.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/platform/bsd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/platform/bsd.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/platform/cloudabi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/platform/cloudabi.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/platform/cray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/platform/cray.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/platform/cygwin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/platform/cygwin.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/platform/haiku.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/platform/haiku.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/platform/hpux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/platform/hpux.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/platform/irix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/platform/irix.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/platform/linux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/platform/linux.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/platform/macos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/platform/macos.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/platform/qnxnto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/platform/qnxnto.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/platform/solaris.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/platform/solaris.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/platform/symbian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/platform/symbian.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/platform/vms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/platform/vms.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/platform/vxworks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/platform/vxworks.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/platform/wasm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/platform/wasm.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/platform/win32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/platform/win32.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/platform/zos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/platform/zos.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/pragma_message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/pragma_message.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/stdlib/dinkumware.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/stdlib/dinkumware.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/stdlib/libcomo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/stdlib/libcomo.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/stdlib/libcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/stdlib/libcpp.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/stdlib/libstdcpp3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/stdlib/libstdcpp3.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/stdlib/modena.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/stdlib/modena.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/stdlib/msl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/stdlib/msl.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/stdlib/roguewave.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/stdlib/roguewave.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/stdlib/sgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/stdlib/sgi.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/stdlib/stlport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/stdlib/stlport.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/stdlib/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/stdlib/vacpp.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/stdlib/xlcpp_zos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/stdlib/xlcpp_zos.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/config/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/config/user.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/cstdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/cstdint.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/any_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/any_hook.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/avl_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/avl_set.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/avl_set_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/avl_set_hook.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/avltree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/avltree.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/avltree_algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/avltree_algorithms.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/bs_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/bs_set.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/bs_set_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/bs_set_hook.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/bstree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/bstree.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/bstree_algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/bstree_algorithms.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/circular_list_algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/circular_list_algorithms.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/circular_slist_algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/circular_slist_algorithms.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/derivation_value_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/derivation_value_traits.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/algo_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/algo_type.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/algorithm.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/any_node_and_algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/any_node_and_algorithms.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/array_initializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/array_initializer.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/assert.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/avltree_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/avltree_node.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/bstree_algorithms_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/bstree_algorithms_base.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/common_slist_algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/common_slist_algorithms.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/config_begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/config_begin.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/config_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/config_end.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/default_header_holder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/default_header_holder.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/ebo_functor_holder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/ebo_functor_holder.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/empty_node_checker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/empty_node_checker.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/equal_to_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/equal_to_value.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/exception_disposer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/exception_disposer.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/function_detector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/function_detector.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/generic_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/generic_hook.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/get_value_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/get_value_traits.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/has_member_function_callable_with.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/has_member_function_callable_with.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/hash.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/hash_combine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/hash_combine.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/hash_integral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/hash_integral.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/hash_mix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/hash_mix.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/hashtable_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/hashtable_node.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/hook_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/hook_traits.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/iiterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/iiterator.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/is_stateful_value_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/is_stateful_value_traits.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/iterator.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/key_nodeptr_comp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/key_nodeptr_comp.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/list_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/list_iterator.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/list_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/list_node.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/math.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/minimal_less_equal_header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/minimal_less_equal_header.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/minimal_pair_header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/minimal_pair_header.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/mpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/mpl.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/node_cloner_disposer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/node_cloner_disposer.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/node_holder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/node_holder.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/node_to_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/node_to_value.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/parent_from_member.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/parent_from_member.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/rbtree_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/rbtree_node.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/reverse_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/reverse_iterator.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/simple_disposers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/simple_disposers.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/size_holder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/size_holder.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/slist_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/slist_iterator.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/slist_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/slist_node.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/std_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/std_fwd.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/transform_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/transform_iterator.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/tree_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/tree_iterator.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/tree_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/tree_node.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/tree_value_compare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/tree_value_compare.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/twin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/twin.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/uncast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/uncast.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/value_functors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/value_functors.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/detail/workaround.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/hashtable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/hashtable.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/intrusive_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/intrusive_fwd.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/linear_slist_algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/linear_slist_algorithms.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/link_mode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/link_mode.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/list.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/list_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/list_hook.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/member_value_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/member_value_traits.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/options.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/pack_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/pack_options.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/parent_from_member.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/parent_from_member.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/pointer_plus_bits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/pointer_plus_bits.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/pointer_rebind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/pointer_rebind.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/pointer_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/pointer_traits.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/priority_compare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/priority_compare.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/rbtree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/rbtree.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/rbtree_algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/rbtree_algorithms.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/set.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/set_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/set_hook.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/sg_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/sg_set.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/sgtree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/sgtree.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/sgtree_algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/sgtree_algorithms.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/slist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/slist.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/slist_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/slist_hook.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/splay_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/splay_set.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/splaytree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/splaytree.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/splaytree_algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/splaytree_algorithms.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/treap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/treap.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/treap_algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/treap_algorithms.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/treap_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/treap_set.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/trivial_value_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/trivial_value_traits.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/unordered_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/unordered_set.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/intrusive/unordered_set_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/intrusive/unordered_set_hook.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/move/adl_move_swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/move/adl_move_swap.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/move/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/move/core.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/move/detail/addressof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/move/detail/addressof.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/move/detail/config_begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/move/detail/config_begin.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/move/detail/config_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/move/detail/config_end.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/move/detail/force_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/move/detail/force_ptr.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/move/detail/iterator_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/move/detail/iterator_traits.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/move/detail/launder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/move/detail/launder.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/move/detail/meta_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/move/detail/meta_utils.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/move/detail/meta_utils_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/move/detail/meta_utils_core.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/move/detail/placement_new.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/move/detail/placement_new.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/move/detail/pointer_element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/move/detail/pointer_element.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/move/detail/reverse_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/move/detail/reverse_iterator.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/move/detail/std_ns_begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/move/detail/std_ns_begin.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/move/detail/std_ns_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/move/detail/std_ns_end.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/move/detail/to_raw_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/move/detail/to_raw_pointer.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/move/detail/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/move/detail/type_traits.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/move/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/move/detail/workaround.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/move/utility_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/move/utility_core.hpp -------------------------------------------------------------------------------- /3rdParty/Boost/boost/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Boost/boost/version.hpp -------------------------------------------------------------------------------- /3rdParty/GL/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GL/GL/glext.h -------------------------------------------------------------------------------- /3rdParty/GL/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GL/KHR/khrplatform.h -------------------------------------------------------------------------------- /3rdParty/GL/Readme.txt: -------------------------------------------------------------------------------- 1 | Downloaded from https://github.com/KhronosGroup/OpenGL-Registry on 2018-12-28. -------------------------------------------------------------------------------- /3rdParty/GLM/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/Readme.txt -------------------------------------------------------------------------------- /3rdParty/GLM/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/CMakeLists.txt -------------------------------------------------------------------------------- /3rdParty/GLM/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/common.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/_features.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/compute_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/compute_common.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/compute_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/compute_vector_relational.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/func_common.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/func_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/func_common_simd.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/func_exponential_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/func_exponential_simd.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/func_geometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/func_geometric_simd.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/func_integer_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/func_integer_simd.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/func_matrix_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/func_matrix_simd.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/func_packing_simd.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/func_vector_relational_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/func_vector_relational_simd.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/glm.cpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/qualifier.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/setup.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_half.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_mat4x4_simd.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_quat.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_quat.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_quat_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_quat_simd.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/detail/type_vec4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/detail/type_vec4_simd.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/exponential.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_clip_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_clip_space.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_clip_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_clip_space.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_common.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_common.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_double2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_double2x2.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_double2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_double2x2_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_double2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_double2x3.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_double2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_double2x3_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_double2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_double2x4.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_double2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_double2x4_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_double3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_double3x2.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_double3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_double3x2_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_double3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_double3x3.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_double3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_double3x3_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_double3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_double3x4.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_double3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_double3x4_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_double4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_double4x2.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_double4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_double4x2_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_double4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_double4x3.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_double4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_double4x3_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_double4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_double4x4.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_double4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_double4x4_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_float2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_float2x2.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_float2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_float2x2_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_float2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_float2x3.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_float2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_float2x3_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_float2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_float2x4.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_float2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_float2x4_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_float3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_float3x2.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_float3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_float3x2_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_float3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_float3x3.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_float3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_float3x3_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_float3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_float3x4.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_float3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_float3x4_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_float4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_float4x2.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_float4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_float4x2_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_float4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_float4x3.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_float4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_float4x3_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_float4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_float4x4.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_float4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_float4x4_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_projection.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_projection.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_relational.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_relational.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_transform.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/matrix_transform.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/quaternion_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/quaternion_common.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/quaternion_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/quaternion_common.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/quaternion_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/quaternion_common_simd.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/quaternion_double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/quaternion_double.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/quaternion_double_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/quaternion_double_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/quaternion_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/quaternion_exponential.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/quaternion_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/quaternion_exponential.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/quaternion_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/quaternion_float.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/quaternion_float_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/quaternion_float_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/quaternion_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/quaternion_geometric.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/quaternion_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/quaternion_geometric.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/quaternion_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/quaternion_relational.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/quaternion_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/quaternion_relational.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/quaternion_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/quaternion_transform.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/quaternion_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/quaternion_transform.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/quaternion_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/quaternion_trigonometric.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/quaternion_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/quaternion_trigonometric.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/scalar_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/scalar_common.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/scalar_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/scalar_common.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/scalar_constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/scalar_constants.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/scalar_constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/scalar_constants.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/scalar_int_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/scalar_int_sized.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/scalar_relational.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/scalar_relational.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/scalar_uint_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/scalar_uint_sized.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/scalar_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/scalar_ulp.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/scalar_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/scalar_ulp.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_bool1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_bool1.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_bool1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_bool1_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_bool2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_bool2.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_bool2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_bool2_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_bool3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_bool3.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_bool3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_bool3_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_bool4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_bool4.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_bool4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_bool4_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_common.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_common.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_double1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_double1.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_double1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_double1_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_double2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_double2.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_double2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_double2_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_double3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_double3.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_double3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_double3_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_double4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_double4.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_double4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_double4_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_float1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_float1.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_float1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_float1_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_float2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_float2.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_float2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_float2_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_float3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_float3.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_float3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_float3_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_float4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_float4.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_float4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_float4_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_int1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_int1.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_int1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_int1_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_int2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_int2.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_int2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_int2_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_int3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_int3.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_int3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_int3_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_int4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_int4.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_int4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_int4_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_relational.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_relational.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_uint1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_uint1.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_uint1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_uint1_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_uint2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_uint2.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_uint2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_uint2_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_uint3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_uint3.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_uint3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_uint3_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_uint4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_uint4.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_uint4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_uint4_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_ulp.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/ext/vector_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/ext/vector_ulp.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/fwd.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/geometric.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/glm.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/constants.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/integer.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/noise.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/packing.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/random.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/random.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/round.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/round.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_ulp 2 | /// 3 | 4 | -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/bit.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/color_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/color_encoding.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/color_encoding.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/common.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/common.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/easing.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/extend.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/extended_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/extended_min_max.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/extended_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/extended_min_max.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/exterior_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/exterior_product.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/exterior_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/exterior_product.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/float_notmalize.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/functions.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/hash.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/integer.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/io.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/io.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/matrix_factorisation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/matrix_factorisation.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/matrix_factorisation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/matrix_factorisation.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/norm.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/normal.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/projection.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/range.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/scalar_multiplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/scalar_multiplication.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/spline.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/texture.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/transform.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /3rdParty/GLM/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/integer.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/mat2x2.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/mat2x3.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/mat2x4.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/mat3x2.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/mat3x3.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/mat3x4.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/mat4x2.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/mat4x3.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/mat4x4.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/matrix.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/packing.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/simd/common.h -------------------------------------------------------------------------------- /3rdParty/GLM/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/simd/exponential.h -------------------------------------------------------------------------------- /3rdParty/GLM/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/simd/geometric.h -------------------------------------------------------------------------------- /3rdParty/GLM/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/simd/integer.h -------------------------------------------------------------------------------- /3rdParty/GLM/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/simd/matrix.h -------------------------------------------------------------------------------- /3rdParty/GLM/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/simd/packing.h -------------------------------------------------------------------------------- /3rdParty/GLM/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/simd/platform.h -------------------------------------------------------------------------------- /3rdParty/GLM/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /3rdParty/GLM/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/simd/vector_relational.h -------------------------------------------------------------------------------- /3rdParty/GLM/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/trigonometric.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/vec2.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/vec3.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/vec4.hpp -------------------------------------------------------------------------------- /3rdParty/GLM/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/GLM/glm/vector_relational.hpp -------------------------------------------------------------------------------- /3rdParty/Vulkan/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/Readme.txt -------------------------------------------------------------------------------- /3rdParty/Vulkan/bin/glslangValidator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/bin/glslangValidator -------------------------------------------------------------------------------- /3rdParty/Vulkan/bin/glslangValidator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/bin/glslangValidator.exe -------------------------------------------------------------------------------- /3rdParty/Vulkan/include/vulkan/vk_icd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/include/vulkan/vk_icd.h -------------------------------------------------------------------------------- /3rdParty/Vulkan/include/vulkan/vk_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/include/vulkan/vk_layer.h -------------------------------------------------------------------------------- /3rdParty/Vulkan/include/vulkan/vk_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/include/vulkan/vk_platform.h -------------------------------------------------------------------------------- /3rdParty/Vulkan/include/vulkan/vk_sdk_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/include/vulkan/vk_sdk_platform.h -------------------------------------------------------------------------------- /3rdParty/Vulkan/include/vulkan/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/include/vulkan/vulkan.h -------------------------------------------------------------------------------- /3rdParty/Vulkan/include/vulkan/vulkan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/include/vulkan/vulkan.hpp -------------------------------------------------------------------------------- /3rdParty/Vulkan/include/vulkan/vulkan_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/include/vulkan/vulkan_android.h -------------------------------------------------------------------------------- /3rdParty/Vulkan/include/vulkan/vulkan_beta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/include/vulkan/vulkan_beta.h -------------------------------------------------------------------------------- /3rdParty/Vulkan/include/vulkan/vulkan_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/include/vulkan/vulkan_core.h -------------------------------------------------------------------------------- /3rdParty/Vulkan/include/vulkan/vulkan_directfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/include/vulkan/vulkan_directfb.h -------------------------------------------------------------------------------- /3rdParty/Vulkan/include/vulkan/vulkan_fuchsia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/include/vulkan/vulkan_fuchsia.h -------------------------------------------------------------------------------- /3rdParty/Vulkan/include/vulkan/vulkan_ggp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/include/vulkan/vulkan_ggp.h -------------------------------------------------------------------------------- /3rdParty/Vulkan/include/vulkan/vulkan_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/include/vulkan/vulkan_ios.h -------------------------------------------------------------------------------- /3rdParty/Vulkan/include/vulkan/vulkan_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/include/vulkan/vulkan_macos.h -------------------------------------------------------------------------------- /3rdParty/Vulkan/include/vulkan/vulkan_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/include/vulkan/vulkan_metal.h -------------------------------------------------------------------------------- /3rdParty/Vulkan/include/vulkan/vulkan_vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/include/vulkan/vulkan_vi.h -------------------------------------------------------------------------------- /3rdParty/Vulkan/include/vulkan/vulkan_wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/include/vulkan/vulkan_wayland.h -------------------------------------------------------------------------------- /3rdParty/Vulkan/include/vulkan/vulkan_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/include/vulkan/vulkan_win32.h -------------------------------------------------------------------------------- /3rdParty/Vulkan/include/vulkan/vulkan_xcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/include/vulkan/vulkan_xcb.h -------------------------------------------------------------------------------- /3rdParty/Vulkan/include/vulkan/vulkan_xlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/include/vulkan/vulkan_xlib.h -------------------------------------------------------------------------------- /3rdParty/Vulkan/include/vulkan/vulkan_xlib_xrandr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/include/vulkan/vulkan_xlib_xrandr.h -------------------------------------------------------------------------------- /3rdParty/Vulkan/lib/libvulkan.so: -------------------------------------------------------------------------------- 1 | libvulkan.so.1 -------------------------------------------------------------------------------- /3rdParty/Vulkan/lib/libvulkan.so.1: -------------------------------------------------------------------------------- 1 | libvulkan.so.1.2.154 -------------------------------------------------------------------------------- /3rdParty/Vulkan/lib/libvulkan.so.1.2.154: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/lib/libvulkan.so.1.2.154 -------------------------------------------------------------------------------- /3rdParty/Vulkan/lib/vulkan-1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/Vulkan/lib/vulkan-1.lib -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/LICENSE.MIT -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/Readme.txt -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/adl_serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/adl_serializer.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/byte_container_with_subtype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/byte_container_with_subtype.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/abi_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/abi_macros.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/conversions/from_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/conversions/from_json.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/conversions/to_chars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/conversions/to_chars.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/conversions/to_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/conversions/to_json.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/exceptions.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/hash.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/input/binary_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/input/binary_reader.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/input/input_adapters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/input/input_adapters.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/input/json_sax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/input/json_sax.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/input/lexer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/input/lexer.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/input/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/input/parser.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/input/position_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/input/position_t.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/iterators/internal_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/iterators/internal_iterator.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/iterators/iter_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/iterators/iter_impl.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/iterators/iteration_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/iterators/iteration_proxy.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/iterators/iterator_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/iterators/iterator_traits.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/iterators/json_reverse_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/iterators/json_reverse_iterator.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/iterators/primitive_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/iterators/primitive_iterator.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/json_custom_base_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/json_custom_base_class.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/json_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/json_pointer.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/json_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/json_ref.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/macro_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/macro_scope.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/macro_unscope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/macro_unscope.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/meta/call_std/begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/meta/call_std/begin.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/meta/call_std/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/meta/call_std/end.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/meta/cpp_future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/meta/cpp_future.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/meta/detected.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/meta/detected.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/meta/identity_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/meta/identity_tag.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/meta/is_sax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/meta/is_sax.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/meta/std_fs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/meta/std_fs.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/meta/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/meta/type_traits.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/meta/void_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/meta/void_t.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/output/binary_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/output/binary_writer.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/output/output_adapters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/output/output_adapters.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/output/serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/output/serializer.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/string_concat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/string_concat.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/string_escape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/string_escape.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/string_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/string_utils.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/detail/value_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/detail/value_t.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/json.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/json_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/json_fwd.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/ordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/ordered_map.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/thirdparty/hedley/hedley.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/thirdparty/hedley/hedley.hpp -------------------------------------------------------------------------------- /3rdParty/json-nlohmann/include/nlohmann/thirdparty/hedley/hedley_undef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/json-nlohmann/include/nlohmann/thirdparty/hedley/hedley_undef.hpp -------------------------------------------------------------------------------- /3rdParty/stb/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/stb/Readme.txt -------------------------------------------------------------------------------- /3rdParty/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/stb/stb_image.h -------------------------------------------------------------------------------- /3rdParty/stb/update-from-repo.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/3rdParty/stb/update-from-repo.bat -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeModules/CADRMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/CMakeModules/CADRMacros.cmake -------------------------------------------------------------------------------- /CMakeModules/FindBoost.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/CMakeModules/FindBoost.cmake -------------------------------------------------------------------------------- /CMakeModules/FindOpenGL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/CMakeModules/FindOpenGL.cmake -------------------------------------------------------------------------------- /CMakeModules/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/CMakeModules/FindSDL2.cmake -------------------------------------------------------------------------------- /CMakeModules/FindSDL3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/CMakeModules/FindSDL3.cmake -------------------------------------------------------------------------------- /CMakeModules/FindVulkan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/CMakeModules/FindVulkan.cmake -------------------------------------------------------------------------------- /CMakeModules/FindWayland.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/CMakeModules/FindWayland.cmake -------------------------------------------------------------------------------- /CMakeModules/Findglfw3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/CMakeModules/Findglfw3.cmake -------------------------------------------------------------------------------- /CMakeModules/Findglm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/CMakeModules/Findglm.cmake -------------------------------------------------------------------------------- /CMakeModules/Findnlohmann_json.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/CMakeModules/Findnlohmann_json.cmake -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/README.md -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/HelloQtWindow/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/HelloQtWindow/CMakeLists.txt -------------------------------------------------------------------------------- /examples/HelloQtWindow/VulkanWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/HelloQtWindow/VulkanWindow.cpp -------------------------------------------------------------------------------- /examples/HelloQtWindow/VulkanWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/HelloQtWindow/VulkanWindow.h -------------------------------------------------------------------------------- /examples/HelloQtWindow/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/HelloQtWindow/main.cpp -------------------------------------------------------------------------------- /examples/HelloQtWindow/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/HelloQtWindow/shader.frag -------------------------------------------------------------------------------- /examples/HelloQtWindow/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/HelloQtWindow/shader.vert -------------------------------------------------------------------------------- /examples/OpenGLInteroperability/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/OpenGLInteroperability/CMakeLists.txt -------------------------------------------------------------------------------- /examples/OpenGLInteroperability/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/OpenGLInteroperability/main.cpp -------------------------------------------------------------------------------- /examples/OpenGLInteroperability/merge.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/OpenGLInteroperability/merge.frag -------------------------------------------------------------------------------- /examples/OpenGLInteroperability/merge.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/OpenGLInteroperability/merge.vert -------------------------------------------------------------------------------- /examples/OpenGLInteroperability/twoTriangles.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/OpenGLInteroperability/twoTriangles.frag -------------------------------------------------------------------------------- /examples/OpenGLInteroperability/twoTriangles.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/OpenGLInteroperability/twoTriangles.vert -------------------------------------------------------------------------------- /examples/RenderingPerformance/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/RenderingPerformance/CMakeLists.txt -------------------------------------------------------------------------------- /examples/RenderingPerformance/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/RenderingPerformance/Tests.cpp -------------------------------------------------------------------------------- /examples/RenderingPerformance/Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/RenderingPerformance/Tests.h -------------------------------------------------------------------------------- /examples/RenderingPerformance/VulkanWindow.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/RenderingPerformance/VulkanWindow.cmake -------------------------------------------------------------------------------- /examples/RenderingPerformance/VulkanWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/RenderingPerformance/VulkanWindow.cpp -------------------------------------------------------------------------------- /examples/RenderingPerformance/VulkanWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/RenderingPerformance/VulkanWindow.h -------------------------------------------------------------------------------- /examples/RenderingPerformance/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/RenderingPerformance/main.cpp -------------------------------------------------------------------------------- /examples/RenderingPerformance/shader-performance.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/RenderingPerformance/shader-performance.frag -------------------------------------------------------------------------------- /examples/RenderingPerformance/shader-picking.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/RenderingPerformance/shader-picking.frag -------------------------------------------------------------------------------- /examples/RenderingPerformance/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/RenderingPerformance/shader.frag -------------------------------------------------------------------------------- /examples/RenderingPerformance/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/RenderingPerformance/shader.vert -------------------------------------------------------------------------------- /examples/VulkanAttributesAndUniforms/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/VulkanAttributesAndUniforms/CMakeLists.txt -------------------------------------------------------------------------------- /examples/VulkanAttributesAndUniforms/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/VulkanAttributesAndUniforms/main.cpp -------------------------------------------------------------------------------- /examples/VulkanAttributesAndUniforms/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/VulkanAttributesAndUniforms/shader.frag -------------------------------------------------------------------------------- /examples/VulkanAttributesAndUniforms/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/VulkanAttributesAndUniforms/shader.vert -------------------------------------------------------------------------------- /examples/VulkanComputeShader/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/VulkanComputeShader/CMakeLists.txt -------------------------------------------------------------------------------- /examples/VulkanComputeShader/FindVulkan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/VulkanComputeShader/FindVulkan.cmake -------------------------------------------------------------------------------- /examples/VulkanComputeShader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/VulkanComputeShader/main.cpp -------------------------------------------------------------------------------- /examples/VulkanComputeShader/shader.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/VulkanComputeShader/shader.comp -------------------------------------------------------------------------------- /examples/VulkanComputeShader/text-cz/make-zip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/VulkanComputeShader/text-cz/make-zip.sh -------------------------------------------------------------------------------- /examples/VulkanInfo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/VulkanInfo/CMakeLists.txt -------------------------------------------------------------------------------- /examples/VulkanInfo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/VulkanInfo/main.cpp -------------------------------------------------------------------------------- /examples/gltfReader/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/gltfReader/CMakeLists.txt -------------------------------------------------------------------------------- /examples/gltfReader/PipelineLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/gltfReader/PipelineLibrary.cpp -------------------------------------------------------------------------------- /examples/gltfReader/PipelineLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/gltfReader/PipelineLibrary.h -------------------------------------------------------------------------------- /examples/gltfReader/StbImageImplementation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/gltfReader/StbImageImplementation.cpp -------------------------------------------------------------------------------- /examples/gltfReader/VulkanWindow.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/gltfReader/VulkanWindow.cmake -------------------------------------------------------------------------------- /examples/gltfReader/VulkanWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/gltfReader/VulkanWindow.cpp -------------------------------------------------------------------------------- /examples/gltfReader/VulkanWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/gltfReader/VulkanWindow.h -------------------------------------------------------------------------------- /examples/gltfReader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/gltfReader/main.cpp -------------------------------------------------------------------------------- /examples/gltfReader/shaders/baseColorUberShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/gltfReader/shaders/baseColorUberShader.frag -------------------------------------------------------------------------------- /examples/gltfReader/shaders/baseColorUberShader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/gltfReader/shaders/baseColorUberShader.vert -------------------------------------------------------------------------------- /examples/gltfReader/shaders/coordinates.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/gltfReader/shaders/coordinates.vert -------------------------------------------------------------------------------- /examples/gltfReader/shaders/phongUberShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/gltfReader/shaders/phongUberShader.frag -------------------------------------------------------------------------------- /examples/gltfReader/shaders/phongUberShader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/gltfReader/shaders/phongUberShader.vert -------------------------------------------------------------------------------- /examples/gltfReader/shaders/unspecifiedMaterial.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/examples/gltfReader/shaders/unspecifiedMaterial.frag -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/CadPL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadPL/CMakeLists.txt -------------------------------------------------------------------------------- /src/CadPL/PipelineLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadPL/PipelineLibrary.cpp -------------------------------------------------------------------------------- /src/CadPL/PipelineLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadPL/PipelineLibrary.h -------------------------------------------------------------------------------- /src/CadPL/PipelineSceneGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadPL/PipelineSceneGraph.cpp -------------------------------------------------------------------------------- /src/CadPL/PipelineSceneGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadPL/PipelineSceneGraph.h -------------------------------------------------------------------------------- /src/CadPL/ShaderGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadPL/ShaderGenerator.cpp -------------------------------------------------------------------------------- /src/CadPL/ShaderGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadPL/ShaderGenerator.h -------------------------------------------------------------------------------- /src/CadPL/ShaderLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadPL/ShaderLibrary.cpp -------------------------------------------------------------------------------- /src/CadPL/ShaderLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadPL/ShaderLibrary.h -------------------------------------------------------------------------------- /src/CadPL/UberShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadPL/UberShader.frag -------------------------------------------------------------------------------- /src/CadPL/UberShader.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadPL/UberShader.geom -------------------------------------------------------------------------------- /src/CadPL/UberShader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadPL/UberShader.vert -------------------------------------------------------------------------------- /src/CadPL/UberShaderInterface.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadPL/UberShaderInterface.glsl -------------------------------------------------------------------------------- /src/CadPL/UberShaderReadFuncs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadPL/UberShaderReadFuncs.glsl -------------------------------------------------------------------------------- /src/CadR/BoundingBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/BoundingBox.h -------------------------------------------------------------------------------- /src/CadR/BoundingSphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/BoundingSphere.h -------------------------------------------------------------------------------- /src/CadR/CADRConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/CADRConfig.cmake.in -------------------------------------------------------------------------------- /src/CadR/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/CMakeLists.txt -------------------------------------------------------------------------------- /src/CadR/CallbackList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/CallbackList.h -------------------------------------------------------------------------------- /src/CadR/CircularAllocationMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/CircularAllocationMemory.h -------------------------------------------------------------------------------- /src/CadR/DataAllocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/DataAllocation.cpp -------------------------------------------------------------------------------- /src/CadR/DataAllocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/DataAllocation.h -------------------------------------------------------------------------------- /src/CadR/DataMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/DataMemory.cpp -------------------------------------------------------------------------------- /src/CadR/DataMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/DataMemory.h -------------------------------------------------------------------------------- /src/CadR/DataStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/DataStorage.cpp -------------------------------------------------------------------------------- /src/CadR/DataStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/DataStorage.h -------------------------------------------------------------------------------- /src/CadR/Drawable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/Drawable.cpp -------------------------------------------------------------------------------- /src/CadR/Drawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/Drawable.h -------------------------------------------------------------------------------- /src/CadR/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/Exceptions.h -------------------------------------------------------------------------------- /src/CadR/FrameInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/FrameInfo.h -------------------------------------------------------------------------------- /src/CadR/Geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/Geometry.cpp -------------------------------------------------------------------------------- /src/CadR/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/Geometry.h -------------------------------------------------------------------------------- /src/CadR/HandleTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/HandleTable.cpp -------------------------------------------------------------------------------- /src/CadR/HandleTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/HandleTable.h -------------------------------------------------------------------------------- /src/CadR/ImageAllocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/ImageAllocation.cpp -------------------------------------------------------------------------------- /src/CadR/ImageAllocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/ImageAllocation.h -------------------------------------------------------------------------------- /src/CadR/ImageMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/ImageMemory.cpp -------------------------------------------------------------------------------- /src/CadR/ImageMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/ImageMemory.h -------------------------------------------------------------------------------- /src/CadR/ImageStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/ImageStorage.cpp -------------------------------------------------------------------------------- /src/CadR/ImageStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/ImageStorage.h -------------------------------------------------------------------------------- /src/CadR/ParentChildList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/ParentChildList.h -------------------------------------------------------------------------------- /src/CadR/Pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/Pipeline.cpp -------------------------------------------------------------------------------- /src/CadR/Pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/Pipeline.h -------------------------------------------------------------------------------- /src/CadR/PrimitiveSet.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | using namespace CadR; 4 | -------------------------------------------------------------------------------- /src/CadR/PrimitiveSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/PrimitiveSet.h -------------------------------------------------------------------------------- /src/CadR/RenderPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/RenderPass.cpp -------------------------------------------------------------------------------- /src/CadR/RenderPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/RenderPass.h -------------------------------------------------------------------------------- /src/CadR/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/Renderer.cpp -------------------------------------------------------------------------------- /src/CadR/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/Renderer.h -------------------------------------------------------------------------------- /src/CadR/Sampler.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/CadR/Sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/Sampler.h -------------------------------------------------------------------------------- /src/CadR/StagingBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/StagingBuffer.cpp -------------------------------------------------------------------------------- /src/CadR/StagingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/StagingBuffer.h -------------------------------------------------------------------------------- /src/CadR/StagingData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/StagingData.cpp -------------------------------------------------------------------------------- /src/CadR/StagingData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/StagingData.h -------------------------------------------------------------------------------- /src/CadR/StagingManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/StagingManager.cpp -------------------------------------------------------------------------------- /src/CadR/StagingManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/StagingManager.h -------------------------------------------------------------------------------- /src/CadR/StagingMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/StagingMemory.cpp -------------------------------------------------------------------------------- /src/CadR/StagingMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/StagingMemory.h -------------------------------------------------------------------------------- /src/CadR/StateSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/StateSet.cpp -------------------------------------------------------------------------------- /src/CadR/StateSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/StateSet.h -------------------------------------------------------------------------------- /src/CadR/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/Texture.cpp -------------------------------------------------------------------------------- /src/CadR/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/Texture.h -------------------------------------------------------------------------------- /src/CadR/TransferResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/TransferResources.h -------------------------------------------------------------------------------- /src/CadR/VulkanDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/VulkanDevice.cpp -------------------------------------------------------------------------------- /src/CadR/VulkanDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/VulkanDevice.h -------------------------------------------------------------------------------- /src/CadR/VulkanInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/VulkanInstance.cpp -------------------------------------------------------------------------------- /src/CadR/VulkanInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/VulkanInstance.h -------------------------------------------------------------------------------- /src/CadR/VulkanLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/VulkanLibrary.cpp -------------------------------------------------------------------------------- /src/CadR/VulkanLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/VulkanLibrary.h -------------------------------------------------------------------------------- /src/CadR/shaders/processDrawables.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/src/CadR/shaders/processDrawables.comp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/DataAllocationTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/tests/DataAllocationTest.cpp -------------------------------------------------------------------------------- /tests/ParentChildTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/tests/ParentChildTest.cpp -------------------------------------------------------------------------------- /tests/VulkanDeviceAndInstanceTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rendering-FIT/CADR/HEAD/tests/VulkanDeviceAndInstanceTest.cpp --------------------------------------------------------------------------------