├── .gitignore ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── clang-format.txt ├── get_cpm.cmake ├── images ├── ss1.png ├── ss2.png ├── ss3.png ├── ss4.png ├── ss5.png └── ss6.png ├── include ├── GL │ ├── eglew.h │ ├── glew.h │ ├── glxew.h │ └── wglew.h ├── GLFW │ ├── glfw3.h │ └── glfw3native.h ├── boost │ ├── any.hpp │ ├── config.hpp │ ├── config │ │ ├── abi │ │ │ ├── borland_prefix.hpp │ │ │ ├── borland_suffix.hpp │ │ │ ├── msvc_prefix.hpp │ │ │ └── msvc_suffix.hpp │ │ ├── abi_prefix.hpp │ │ ├── abi_suffix.hpp │ │ ├── auto_link.hpp │ │ ├── compiler │ │ │ ├── borland.hpp │ │ │ ├── clang.hpp │ │ │ ├── codegear.hpp │ │ │ ├── comeau.hpp │ │ │ ├── common_edg.hpp │ │ │ ├── compaq_cxx.hpp │ │ │ ├── cray.hpp │ │ │ ├── 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 │ │ ├── no_tr1 │ │ │ ├── cmath.hpp │ │ │ ├── complex.hpp │ │ │ ├── functional.hpp │ │ │ ├── memory.hpp │ │ │ └── utility.hpp │ │ ├── platform │ │ │ ├── aix.hpp │ │ │ ├── amigaos.hpp │ │ │ ├── beos.hpp │ │ │ ├── bsd.hpp │ │ │ ├── cray.hpp │ │ │ ├── cygwin.hpp │ │ │ ├── hpux.hpp │ │ │ ├── irix.hpp │ │ │ ├── linux.hpp │ │ │ ├── macos.hpp │ │ │ ├── qnxnto.hpp │ │ │ ├── solaris.hpp │ │ │ ├── symbian.hpp │ │ │ ├── vms.hpp │ │ │ ├── vxworks.hpp │ │ │ └── win32.hpp │ │ ├── posix_features.hpp │ │ ├── requires_threads.hpp │ │ ├── select_compiler_config.hpp │ │ ├── select_platform_config.hpp │ │ ├── select_stdlib_config.hpp │ │ ├── stdlib │ │ │ ├── dinkumware.hpp │ │ │ ├── libcomo.hpp │ │ │ ├── libcpp.hpp │ │ │ ├── libstdcpp3.hpp │ │ │ ├── modena.hpp │ │ │ ├── msl.hpp │ │ │ ├── roguewave.hpp │ │ │ ├── sgi.hpp │ │ │ ├── stlport.hpp │ │ │ └── vacpp.hpp │ │ ├── suffix.hpp │ │ ├── user.hpp │ │ └── warning_disable.hpp │ ├── cstdint.hpp │ ├── current_function.hpp │ ├── detail │ │ └── workaround.hpp │ ├── exception │ │ ├── detail │ │ │ └── attribute_noreturn.hpp │ │ └── exception.hpp │ ├── license.txt │ ├── limits.hpp │ ├── locale │ │ ├── definitions.hpp │ │ ├── encoding_errors.hpp │ │ ├── encoding_utf.hpp │ │ └── utf.hpp │ ├── mpl │ │ ├── aux_ │ │ │ ├── adl_barrier.hpp │ │ │ ├── arity.hpp │ │ │ ├── config │ │ │ │ ├── adl.hpp │ │ │ │ ├── arrays.hpp │ │ │ │ ├── ctps.hpp │ │ │ │ ├── dtp.hpp │ │ │ │ ├── eti.hpp │ │ │ │ ├── gcc.hpp │ │ │ │ ├── integral.hpp │ │ │ │ ├── intel.hpp │ │ │ │ ├── lambda.hpp │ │ │ │ ├── msvc.hpp │ │ │ │ ├── nttp.hpp │ │ │ │ ├── overload_resolution.hpp │ │ │ │ ├── preprocessor.hpp │ │ │ │ ├── static_constant.hpp │ │ │ │ ├── ttp.hpp │ │ │ │ └── workaround.hpp │ │ │ ├── integral_wrapper.hpp │ │ │ ├── lambda_arity_param.hpp │ │ │ ├── lambda_support.hpp │ │ │ ├── na.hpp │ │ │ ├── na_fwd.hpp │ │ │ ├── na_spec.hpp │ │ │ ├── nttp_decl.hpp │ │ │ ├── preprocessor │ │ │ │ ├── def_params_tail.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── filter_params.hpp │ │ │ │ ├── params.hpp │ │ │ │ ├── sub.hpp │ │ │ │ └── tuple.hpp │ │ │ ├── static_cast.hpp │ │ │ ├── template_arity_fwd.hpp │ │ │ ├── value_wknd.hpp │ │ │ └── yes_no.hpp │ │ ├── bool.hpp │ │ ├── bool_fwd.hpp │ │ ├── eval_if.hpp │ │ ├── identity.hpp │ │ ├── if.hpp │ │ ├── int.hpp │ │ ├── int_fwd.hpp │ │ ├── integral_c.hpp │ │ ├── integral_c_fwd.hpp │ │ ├── integral_c_tag.hpp │ │ ├── lambda_fwd.hpp │ │ ├── limits │ │ │ └── arity.hpp │ │ └── void_fwd.hpp │ ├── preprocessor │ │ ├── arithmetic │ │ │ ├── add.hpp │ │ │ ├── dec.hpp │ │ │ ├── inc.hpp │ │ │ └── sub.hpp │ │ ├── array │ │ │ ├── data.hpp │ │ │ ├── elem.hpp │ │ │ └── size.hpp │ │ ├── cat.hpp │ │ ├── comma_if.hpp │ │ ├── config │ │ │ └── config.hpp │ │ ├── control │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── while.hpp │ │ │ │ ├── edg │ │ │ │ │ └── while.hpp │ │ │ │ ├── msvc │ │ │ │ │ └── while.hpp │ │ │ │ └── while.hpp │ │ │ ├── expr_iif.hpp │ │ │ ├── if.hpp │ │ │ ├── iif.hpp │ │ │ └── while.hpp │ │ ├── debug │ │ │ └── error.hpp │ │ ├── detail │ │ │ ├── auto_rec.hpp │ │ │ ├── check.hpp │ │ │ ├── dmc │ │ │ │ └── auto_rec.hpp │ │ │ └── is_binary.hpp │ │ ├── empty.hpp │ │ ├── enum_params.hpp │ │ ├── facilities │ │ │ ├── empty.hpp │ │ │ ├── identity.hpp │ │ │ └── overload.hpp │ │ ├── identity.hpp │ │ ├── inc.hpp │ │ ├── iterate.hpp │ │ ├── iteration │ │ │ ├── detail │ │ │ │ ├── bounds │ │ │ │ │ ├── lower1.hpp │ │ │ │ │ ├── lower2.hpp │ │ │ │ │ ├── lower3.hpp │ │ │ │ │ ├── lower4.hpp │ │ │ │ │ ├── lower5.hpp │ │ │ │ │ ├── upper1.hpp │ │ │ │ │ ├── upper2.hpp │ │ │ │ │ ├── upper3.hpp │ │ │ │ │ ├── upper4.hpp │ │ │ │ │ └── upper5.hpp │ │ │ │ ├── finish.hpp │ │ │ │ ├── iter │ │ │ │ │ ├── forward1.hpp │ │ │ │ │ ├── forward2.hpp │ │ │ │ │ ├── forward3.hpp │ │ │ │ │ ├── forward4.hpp │ │ │ │ │ ├── forward5.hpp │ │ │ │ │ ├── reverse1.hpp │ │ │ │ │ ├── reverse2.hpp │ │ │ │ │ ├── reverse3.hpp │ │ │ │ │ ├── reverse4.hpp │ │ │ │ │ └── reverse5.hpp │ │ │ │ ├── local.hpp │ │ │ │ ├── rlocal.hpp │ │ │ │ ├── self.hpp │ │ │ │ └── start.hpp │ │ │ ├── iterate.hpp │ │ │ ├── local.hpp │ │ │ └── self.hpp │ │ ├── list │ │ │ ├── adt.hpp │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── fold_left.hpp │ │ │ │ ├── edg │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ └── fold_right.hpp │ │ │ │ ├── fold_left.hpp │ │ │ │ └── fold_right.hpp │ │ │ ├── fold_left.hpp │ │ │ ├── fold_right.hpp │ │ │ ├── for_each_i.hpp │ │ │ └── reverse.hpp │ │ ├── logical │ │ │ ├── and.hpp │ │ │ ├── bitand.hpp │ │ │ ├── bool.hpp │ │ │ └── compl.hpp │ │ ├── punctuation │ │ │ ├── comma.hpp │ │ │ └── comma_if.hpp │ │ ├── repeat.hpp │ │ ├── repetition │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── for.hpp │ │ │ │ ├── edg │ │ │ │ │ └── for.hpp │ │ │ │ ├── for.hpp │ │ │ │ └── msvc │ │ │ │ │ └── for.hpp │ │ │ ├── enum_params.hpp │ │ │ ├── for.hpp │ │ │ └── repeat.hpp │ │ ├── slot │ │ │ ├── detail │ │ │ │ ├── counter.hpp │ │ │ │ ├── def.hpp │ │ │ │ ├── shared.hpp │ │ │ │ ├── slot1.hpp │ │ │ │ ├── slot2.hpp │ │ │ │ ├── slot3.hpp │ │ │ │ ├── slot4.hpp │ │ │ │ └── slot5.hpp │ │ │ └── slot.hpp │ │ ├── tuple │ │ │ ├── eat.hpp │ │ │ ├── elem.hpp │ │ │ ├── rem.hpp │ │ │ └── to_list.hpp │ │ └── variadic │ │ │ ├── elem.hpp │ │ │ └── size.hpp │ ├── static_assert.hpp │ ├── throw_exception.hpp │ ├── type_traits │ │ ├── add_pointer.hpp │ │ ├── add_reference.hpp │ │ ├── broken_compiler_spec.hpp │ │ ├── config.hpp │ │ ├── decay.hpp │ │ ├── detail │ │ │ ├── bool_trait_def.hpp │ │ │ ├── bool_trait_undef.hpp │ │ │ ├── cv_traits_impl.hpp │ │ │ ├── false_result.hpp │ │ │ ├── ice_and.hpp │ │ │ ├── ice_eq.hpp │ │ │ ├── ice_not.hpp │ │ │ ├── ice_or.hpp │ │ │ ├── is_function_ptr_helper.hpp │ │ │ ├── is_function_ptr_tester.hpp │ │ │ ├── template_arity_spec.hpp │ │ │ ├── type_trait_def.hpp │ │ │ ├── type_trait_undef.hpp │ │ │ ├── wrap.hpp │ │ │ └── yes_no_type.hpp │ │ ├── ice.hpp │ │ ├── integral_constant.hpp │ │ ├── is_array.hpp │ │ ├── is_const.hpp │ │ ├── is_function.hpp │ │ ├── is_lvalue_reference.hpp │ │ ├── is_reference.hpp │ │ ├── is_rvalue_reference.hpp │ │ ├── is_same.hpp │ │ ├── msvc │ │ │ ├── remove_bounds.hpp │ │ │ ├── remove_reference.hpp │ │ │ └── typeof.hpp │ │ ├── remove_bounds.hpp │ │ └── remove_reference.hpp │ ├── utility │ │ └── enable_if.hpp │ └── version.hpp ├── dirent │ ├── ChangeLog │ ├── LICENSE │ ├── README.md │ └── dirent.h ├── 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_int2x2.hpp │ │ ├── matrix_int2x2_sized.hpp │ │ ├── matrix_int2x3.hpp │ │ ├── matrix_int2x3_sized.hpp │ │ ├── matrix_int2x4.hpp │ │ ├── matrix_int2x4_sized.hpp │ │ ├── matrix_int3x2.hpp │ │ ├── matrix_int3x2_sized.hpp │ │ ├── matrix_int3x3.hpp │ │ ├── matrix_int3x3_sized.hpp │ │ ├── matrix_int3x4.hpp │ │ ├── matrix_int3x4_sized.hpp │ │ ├── matrix_int4x2.hpp │ │ ├── matrix_int4x2_sized.hpp │ │ ├── matrix_int4x3.hpp │ │ ├── matrix_int4x3_sized.hpp │ │ ├── matrix_int4x4.hpp │ │ ├── matrix_int4x4_sized.hpp │ │ ├── matrix_projection.hpp │ │ ├── matrix_projection.inl │ │ ├── matrix_relational.hpp │ │ ├── matrix_relational.inl │ │ ├── matrix_transform.hpp │ │ ├── matrix_transform.inl │ │ ├── matrix_uint2x2.hpp │ │ ├── matrix_uint2x2_sized.hpp │ │ ├── matrix_uint2x3.hpp │ │ ├── matrix_uint2x3_sized.hpp │ │ ├── matrix_uint2x4.hpp │ │ ├── matrix_uint2x4_sized.hpp │ │ ├── matrix_uint3x2.hpp │ │ ├── matrix_uint3x2_sized.hpp │ │ ├── matrix_uint3x3.hpp │ │ ├── matrix_uint3x3_sized.hpp │ │ ├── matrix_uint3x4.hpp │ │ ├── matrix_uint3x4_sized.hpp │ │ ├── matrix_uint4x2.hpp │ │ ├── matrix_uint4x2_sized.hpp │ │ ├── matrix_uint4x3.hpp │ │ ├── matrix_uint4x3_sized.hpp │ │ ├── matrix_uint4x4.hpp │ │ ├── matrix_uint4x4_sized.hpp │ │ ├── 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_integer.hpp │ │ ├── scalar_integer.inl │ │ ├── scalar_packing.hpp │ │ ├── scalar_packing.inl │ │ ├── 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_sized.hpp │ │ ├── vector_int2.hpp │ │ ├── vector_int2_sized.hpp │ │ ├── vector_int3.hpp │ │ ├── vector_int3_sized.hpp │ │ ├── vector_int4.hpp │ │ ├── vector_int4_sized.hpp │ │ ├── vector_integer.hpp │ │ ├── vector_integer.inl │ │ ├── vector_packing.hpp │ │ ├── vector_packing.inl │ │ ├── vector_relational.hpp │ │ ├── vector_relational.inl │ │ ├── vector_uint1.hpp │ │ ├── vector_uint1_sized.hpp │ │ ├── vector_uint2.hpp │ │ ├── vector_uint2_sized.hpp │ │ ├── vector_uint3.hpp │ │ ├── vector_uint3_sized.hpp │ │ ├── vector_uint4.hpp │ │ ├── vector_uint4_sized.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 │ │ ├── neon.h │ │ ├── packing.h │ │ ├── platform.h │ │ ├── trigonometric.h │ │ └── vector_relational.h │ ├── trigonometric.hpp │ ├── vec2.hpp │ ├── vec3.hpp │ ├── vec4.hpp │ └── vector_relational.hpp ├── imgui │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_impl_glfw.cpp │ ├── imgui_impl_glfw.h │ ├── imgui_impl_opengl3.cpp │ ├── imgui_impl_opengl3.h │ ├── imgui_impl_opengl3_loader.h │ ├── imgui_internal.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── portable-file-dialogs │ └── portable-file-dialogs.h ├── raudio │ ├── dr_mp3.h │ ├── external │ │ ├── dr_flac.h │ │ ├── dr_mp3.h │ │ ├── dr_wav.h │ │ ├── jar_mod.h │ │ ├── jar_xm.h │ │ ├── miniaudio.h │ │ ├── qoa.h │ │ ├── qoaplay.c │ │ └── stb_vorbis.c │ └── raudio.h ├── stb │ ├── LICENSE │ ├── README.md │ ├── stb_image.h │ ├── stb_image_resize.h │ └── stb_truetype.h ├── tsl │ ├── ordered_hash.h │ ├── ordered_map.h │ └── ordered_set.h └── zlib │ ├── zconf.h │ └── zlib.h ├── lib ├── glew32.lib ├── glew32s.lib ├── glfw3.lib └── glfw3dll.lib └── src ├── ActionEasing.cpp ├── ActionEasing.h ├── ActionInterval.cpp ├── ActionInterval.h ├── Application.cpp ├── Application.h ├── AudioEngine.cpp ├── AudioEngine.h ├── Batcher.cpp ├── Batcher.h ├── Camera.cpp ├── Camera.h ├── ColorAction.cpp ├── ColorAction.h ├── ColorChannel.cpp ├── ColorChannel.h ├── Common.cpp ├── Common.h ├── CopyColorAction.cpp ├── CopyColorAction.h ├── EffectGameObject.cpp ├── EffectGameObject.h ├── FollowAction.cpp ├── FollowAction.h ├── GameLayer.cpp ├── GameLayer.h ├── GameObject.cpp ├── GameObject.h ├── Group.cpp ├── Group.h ├── HSV.cpp ├── HSV.h ├── ImageLoader.cpp ├── ImageLoader.h ├── Input.cpp ├── Input.h ├── Layer.cpp ├── Layer.h ├── Level.cpp ├── Level.h ├── LongData.h ├── Material.cpp ├── Material.h ├── MoveAction.cpp ├── MoveAction.h ├── OpacityAction.cpp ├── OpacityAction.h ├── PlatformUtils.cpp ├── PlatformUtils.h ├── Plist.cpp ├── Plist.hpp ├── PlistDate.cpp ├── PlistDate.hpp ├── PulseAction.cpp ├── PulseAction.h ├── QuadSprite.cpp ├── QuadSprite.h ├── RenderTexture.cpp ├── RenderTexture.h ├── RotateAction.cpp ├── RotateAction.h ├── SelectLevelLayer.cpp ├── SelectLevelLayer.h ├── Sequence.cpp ├── Sequence.h ├── SpawnAction.cpp ├── SpawnAction.h ├── Sprite.cpp ├── Sprite.h ├── Texture.cpp ├── Texture.h ├── Transformable.cpp ├── Transformable.h ├── Tween.cpp ├── Tween.h ├── Vertex.h ├── base64.cpp ├── base64.h ├── base64.hpp ├── json.hpp ├── main.cpp ├── pugiconfig.hpp ├── pugixml.cpp ├── pugixml.hpp ├── raudio.c └── stb_image.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/README.md -------------------------------------------------------------------------------- /clang-format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/clang-format.txt -------------------------------------------------------------------------------- /get_cpm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/get_cpm.cmake -------------------------------------------------------------------------------- /images/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/images/ss1.png -------------------------------------------------------------------------------- /images/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/images/ss2.png -------------------------------------------------------------------------------- /images/ss3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/images/ss3.png -------------------------------------------------------------------------------- /images/ss4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/images/ss4.png -------------------------------------------------------------------------------- /images/ss5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/images/ss5.png -------------------------------------------------------------------------------- /images/ss6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/images/ss6.png -------------------------------------------------------------------------------- /include/GL/eglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/GL/eglew.h -------------------------------------------------------------------------------- /include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/GL/glew.h -------------------------------------------------------------------------------- /include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/GL/glxew.h -------------------------------------------------------------------------------- /include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/GL/wglew.h -------------------------------------------------------------------------------- /include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /include/boost/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/any.hpp -------------------------------------------------------------------------------- /include/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config.hpp -------------------------------------------------------------------------------- /include/boost/config/abi/borland_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/abi/borland_prefix.hpp -------------------------------------------------------------------------------- /include/boost/config/abi/borland_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/abi/borland_suffix.hpp -------------------------------------------------------------------------------- /include/boost/config/abi/msvc_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/abi/msvc_prefix.hpp -------------------------------------------------------------------------------- /include/boost/config/abi/msvc_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/abi/msvc_suffix.hpp -------------------------------------------------------------------------------- /include/boost/config/abi_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/abi_prefix.hpp -------------------------------------------------------------------------------- /include/boost/config/abi_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/abi_suffix.hpp -------------------------------------------------------------------------------- /include/boost/config/auto_link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/auto_link.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/borland.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/compiler/borland.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/clang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/compiler/clang.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/codegear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/compiler/codegear.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/comeau.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/compiler/comeau.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/common_edg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/compiler/common_edg.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/compaq_cxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/compiler/compaq_cxx.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/cray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/compiler/cray.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/digitalmars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/compiler/digitalmars.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/gcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/compiler/gcc.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/gcc_xml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/compiler/gcc_xml.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/greenhills.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/compiler/greenhills.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/hp_acc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/compiler/hp_acc.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/compiler/intel.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/kai.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/compiler/kai.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/metrowerks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/compiler/metrowerks.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/mpw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/compiler/mpw.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/nvcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/compiler/nvcc.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/pathscale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/compiler/pathscale.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/pgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/compiler/pgi.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/sgi_mipspro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/compiler/sgi_mipspro.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/sunpro_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/compiler/sunpro_cc.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/compiler/vacpp.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/visualc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/compiler/visualc.hpp -------------------------------------------------------------------------------- /include/boost/config/no_tr1/cmath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/no_tr1/cmath.hpp -------------------------------------------------------------------------------- /include/boost/config/no_tr1/complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/no_tr1/complex.hpp -------------------------------------------------------------------------------- /include/boost/config/no_tr1/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/no_tr1/functional.hpp -------------------------------------------------------------------------------- /include/boost/config/no_tr1/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/no_tr1/memory.hpp -------------------------------------------------------------------------------- /include/boost/config/no_tr1/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/no_tr1/utility.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/aix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/platform/aix.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/amigaos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/platform/amigaos.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/beos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/platform/beos.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/bsd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/platform/bsd.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/cray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/platform/cray.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/cygwin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/platform/cygwin.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/hpux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/platform/hpux.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/irix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/platform/irix.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/linux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/platform/linux.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/macos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/platform/macos.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/qnxnto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/platform/qnxnto.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/solaris.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/platform/solaris.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/symbian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/platform/symbian.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/vms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/platform/vms.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/vxworks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/platform/vxworks.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/win32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/platform/win32.hpp -------------------------------------------------------------------------------- /include/boost/config/posix_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/posix_features.hpp -------------------------------------------------------------------------------- /include/boost/config/requires_threads.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/requires_threads.hpp -------------------------------------------------------------------------------- /include/boost/config/select_compiler_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/select_compiler_config.hpp -------------------------------------------------------------------------------- /include/boost/config/select_platform_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/select_platform_config.hpp -------------------------------------------------------------------------------- /include/boost/config/select_stdlib_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/select_stdlib_config.hpp -------------------------------------------------------------------------------- /include/boost/config/stdlib/dinkumware.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/stdlib/dinkumware.hpp -------------------------------------------------------------------------------- /include/boost/config/stdlib/libcomo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/stdlib/libcomo.hpp -------------------------------------------------------------------------------- /include/boost/config/stdlib/libcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/stdlib/libcpp.hpp -------------------------------------------------------------------------------- /include/boost/config/stdlib/libstdcpp3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/stdlib/libstdcpp3.hpp -------------------------------------------------------------------------------- /include/boost/config/stdlib/modena.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/stdlib/modena.hpp -------------------------------------------------------------------------------- /include/boost/config/stdlib/msl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/stdlib/msl.hpp -------------------------------------------------------------------------------- /include/boost/config/stdlib/roguewave.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/stdlib/roguewave.hpp -------------------------------------------------------------------------------- /include/boost/config/stdlib/sgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/stdlib/sgi.hpp -------------------------------------------------------------------------------- /include/boost/config/stdlib/stlport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/stdlib/stlport.hpp -------------------------------------------------------------------------------- /include/boost/config/stdlib/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/stdlib/vacpp.hpp -------------------------------------------------------------------------------- /include/boost/config/suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/suffix.hpp -------------------------------------------------------------------------------- /include/boost/config/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/user.hpp -------------------------------------------------------------------------------- /include/boost/config/warning_disable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/config/warning_disable.hpp -------------------------------------------------------------------------------- /include/boost/cstdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/cstdint.hpp -------------------------------------------------------------------------------- /include/boost/current_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/current_function.hpp -------------------------------------------------------------------------------- /include/boost/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/detail/workaround.hpp -------------------------------------------------------------------------------- /include/boost/exception/detail/attribute_noreturn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/exception/detail/attribute_noreturn.hpp -------------------------------------------------------------------------------- /include/boost/exception/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/exception/exception.hpp -------------------------------------------------------------------------------- /include/boost/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/license.txt -------------------------------------------------------------------------------- /include/boost/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/limits.hpp -------------------------------------------------------------------------------- /include/boost/locale/definitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/locale/definitions.hpp -------------------------------------------------------------------------------- /include/boost/locale/encoding_errors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/locale/encoding_errors.hpp -------------------------------------------------------------------------------- /include/boost/locale/encoding_utf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/locale/encoding_utf.hpp -------------------------------------------------------------------------------- /include/boost/locale/utf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/locale/utf.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/adl_barrier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/adl_barrier.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/arity.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/config/adl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/config/adl.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/config/arrays.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/config/arrays.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/config/ctps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/config/ctps.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/config/dtp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/config/dtp.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/config/eti.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/config/eti.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/config/gcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/config/gcc.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/config/integral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/config/integral.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/config/intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/config/intel.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/config/lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/config/lambda.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/config/msvc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/config/msvc.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/config/nttp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/config/nttp.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/config/overload_resolution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/config/overload_resolution.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/config/preprocessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/config/preprocessor.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/config/static_constant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/config/static_constant.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/config/ttp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/config/ttp.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/config/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/config/workaround.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/integral_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/integral_wrapper.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/lambda_arity_param.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/lambda_arity_param.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/lambda_support.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/lambda_support.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/na.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/na.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/na_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/na_fwd.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/na_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/na_spec.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/nttp_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/nttp_decl.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/preprocessor/def_params_tail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/preprocessor/def_params_tail.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/preprocessor/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/preprocessor/enum.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/preprocessor/filter_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/preprocessor/filter_params.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/preprocessor/params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/preprocessor/params.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/preprocessor/sub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/preprocessor/sub.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/preprocessor/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/preprocessor/tuple.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/static_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/static_cast.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/template_arity_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/template_arity_fwd.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/value_wknd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/value_wknd.hpp -------------------------------------------------------------------------------- /include/boost/mpl/aux_/yes_no.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/aux_/yes_no.hpp -------------------------------------------------------------------------------- /include/boost/mpl/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/bool.hpp -------------------------------------------------------------------------------- /include/boost/mpl/bool_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/bool_fwd.hpp -------------------------------------------------------------------------------- /include/boost/mpl/eval_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/eval_if.hpp -------------------------------------------------------------------------------- /include/boost/mpl/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/identity.hpp -------------------------------------------------------------------------------- /include/boost/mpl/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/if.hpp -------------------------------------------------------------------------------- /include/boost/mpl/int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/int.hpp -------------------------------------------------------------------------------- /include/boost/mpl/int_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/int_fwd.hpp -------------------------------------------------------------------------------- /include/boost/mpl/integral_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/integral_c.hpp -------------------------------------------------------------------------------- /include/boost/mpl/integral_c_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/integral_c_fwd.hpp -------------------------------------------------------------------------------- /include/boost/mpl/integral_c_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/integral_c_tag.hpp -------------------------------------------------------------------------------- /include/boost/mpl/lambda_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/lambda_fwd.hpp -------------------------------------------------------------------------------- /include/boost/mpl/limits/arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/limits/arity.hpp -------------------------------------------------------------------------------- /include/boost/mpl/void_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/mpl/void_fwd.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/arithmetic/add.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/arithmetic/add.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/arithmetic/dec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/arithmetic/dec.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/arithmetic/inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/arithmetic/inc.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/arithmetic/sub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/arithmetic/sub.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/array/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/array/data.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/array/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/array/elem.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/array/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/array/size.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/cat.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/comma_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/comma_if.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/config/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/config/config.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/control/detail/dmc/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/control/detail/dmc/while.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/control/detail/edg/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/control/detail/edg/while.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/control/detail/msvc/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/control/detail/msvc/while.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/control/detail/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/control/detail/while.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/control/expr_iif.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/control/expr_iif.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/control/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/control/if.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/control/iif.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/control/iif.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/control/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/control/while.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/debug/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/debug/error.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/detail/auto_rec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/detail/auto_rec.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/detail/check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/detail/check.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/detail/dmc/auto_rec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/detail/dmc/auto_rec.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/detail/is_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/detail/is_binary.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/empty.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/enum_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/enum_params.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/facilities/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/facilities/empty.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/facilities/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/facilities/identity.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/facilities/overload.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/facilities/overload.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/identity.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/inc.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iterate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iterate.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/detail/bounds/lower1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/detail/bounds/lower1.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/detail/bounds/lower2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/detail/bounds/lower2.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/detail/bounds/lower3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/detail/bounds/lower3.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/detail/bounds/lower4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/detail/bounds/lower4.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/detail/bounds/lower5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/detail/bounds/lower5.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/detail/bounds/upper1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/detail/bounds/upper1.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/detail/bounds/upper2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/detail/bounds/upper2.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/detail/bounds/upper3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/detail/bounds/upper3.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/detail/bounds/upper4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/detail/bounds/upper4.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/detail/bounds/upper5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/detail/bounds/upper5.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/detail/finish.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/detail/finish.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/detail/iter/forward1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/detail/iter/forward1.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/detail/iter/forward2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/detail/iter/forward2.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/detail/iter/forward3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/detail/iter/forward3.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/detail/iter/forward4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/detail/iter/forward4.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/detail/iter/forward5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/detail/iter/forward5.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/detail/iter/reverse1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/detail/iter/reverse1.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/detail/iter/reverse2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/detail/iter/reverse2.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/detail/iter/reverse3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/detail/iter/reverse3.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/detail/iter/reverse4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/detail/iter/reverse4.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/detail/iter/reverse5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/detail/iter/reverse5.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/detail/local.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/detail/local.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/detail/rlocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/detail/rlocal.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/detail/self.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/detail/self.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/detail/start.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/detail/start.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/iterate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/iterate.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/local.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/local.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration/self.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/iteration/self.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/list/adt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/list/adt.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/list/detail/dmc/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/list/detail/dmc/fold_left.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/list/detail/edg/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/list/detail/edg/fold_left.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/list/detail/edg/fold_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/list/detail/edg/fold_right.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/list/detail/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/list/detail/fold_left.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/list/detail/fold_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/list/detail/fold_right.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/list/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/list/fold_left.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/list/fold_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/list/fold_right.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/list/for_each_i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/list/for_each_i.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/list/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/list/reverse.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/logical/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/logical/and.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/logical/bitand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/logical/bitand.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/logical/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/logical/bool.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/logical/compl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/logical/compl.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/punctuation/comma.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/punctuation/comma.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/punctuation/comma_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/punctuation/comma_if.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/repeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/repeat.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/repetition/detail/dmc/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/repetition/detail/dmc/for.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/repetition/detail/edg/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/repetition/detail/edg/for.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/repetition/detail/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/repetition/detail/for.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/repetition/detail/msvc/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/repetition/detail/msvc/for.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/repetition/enum_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/repetition/enum_params.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/repetition/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/repetition/for.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/repetition/repeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/repetition/repeat.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/slot/detail/counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/slot/detail/counter.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/slot/detail/def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/slot/detail/def.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/slot/detail/shared.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/slot/detail/shared.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/slot/detail/slot1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/slot/detail/slot1.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/slot/detail/slot2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/slot/detail/slot2.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/slot/detail/slot3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/slot/detail/slot3.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/slot/detail/slot4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/slot/detail/slot4.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/slot/detail/slot5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/slot/detail/slot5.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/slot/slot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/slot/slot.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/tuple/eat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/tuple/eat.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/tuple/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/tuple/elem.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/tuple/rem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/tuple/rem.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/tuple/to_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/tuple/to_list.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/variadic/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/variadic/elem.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/variadic/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/preprocessor/variadic/size.hpp -------------------------------------------------------------------------------- /include/boost/static_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/static_assert.hpp -------------------------------------------------------------------------------- /include/boost/throw_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/throw_exception.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/add_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/add_pointer.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/add_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/add_reference.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/broken_compiler_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/broken_compiler_spec.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/config.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/decay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/decay.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/detail/bool_trait_def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/detail/bool_trait_def.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/detail/bool_trait_undef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/detail/bool_trait_undef.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/detail/cv_traits_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/detail/cv_traits_impl.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/detail/false_result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/detail/false_result.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/detail/ice_and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/detail/ice_and.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/detail/ice_eq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/detail/ice_eq.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/detail/ice_not.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/detail/ice_not.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/detail/ice_or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/detail/ice_or.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/detail/is_function_ptr_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/detail/is_function_ptr_helper.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/detail/is_function_ptr_tester.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/detail/is_function_ptr_tester.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/detail/template_arity_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/detail/template_arity_spec.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/detail/type_trait_def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/detail/type_trait_def.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/detail/type_trait_undef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/detail/type_trait_undef.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/detail/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/detail/wrap.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/detail/yes_no_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/detail/yes_no_type.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/ice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/ice.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/integral_constant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/integral_constant.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/is_array.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/is_const.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/is_function.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_lvalue_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/is_lvalue_reference.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/is_reference.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_rvalue_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/is_rvalue_reference.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_same.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/is_same.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/msvc/remove_bounds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/msvc/remove_bounds.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/msvc/remove_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/msvc/remove_reference.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/msvc/typeof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/msvc/typeof.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/remove_bounds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/remove_bounds.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/remove_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/type_traits/remove_reference.hpp -------------------------------------------------------------------------------- /include/boost/utility/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/utility/enable_if.hpp -------------------------------------------------------------------------------- /include/boost/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/boost/version.hpp -------------------------------------------------------------------------------- /include/dirent/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/dirent/ChangeLog -------------------------------------------------------------------------------- /include/dirent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/dirent/LICENSE -------------------------------------------------------------------------------- /include/dirent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/dirent/README.md -------------------------------------------------------------------------------- /include/dirent/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/dirent/dirent.h -------------------------------------------------------------------------------- /include/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/CMakeLists.txt -------------------------------------------------------------------------------- /include/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/common.hpp -------------------------------------------------------------------------------- /include/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/_features.hpp -------------------------------------------------------------------------------- /include/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /include/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /include/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /include/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /include/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /include/glm/detail/compute_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/compute_common.hpp -------------------------------------------------------------------------------- /include/glm/detail/compute_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/compute_vector_relational.hpp -------------------------------------------------------------------------------- /include/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/func_common.inl -------------------------------------------------------------------------------- /include/glm/detail/func_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/func_common_simd.inl -------------------------------------------------------------------------------- /include/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /include/glm/detail/func_exponential_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/func_exponential_simd.inl -------------------------------------------------------------------------------- /include/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /include/glm/detail/func_geometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/func_geometric_simd.inl -------------------------------------------------------------------------------- /include/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /include/glm/detail/func_integer_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/func_integer_simd.inl -------------------------------------------------------------------------------- /include/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /include/glm/detail/func_matrix_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/func_matrix_simd.inl -------------------------------------------------------------------------------- /include/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /include/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/func_packing_simd.inl -------------------------------------------------------------------------------- /include/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /include/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /include/glm/detail/func_vector_relational_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/func_vector_relational_simd.inl -------------------------------------------------------------------------------- /include/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/glm.cpp -------------------------------------------------------------------------------- /include/glm/detail/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/qualifier.hpp -------------------------------------------------------------------------------- /include/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/setup.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_half.inl -------------------------------------------------------------------------------- /include/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /include/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /include/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /include/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /include/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /include/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /include/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /include/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /include/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /include/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_mat4x4_simd.inl -------------------------------------------------------------------------------- /include/glm/detail/type_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_quat.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_quat.inl -------------------------------------------------------------------------------- /include/glm/detail/type_quat_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_quat_simd.inl -------------------------------------------------------------------------------- /include/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /include/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /include/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /include/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /include/glm/detail/type_vec4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/detail/type_vec4_simd.inl -------------------------------------------------------------------------------- /include/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/exponential.hpp -------------------------------------------------------------------------------- /include/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_clip_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_clip_space.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_clip_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_clip_space.inl -------------------------------------------------------------------------------- /include/glm/ext/matrix_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_common.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_common.inl -------------------------------------------------------------------------------- /include/glm/ext/matrix_double2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_double2x2.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_double2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_double2x2_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_double2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_double2x3.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_double2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_double2x3_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_double2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_double2x4.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_double2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_double2x4_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_double3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_double3x2.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_double3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_double3x2_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_double3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_double3x3.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_double3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_double3x3_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_double3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_double3x4.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_double3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_double3x4_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_double4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_double4x2.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_double4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_double4x2_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_double4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_double4x3.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_double4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_double4x3_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_double4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_double4x4.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_double4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_double4x4_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_float2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_float2x2.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_float2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_float2x2_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_float2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_float2x3.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_float2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_float2x3_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_float2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_float2x4.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_float2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_float2x4_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_float3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_float3x2.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_float3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_float3x2_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_float3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_float3x3.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_float3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_float3x3_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_float3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_float3x4.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_float3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_float3x4_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_float4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_float4x2.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_float4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_float4x2_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_float4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_float4x3.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_float4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_float4x3_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_float4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_float4x4.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_float4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_float4x4_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_int2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_int2x2.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_int2x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_int2x2_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_int2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_int2x3.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_int2x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_int2x3_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_int2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_int2x4.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_int2x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_int2x4_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_int3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_int3x2.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_int3x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_int3x2_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_int3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_int3x3.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_int3x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_int3x3_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_int3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_int3x4.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_int3x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_int3x4_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_int4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_int4x2.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_int4x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_int4x2_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_int4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_int4x3.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_int4x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_int4x3_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_int4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_int4x4.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_int4x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_int4x4_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_projection.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_projection.inl -------------------------------------------------------------------------------- /include/glm/ext/matrix_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_relational.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_relational.inl -------------------------------------------------------------------------------- /include/glm/ext/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_transform.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_transform.inl -------------------------------------------------------------------------------- /include/glm/ext/matrix_uint2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_uint2x2.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_uint2x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_uint2x2_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_uint2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_uint2x3.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_uint2x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_uint2x3_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_uint2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_uint2x4.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_uint2x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_uint2x4_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_uint3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_uint3x2.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_uint3x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_uint3x2_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_uint3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_uint3x3.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_uint3x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_uint3x3_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_uint3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_uint3x4.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_uint3x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_uint3x4_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_uint4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_uint4x2.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_uint4x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_uint4x2_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_uint4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_uint4x3.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_uint4x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_uint4x3_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_uint4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_uint4x4.hpp -------------------------------------------------------------------------------- /include/glm/ext/matrix_uint4x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/matrix_uint4x4_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/quaternion_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/quaternion_common.hpp -------------------------------------------------------------------------------- /include/glm/ext/quaternion_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/quaternion_common.inl -------------------------------------------------------------------------------- /include/glm/ext/quaternion_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/quaternion_common_simd.inl -------------------------------------------------------------------------------- /include/glm/ext/quaternion_double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/quaternion_double.hpp -------------------------------------------------------------------------------- /include/glm/ext/quaternion_double_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/quaternion_double_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/quaternion_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/quaternion_exponential.hpp -------------------------------------------------------------------------------- /include/glm/ext/quaternion_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/quaternion_exponential.inl -------------------------------------------------------------------------------- /include/glm/ext/quaternion_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/quaternion_float.hpp -------------------------------------------------------------------------------- /include/glm/ext/quaternion_float_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/quaternion_float_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/quaternion_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/quaternion_geometric.hpp -------------------------------------------------------------------------------- /include/glm/ext/quaternion_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/quaternion_geometric.inl -------------------------------------------------------------------------------- /include/glm/ext/quaternion_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/quaternion_relational.hpp -------------------------------------------------------------------------------- /include/glm/ext/quaternion_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/quaternion_relational.inl -------------------------------------------------------------------------------- /include/glm/ext/quaternion_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/quaternion_transform.hpp -------------------------------------------------------------------------------- /include/glm/ext/quaternion_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/quaternion_transform.inl -------------------------------------------------------------------------------- /include/glm/ext/quaternion_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/quaternion_trigonometric.hpp -------------------------------------------------------------------------------- /include/glm/ext/quaternion_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/quaternion_trigonometric.inl -------------------------------------------------------------------------------- /include/glm/ext/scalar_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/scalar_common.hpp -------------------------------------------------------------------------------- /include/glm/ext/scalar_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/scalar_common.inl -------------------------------------------------------------------------------- /include/glm/ext/scalar_constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/scalar_constants.hpp -------------------------------------------------------------------------------- /include/glm/ext/scalar_constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/scalar_constants.inl -------------------------------------------------------------------------------- /include/glm/ext/scalar_int_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/scalar_int_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/scalar_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/scalar_integer.hpp -------------------------------------------------------------------------------- /include/glm/ext/scalar_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/scalar_integer.inl -------------------------------------------------------------------------------- /include/glm/ext/scalar_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/scalar_packing.hpp -------------------------------------------------------------------------------- /include/glm/ext/scalar_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/glm/ext/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/scalar_relational.hpp -------------------------------------------------------------------------------- /include/glm/ext/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/scalar_relational.inl -------------------------------------------------------------------------------- /include/glm/ext/scalar_uint_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/scalar_uint_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/scalar_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/scalar_ulp.hpp -------------------------------------------------------------------------------- /include/glm/ext/scalar_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/scalar_ulp.inl -------------------------------------------------------------------------------- /include/glm/ext/vector_bool1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_bool1.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_bool1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_bool1_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_bool2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_bool2.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_bool2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_bool2_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_bool3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_bool3.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_bool3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_bool3_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_bool4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_bool4.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_bool4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_bool4_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_common.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_common.inl -------------------------------------------------------------------------------- /include/glm/ext/vector_double1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_double1.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_double1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_double1_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_double2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_double2.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_double2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_double2_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_double3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_double3.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_double3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_double3_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_double4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_double4.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_double4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_double4_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_float1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_float1.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_float1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_float1_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_float2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_float2.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_float2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_float2_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_float3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_float3.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_float3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_float3_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_float4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_float4.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_float4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_float4_precision.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_int1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_int1.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_int1_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_int1_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_int2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_int2.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_int2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_int2_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_int3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_int3.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_int3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_int3_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_int4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_int4.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_int4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_int4_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_integer.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_integer.inl -------------------------------------------------------------------------------- /include/glm/ext/vector_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_packing.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/glm/ext/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_relational.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_relational.inl -------------------------------------------------------------------------------- /include/glm/ext/vector_uint1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_uint1.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_uint1_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_uint1_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_uint2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_uint2.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_uint2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_uint2_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_uint3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_uint3.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_uint3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_uint3_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_uint4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_uint4.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_uint4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_uint4_sized.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_ulp.hpp -------------------------------------------------------------------------------- /include/glm/ext/vector_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/ext/vector_ulp.inl -------------------------------------------------------------------------------- /include/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/fwd.hpp -------------------------------------------------------------------------------- /include/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/geometric.hpp -------------------------------------------------------------------------------- /include/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/glm.hpp -------------------------------------------------------------------------------- /include/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /include/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /include/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /include/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /include/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /include/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/constants.inl -------------------------------------------------------------------------------- /include/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /include/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /include/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /include/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/integer.inl -------------------------------------------------------------------------------- /include/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /include/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /include/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /include/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /include/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /include/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /include/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /include/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /include/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/noise.inl -------------------------------------------------------------------------------- /include/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /include/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/packing.inl -------------------------------------------------------------------------------- /include/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /include/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /include/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/random.hpp -------------------------------------------------------------------------------- /include/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/random.inl -------------------------------------------------------------------------------- /include/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /include/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /include/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/round.hpp -------------------------------------------------------------------------------- /include/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/round.inl -------------------------------------------------------------------------------- /include/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /include/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /include/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /include/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /include/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /include/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /include/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /include/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /include/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /include/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /include/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /include/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/bit.inl -------------------------------------------------------------------------------- /include/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /include/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /include/glm/gtx/color_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/color_encoding.hpp -------------------------------------------------------------------------------- /include/glm/gtx/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/color_encoding.inl -------------------------------------------------------------------------------- /include/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /include/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /include/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /include/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /include/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/common.hpp -------------------------------------------------------------------------------- /include/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/common.inl -------------------------------------------------------------------------------- /include/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /include/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /include/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /include/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /include/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /include/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /include/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /include/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/easing.inl -------------------------------------------------------------------------------- /include/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /include/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /include/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /include/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/extend.inl -------------------------------------------------------------------------------- /include/glm/gtx/extended_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/extended_min_max.hpp -------------------------------------------------------------------------------- /include/glm/gtx/extended_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/extended_min_max.inl -------------------------------------------------------------------------------- /include/glm/gtx/exterior_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/exterior_product.hpp -------------------------------------------------------------------------------- /include/glm/gtx/exterior_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/exterior_product.inl -------------------------------------------------------------------------------- /include/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /include/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /include/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /include/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /include/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /include/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /include/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/float_notmalize.inl -------------------------------------------------------------------------------- /include/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /include/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/functions.inl -------------------------------------------------------------------------------- /include/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /include/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /include/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /include/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /include/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /include/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/hash.inl -------------------------------------------------------------------------------- /include/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /include/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/integer.inl -------------------------------------------------------------------------------- /include/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /include/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /include/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/io.hpp -------------------------------------------------------------------------------- /include/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/io.inl -------------------------------------------------------------------------------- /include/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /include/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /include/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /include/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /include/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /include/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /include/glm/gtx/matrix_factorisation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/matrix_factorisation.hpp -------------------------------------------------------------------------------- /include/glm/gtx/matrix_factorisation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/matrix_factorisation.inl -------------------------------------------------------------------------------- /include/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /include/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /include/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /include/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /include/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /include/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /include/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /include/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /include/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /include/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /include/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /include/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /include/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /include/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/norm.inl -------------------------------------------------------------------------------- /include/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /include/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/normal.inl -------------------------------------------------------------------------------- /include/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /include/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /include/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /include/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /include/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /include/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /include/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /include/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /include/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /include/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /include/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /include/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /include/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /include/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/projection.inl -------------------------------------------------------------------------------- /include/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /include/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /include/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/range.hpp -------------------------------------------------------------------------------- /include/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /include/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /include/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /include/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /include/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /include/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /include/glm/gtx/scalar_multiplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/scalar_multiplication.hpp -------------------------------------------------------------------------------- /include/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /include/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /include/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /include/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/spline.inl -------------------------------------------------------------------------------- /include/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /include/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /include/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /include/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /include/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /include/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/texture.inl -------------------------------------------------------------------------------- /include/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /include/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/transform.inl -------------------------------------------------------------------------------- /include/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /include/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /include/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /include/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /include/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /include/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /include/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /include/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /include/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /include/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /include/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /include/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /include/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /include/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/integer.hpp -------------------------------------------------------------------------------- /include/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/mat2x2.hpp -------------------------------------------------------------------------------- /include/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/mat2x3.hpp -------------------------------------------------------------------------------- /include/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/mat2x4.hpp -------------------------------------------------------------------------------- /include/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/mat3x2.hpp -------------------------------------------------------------------------------- /include/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/mat3x3.hpp -------------------------------------------------------------------------------- /include/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/mat3x4.hpp -------------------------------------------------------------------------------- /include/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/mat4x2.hpp -------------------------------------------------------------------------------- /include/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/mat4x3.hpp -------------------------------------------------------------------------------- /include/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/mat4x4.hpp -------------------------------------------------------------------------------- /include/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/matrix.hpp -------------------------------------------------------------------------------- /include/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/packing.hpp -------------------------------------------------------------------------------- /include/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/simd/common.h -------------------------------------------------------------------------------- /include/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/simd/exponential.h -------------------------------------------------------------------------------- /include/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/simd/geometric.h -------------------------------------------------------------------------------- /include/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/simd/integer.h -------------------------------------------------------------------------------- /include/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/simd/matrix.h -------------------------------------------------------------------------------- /include/glm/simd/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/simd/neon.h -------------------------------------------------------------------------------- /include/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/simd/packing.h -------------------------------------------------------------------------------- /include/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/simd/platform.h -------------------------------------------------------------------------------- /include/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /include/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/simd/vector_relational.h -------------------------------------------------------------------------------- /include/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/trigonometric.hpp -------------------------------------------------------------------------------- /include/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/vec2.hpp -------------------------------------------------------------------------------- /include/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/vec3.hpp -------------------------------------------------------------------------------- /include/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/vec4.hpp -------------------------------------------------------------------------------- /include/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/glm/vector_relational.hpp -------------------------------------------------------------------------------- /include/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/imgui/imconfig.h -------------------------------------------------------------------------------- /include/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/imgui/imgui.cpp -------------------------------------------------------------------------------- /include/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/imgui/imgui.h -------------------------------------------------------------------------------- /include/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /include/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /include/imgui/imgui_impl_glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/imgui/imgui_impl_glfw.cpp -------------------------------------------------------------------------------- /include/imgui/imgui_impl_glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/imgui/imgui_impl_glfw.h -------------------------------------------------------------------------------- /include/imgui/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/imgui/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /include/imgui/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/imgui/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /include/imgui/imgui_impl_opengl3_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/imgui/imgui_impl_opengl3_loader.h -------------------------------------------------------------------------------- /include/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/imgui/imgui_internal.h -------------------------------------------------------------------------------- /include/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /include/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /include/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /include/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /include/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /include/portable-file-dialogs/portable-file-dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/portable-file-dialogs/portable-file-dialogs.h -------------------------------------------------------------------------------- /include/raudio/dr_mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/raudio/dr_mp3.h -------------------------------------------------------------------------------- /include/raudio/external/dr_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/raudio/external/dr_flac.h -------------------------------------------------------------------------------- /include/raudio/external/dr_mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/raudio/external/dr_mp3.h -------------------------------------------------------------------------------- /include/raudio/external/dr_wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/raudio/external/dr_wav.h -------------------------------------------------------------------------------- /include/raudio/external/jar_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/raudio/external/jar_mod.h -------------------------------------------------------------------------------- /include/raudio/external/jar_xm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/raudio/external/jar_xm.h -------------------------------------------------------------------------------- /include/raudio/external/miniaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/raudio/external/miniaudio.h -------------------------------------------------------------------------------- /include/raudio/external/qoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/raudio/external/qoa.h -------------------------------------------------------------------------------- /include/raudio/external/qoaplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/raudio/external/qoaplay.c -------------------------------------------------------------------------------- /include/raudio/external/stb_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/raudio/external/stb_vorbis.c -------------------------------------------------------------------------------- /include/raudio/raudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/raudio/raudio.h -------------------------------------------------------------------------------- /include/stb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/stb/LICENSE -------------------------------------------------------------------------------- /include/stb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/stb/README.md -------------------------------------------------------------------------------- /include/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/stb/stb_image.h -------------------------------------------------------------------------------- /include/stb/stb_image_resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/stb/stb_image_resize.h -------------------------------------------------------------------------------- /include/stb/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/stb/stb_truetype.h -------------------------------------------------------------------------------- /include/tsl/ordered_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/tsl/ordered_hash.h -------------------------------------------------------------------------------- /include/tsl/ordered_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/tsl/ordered_map.h -------------------------------------------------------------------------------- /include/tsl/ordered_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/tsl/ordered_set.h -------------------------------------------------------------------------------- /include/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/zlib/zconf.h -------------------------------------------------------------------------------- /include/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/include/zlib/zlib.h -------------------------------------------------------------------------------- /lib/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/lib/glew32.lib -------------------------------------------------------------------------------- /lib/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/lib/glew32s.lib -------------------------------------------------------------------------------- /lib/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/lib/glfw3.lib -------------------------------------------------------------------------------- /lib/glfw3dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/lib/glfw3dll.lib -------------------------------------------------------------------------------- /src/ActionEasing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/ActionEasing.cpp -------------------------------------------------------------------------------- /src/ActionEasing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/ActionEasing.h -------------------------------------------------------------------------------- /src/ActionInterval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/ActionInterval.cpp -------------------------------------------------------------------------------- /src/ActionInterval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/ActionInterval.h -------------------------------------------------------------------------------- /src/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Application.cpp -------------------------------------------------------------------------------- /src/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Application.h -------------------------------------------------------------------------------- /src/AudioEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/AudioEngine.cpp -------------------------------------------------------------------------------- /src/AudioEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/AudioEngine.h -------------------------------------------------------------------------------- /src/Batcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Batcher.cpp -------------------------------------------------------------------------------- /src/Batcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Batcher.h -------------------------------------------------------------------------------- /src/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Camera.cpp -------------------------------------------------------------------------------- /src/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Camera.h -------------------------------------------------------------------------------- /src/ColorAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/ColorAction.cpp -------------------------------------------------------------------------------- /src/ColorAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/ColorAction.h -------------------------------------------------------------------------------- /src/ColorChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/ColorChannel.cpp -------------------------------------------------------------------------------- /src/ColorChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/ColorChannel.h -------------------------------------------------------------------------------- /src/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Common.cpp -------------------------------------------------------------------------------- /src/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Common.h -------------------------------------------------------------------------------- /src/CopyColorAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/CopyColorAction.cpp -------------------------------------------------------------------------------- /src/CopyColorAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/CopyColorAction.h -------------------------------------------------------------------------------- /src/EffectGameObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/EffectGameObject.cpp -------------------------------------------------------------------------------- /src/EffectGameObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/EffectGameObject.h -------------------------------------------------------------------------------- /src/FollowAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/FollowAction.cpp -------------------------------------------------------------------------------- /src/FollowAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/FollowAction.h -------------------------------------------------------------------------------- /src/GameLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/GameLayer.cpp -------------------------------------------------------------------------------- /src/GameLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/GameLayer.h -------------------------------------------------------------------------------- /src/GameObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/GameObject.cpp -------------------------------------------------------------------------------- /src/GameObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/GameObject.h -------------------------------------------------------------------------------- /src/Group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Group.cpp -------------------------------------------------------------------------------- /src/Group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Group.h -------------------------------------------------------------------------------- /src/HSV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/HSV.cpp -------------------------------------------------------------------------------- /src/HSV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/HSV.h -------------------------------------------------------------------------------- /src/ImageLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/ImageLoader.cpp -------------------------------------------------------------------------------- /src/ImageLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/ImageLoader.h -------------------------------------------------------------------------------- /src/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Input.cpp -------------------------------------------------------------------------------- /src/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Input.h -------------------------------------------------------------------------------- /src/Layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Layer.cpp -------------------------------------------------------------------------------- /src/Layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Layer.h -------------------------------------------------------------------------------- /src/Level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Level.cpp -------------------------------------------------------------------------------- /src/Level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Level.h -------------------------------------------------------------------------------- /src/LongData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/LongData.h -------------------------------------------------------------------------------- /src/Material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Material.cpp -------------------------------------------------------------------------------- /src/Material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Material.h -------------------------------------------------------------------------------- /src/MoveAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/MoveAction.cpp -------------------------------------------------------------------------------- /src/MoveAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/MoveAction.h -------------------------------------------------------------------------------- /src/OpacityAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/OpacityAction.cpp -------------------------------------------------------------------------------- /src/OpacityAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/OpacityAction.h -------------------------------------------------------------------------------- /src/PlatformUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/PlatformUtils.cpp -------------------------------------------------------------------------------- /src/PlatformUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/PlatformUtils.h -------------------------------------------------------------------------------- /src/Plist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Plist.cpp -------------------------------------------------------------------------------- /src/Plist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Plist.hpp -------------------------------------------------------------------------------- /src/PlistDate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/PlistDate.cpp -------------------------------------------------------------------------------- /src/PlistDate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/PlistDate.hpp -------------------------------------------------------------------------------- /src/PulseAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/PulseAction.cpp -------------------------------------------------------------------------------- /src/PulseAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/PulseAction.h -------------------------------------------------------------------------------- /src/QuadSprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/QuadSprite.cpp -------------------------------------------------------------------------------- /src/QuadSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/QuadSprite.h -------------------------------------------------------------------------------- /src/RenderTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/RenderTexture.cpp -------------------------------------------------------------------------------- /src/RenderTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/RenderTexture.h -------------------------------------------------------------------------------- /src/RotateAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/RotateAction.cpp -------------------------------------------------------------------------------- /src/RotateAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/RotateAction.h -------------------------------------------------------------------------------- /src/SelectLevelLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/SelectLevelLayer.cpp -------------------------------------------------------------------------------- /src/SelectLevelLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/SelectLevelLayer.h -------------------------------------------------------------------------------- /src/Sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Sequence.cpp -------------------------------------------------------------------------------- /src/Sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Sequence.h -------------------------------------------------------------------------------- /src/SpawnAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/SpawnAction.cpp -------------------------------------------------------------------------------- /src/SpawnAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/SpawnAction.h -------------------------------------------------------------------------------- /src/Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Sprite.cpp -------------------------------------------------------------------------------- /src/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Sprite.h -------------------------------------------------------------------------------- /src/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Texture.cpp -------------------------------------------------------------------------------- /src/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Texture.h -------------------------------------------------------------------------------- /src/Transformable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Transformable.cpp -------------------------------------------------------------------------------- /src/Transformable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Transformable.h -------------------------------------------------------------------------------- /src/Tween.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Tween.cpp -------------------------------------------------------------------------------- /src/Tween.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Tween.h -------------------------------------------------------------------------------- /src/Vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/Vertex.h -------------------------------------------------------------------------------- /src/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/base64.cpp -------------------------------------------------------------------------------- /src/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/base64.h -------------------------------------------------------------------------------- /src/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/base64.hpp -------------------------------------------------------------------------------- /src/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/json.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/pugiconfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/pugiconfig.hpp -------------------------------------------------------------------------------- /src/pugixml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/pugixml.cpp -------------------------------------------------------------------------------- /src/pugixml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/pugixml.hpp -------------------------------------------------------------------------------- /src/raudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxnut/gdrender/HEAD/src/raudio.c -------------------------------------------------------------------------------- /src/stb_image.cpp: -------------------------------------------------------------------------------- 1 | #define STB_IMAGE_IMPLEMENTATION 2 | #include "stb_image.h" --------------------------------------------------------------------------------