├── .github ├── FUNDING.yml ├── vera.jpg └── workflows │ └── build.yml ├── .gitignore ├── .vscode └── settings.json ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── __init__.py ├── cmake ├── ECMFindModuleHelpers.cmake ├── FindBROADCOM.cmake ├── FindDRM.cmake ├── FindEGL.cmake ├── FindFFMPEG.cmake ├── FindGBM.cmake ├── FindGLESv2.cmake ├── FindILCLIENT.cmake ├── FindMMAL.cmake ├── FindOMAX.cmake └── FindXCB.cmake ├── deps ├── CMakeLists.txt ├── emscripten-webxr │ ├── CMakeLists.txt │ ├── COPYING │ ├── README.md │ ├── library_webxr.js │ └── webxr.h ├── fontstash │ ├── fontstash.h │ ├── glfontstash.h │ ├── sdf.h │ ├── shaders.h │ └── stb_truetype.h ├── glew │ ├── CMakeLists.txt │ ├── build │ │ ├── glew.rc │ │ ├── glewinfo.rc │ │ └── visualinfo.rc │ ├── include │ │ └── GL │ │ │ ├── eglew.h │ │ │ ├── glew.h │ │ │ ├── glxew.h │ │ │ └── wglew.h │ └── src │ │ ├── glew.c │ │ ├── glewinfo.c │ │ └── visualinfo.c ├── glfw │ ├── .DS_Store │ ├── CMake │ │ ├── GenerateMappings.cmake │ │ ├── Info.plist.in │ │ ├── cmake_uninstall.cmake.in │ │ ├── glfw3.pc.in │ │ ├── glfw3Config.cmake.in │ │ ├── i686-w64-mingw32-clang.cmake │ │ ├── i686-w64-mingw32.cmake │ │ ├── modules │ │ │ ├── FindEpollShim.cmake │ │ │ └── FindOSMesa.cmake │ │ ├── x86_64-w64-mingw32-clang.cmake │ │ └── x86_64-w64-mingw32.cmake │ ├── CMakeLists.txt │ ├── CONTRIBUTORS.md │ ├── LICENSE.md │ ├── README.md │ ├── cmake_uninstall.cmake.in │ ├── deps │ │ ├── .DS_Store │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── glad │ │ │ ├── gl.h │ │ │ ├── gles2.h │ │ │ └── vulkan.h │ │ ├── linmath.h │ │ ├── mingw │ │ │ ├── _mingw_dxhelper.h │ │ │ ├── dinput.h │ │ │ └── xinput.h │ │ ├── nuklear.h │ │ ├── nuklear_glfw_gl2.h │ │ ├── stb_image_write.h │ │ ├── tinycthread.c │ │ ├── tinycthread.h │ │ └── vs2008 │ │ │ └── stdint.h │ ├── include │ │ └── GLFW │ │ │ ├── glfw3.h │ │ │ └── glfw3native.h │ └── src │ │ ├── CMakeLists.txt │ │ ├── cocoa_init.m │ │ ├── cocoa_joystick.h │ │ ├── cocoa_joystick.m │ │ ├── cocoa_monitor.m │ │ ├── cocoa_platform.h │ │ ├── cocoa_time.c │ │ ├── cocoa_time.h │ │ ├── cocoa_window.m │ │ ├── context.c │ │ ├── egl_context.c │ │ ├── glfw.rc.in │ │ ├── glx_context.c │ │ ├── init.c │ │ ├── input.c │ │ ├── internal.h │ │ ├── linux_joystick.c │ │ ├── linux_joystick.h │ │ ├── mappings.h │ │ ├── mappings.h.in │ │ ├── monitor.c │ │ ├── nsgl_context.m │ │ ├── null_init.c │ │ ├── null_joystick.c │ │ ├── null_joystick.h │ │ ├── null_monitor.c │ │ ├── null_platform.h │ │ ├── null_window.c │ │ ├── osmesa_context.c │ │ ├── platform.c │ │ ├── platform.h │ │ ├── posix_module.c │ │ ├── posix_thread.c │ │ ├── posix_thread.h │ │ ├── posix_time.c │ │ ├── posix_time.h │ │ ├── vulkan.c │ │ ├── wgl_context.c │ │ ├── win32_init.c │ │ ├── win32_joystick.c │ │ ├── win32_joystick.h │ │ ├── win32_module.c │ │ ├── win32_monitor.c │ │ ├── win32_platform.h │ │ ├── win32_thread.c │ │ ├── win32_thread.h │ │ ├── win32_time.c │ │ ├── win32_time.h │ │ ├── win32_window.c │ │ ├── window.c │ │ ├── wl_init.c │ │ ├── wl_monitor.c │ │ ├── wl_platform.h │ │ ├── wl_window.c │ │ ├── x11_init.c │ │ ├── x11_monitor.c │ │ ├── x11_platform.h │ │ ├── x11_window.c │ │ ├── xkb_unicode.c │ │ └── xkb_unicode.h ├── glm │ ├── .gitignore │ ├── CMakeLists.txt │ ├── cmake │ │ └── cmake_uninstall.cmake.in │ ├── copying.txt │ ├── glm │ │ ├── CMakeLists.txt │ │ ├── common.hpp │ │ ├── detail │ │ │ ├── _features.hpp │ │ │ ├── _fixes.hpp │ │ │ ├── _noise.hpp │ │ │ ├── _swizzle.hpp │ │ │ ├── _swizzle_func.hpp │ │ │ ├── _vectorize.hpp │ │ │ ├── compute_common.hpp │ │ │ ├── compute_vector_decl.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_vectorize.hpp │ │ │ ├── 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_integer.hpp │ │ │ ├── matrix_integer.inl │ │ │ ├── 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_reciprocal.hpp │ │ │ ├── scalar_reciprocal.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_reciprocal.hpp │ │ │ ├── vector_reciprocal.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.cppm │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── optimum_pow.hpp │ │ │ ├── optimum_pow.inl │ │ │ ├── orthonormalize.hpp │ │ │ ├── orthonormalize.inl │ │ │ ├── pca.hpp │ │ │ ├── pca.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 │ ├── readme.md │ ├── test │ │ ├── CMakeLists.txt │ │ ├── bug │ │ │ ├── CMakeLists.txt │ │ │ └── bug_ms_vec_static.cpp │ │ ├── cmake │ │ │ ├── CMakeLists.txt │ │ │ └── test_find_glm.cpp │ │ ├── core │ │ │ ├── CMakeLists.txt │ │ │ ├── core_cpp_constexpr.cpp │ │ │ ├── core_cpp_defaulted_ctor.cpp │ │ │ ├── core_force_aligned_gentypes.cpp │ │ │ ├── core_force_arch_unknown.cpp │ │ │ ├── core_force_compiler_unknown.cpp │ │ │ ├── core_force_ctor_init.cpp │ │ │ ├── core_force_depth_zero_to_one.cpp │ │ │ ├── core_force_explicit_ctor.cpp │ │ │ ├── core_force_inline.cpp │ │ │ ├── core_force_left_handed.cpp │ │ │ ├── core_force_platform_unknown.cpp │ │ │ ├── core_force_pure.cpp │ │ │ ├── core_force_quat_wxyz.cpp │ │ │ ├── core_force_size_t_length.cpp │ │ │ ├── core_force_unrestricted_gentype.cpp │ │ │ ├── core_force_xyzw_only.cpp │ │ │ ├── core_func_common.cpp │ │ │ ├── core_func_exponential.cpp │ │ │ ├── core_func_geometric.cpp │ │ │ ├── core_func_integer.cpp │ │ │ ├── core_func_integer_bit_count.cpp │ │ │ ├── core_func_integer_find_lsb.cpp │ │ │ ├── core_func_integer_find_msb.cpp │ │ │ ├── core_func_matrix.cpp │ │ │ ├── core_func_noise.cpp │ │ │ ├── core_func_packing.cpp │ │ │ ├── core_func_swizzle.cpp │ │ │ ├── core_func_trigonometric.cpp │ │ │ ├── core_func_vector_relational.cpp │ │ │ ├── core_setup_force_cxx03.cpp │ │ │ ├── core_setup_force_cxx98.cpp │ │ │ ├── core_setup_force_cxx_unknown.cpp │ │ │ ├── core_setup_force_size_t_length.cpp │ │ │ ├── core_setup_message.cpp │ │ │ ├── core_setup_platform_unknown.cpp │ │ │ ├── core_setup_precision.cpp │ │ │ ├── core_type_aligned.cpp │ │ │ ├── core_type_cast.cpp │ │ │ ├── core_type_ctor.cpp │ │ │ ├── core_type_int.cpp │ │ │ ├── core_type_length.cpp │ │ │ ├── core_type_mat2x2.cpp │ │ │ ├── core_type_mat2x3.cpp │ │ │ ├── core_type_mat2x4.cpp │ │ │ ├── core_type_mat3x2.cpp │ │ │ ├── core_type_mat3x3.cpp │ │ │ ├── core_type_mat3x4.cpp │ │ │ ├── core_type_mat4x2.cpp │ │ │ ├── core_type_mat4x3.cpp │ │ │ ├── core_type_mat4x4.cpp │ │ │ ├── core_type_vec1.cpp │ │ │ ├── core_type_vec2.cpp │ │ │ ├── core_type_vec3.cpp │ │ │ └── core_type_vec4.cpp │ │ ├── ext │ │ │ ├── CMakeLists.txt │ │ │ ├── ext_matrix_clip_space.cpp │ │ │ ├── ext_matrix_common.cpp │ │ │ ├── ext_matrix_int2x2_sized.cpp │ │ │ ├── ext_matrix_int2x3_sized.cpp │ │ │ ├── ext_matrix_int2x4_sized.cpp │ │ │ ├── ext_matrix_int3x2_sized.cpp │ │ │ ├── ext_matrix_int3x3_sized.cpp │ │ │ ├── ext_matrix_int3x4_sized.cpp │ │ │ ├── ext_matrix_int4x2_sized.cpp │ │ │ ├── ext_matrix_int4x3_sized.cpp │ │ │ ├── ext_matrix_int4x4_sized.cpp │ │ │ ├── ext_matrix_integer.cpp │ │ │ ├── ext_matrix_projection.cpp │ │ │ ├── ext_matrix_relational.cpp │ │ │ ├── ext_matrix_transform.cpp │ │ │ ├── ext_matrix_uint2x2_sized.cpp │ │ │ ├── ext_matrix_uint2x3_sized.cpp │ │ │ ├── ext_matrix_uint2x4_sized.cpp │ │ │ ├── ext_matrix_uint3x2_sized.cpp │ │ │ ├── ext_matrix_uint3x3_sized.cpp │ │ │ ├── ext_matrix_uint3x4_sized.cpp │ │ │ ├── ext_matrix_uint4x2_sized.cpp │ │ │ ├── ext_matrix_uint4x3_sized.cpp │ │ │ ├── ext_matrix_uint4x4_sized.cpp │ │ │ ├── ext_quaternion_common.cpp │ │ │ ├── ext_quaternion_exponential.cpp │ │ │ ├── ext_quaternion_geometric.cpp │ │ │ ├── ext_quaternion_relational.cpp │ │ │ ├── ext_quaternion_transform.cpp │ │ │ ├── ext_quaternion_trigonometric.cpp │ │ │ ├── ext_quaternion_type.cpp │ │ │ ├── ext_scalar_common.cpp │ │ │ ├── ext_scalar_constants.cpp │ │ │ ├── ext_scalar_int_sized.cpp │ │ │ ├── ext_scalar_integer.cpp │ │ │ ├── ext_scalar_packing.cpp │ │ │ ├── ext_scalar_reciprocal.cpp │ │ │ ├── ext_scalar_relational.cpp │ │ │ ├── ext_scalar_uint_sized.cpp │ │ │ ├── ext_scalar_ulp.cpp │ │ │ ├── ext_vec1.cpp │ │ │ ├── ext_vector_bool1.cpp │ │ │ ├── ext_vector_common.cpp │ │ │ ├── ext_vector_iec559.cpp │ │ │ ├── ext_vector_int1_sized.cpp │ │ │ ├── ext_vector_int2_sized.cpp │ │ │ ├── ext_vector_int3_sized.cpp │ │ │ ├── ext_vector_int4_sized.cpp │ │ │ ├── ext_vector_integer.cpp │ │ │ ├── ext_vector_integer_sized.cpp │ │ │ ├── ext_vector_packing.cpp │ │ │ ├── ext_vector_reciprocal.cpp │ │ │ ├── ext_vector_relational.cpp │ │ │ ├── ext_vector_uint1_sized.cpp │ │ │ ├── ext_vector_uint2_sized.cpp │ │ │ ├── ext_vector_uint3_sized.cpp │ │ │ ├── ext_vector_uint4_sized.cpp │ │ │ └── ext_vector_ulp.cpp │ │ ├── glm.cppcheck │ │ ├── gtc │ │ │ ├── CMakeLists.txt │ │ │ ├── gtc_bitfield.cpp │ │ │ ├── gtc_color_space.cpp │ │ │ ├── gtc_constants.cpp │ │ │ ├── gtc_epsilon.cpp │ │ │ ├── gtc_integer.cpp │ │ │ ├── gtc_matrix_access.cpp │ │ │ ├── gtc_matrix_integer.cpp │ │ │ ├── gtc_matrix_inverse.cpp │ │ │ ├── gtc_matrix_transform.cpp │ │ │ ├── gtc_noise.cpp │ │ │ ├── gtc_packing.cpp │ │ │ ├── gtc_quaternion.cpp │ │ │ ├── gtc_random.cpp │ │ │ ├── gtc_reciprocal.cpp │ │ │ ├── gtc_round.cpp │ │ │ ├── gtc_type_aligned.cpp │ │ │ ├── gtc_type_precision.cpp │ │ │ ├── gtc_type_ptr.cpp │ │ │ ├── gtc_ulp.cpp │ │ │ ├── gtc_user_defined_types.cpp │ │ │ └── gtc_vec1.cpp │ │ ├── gtx │ │ │ ├── CMakeLists.txt │ │ │ ├── gtx.cpp │ │ │ ├── gtx_associated_min_max.cpp │ │ │ ├── gtx_closest_point.cpp │ │ │ ├── gtx_color_encoding.cpp │ │ │ ├── gtx_color_space.cpp │ │ │ ├── gtx_color_space_YCoCg.cpp │ │ │ ├── gtx_common.cpp │ │ │ ├── gtx_compatibility.cpp │ │ │ ├── gtx_component_wise.cpp │ │ │ ├── gtx_dual_quaternion.cpp │ │ │ ├── gtx_easing.cpp │ │ │ ├── gtx_euler_angle.cpp │ │ │ ├── gtx_extend.cpp │ │ │ ├── gtx_extended_min_max.cpp │ │ │ ├── gtx_extented_min_max.cpp │ │ │ ├── gtx_exterior_product.cpp │ │ │ ├── gtx_fast_exponential.cpp │ │ │ ├── gtx_fast_square_root.cpp │ │ │ ├── gtx_fast_trigonometry.cpp │ │ │ ├── gtx_functions.cpp │ │ │ ├── gtx_gradient_paint.cpp │ │ │ ├── gtx_handed_coordinate_space.cpp │ │ │ ├── gtx_hash.cpp │ │ │ ├── gtx_int_10_10_10_2.cpp │ │ │ ├── gtx_integer.cpp │ │ │ ├── gtx_intersect.cpp │ │ │ ├── gtx_io.cpp │ │ │ ├── gtx_load.cpp │ │ │ ├── gtx_log_base.cpp │ │ │ ├── gtx_matrix_cross_product.cpp │ │ │ ├── gtx_matrix_decompose.cpp │ │ │ ├── gtx_matrix_factorisation.cpp │ │ │ ├── gtx_matrix_interpolation.cpp │ │ │ ├── gtx_matrix_major_storage.cpp │ │ │ ├── gtx_matrix_operation.cpp │ │ │ ├── gtx_matrix_query.cpp │ │ │ ├── gtx_matrix_transform_2d.cpp │ │ │ ├── gtx_mixed_product.cpp │ │ │ ├── gtx_norm.cpp │ │ │ ├── gtx_normal.cpp │ │ │ ├── gtx_normalize_dot.cpp │ │ │ ├── gtx_optimum_pow.cpp │ │ │ ├── gtx_orthonormalize.cpp │ │ │ ├── gtx_pca.cpp │ │ │ ├── gtx_perpendicular.cpp │ │ │ ├── gtx_polar_coordinates.cpp │ │ │ ├── gtx_projection.cpp │ │ │ ├── gtx_quaternion.cpp │ │ │ ├── gtx_random.cpp │ │ │ ├── gtx_range.cpp │ │ │ ├── gtx_rotate_normalized_axis.cpp │ │ │ ├── gtx_rotate_vector.cpp │ │ │ ├── gtx_scalar_multiplication.cpp │ │ │ ├── gtx_scalar_relational.cpp │ │ │ ├── gtx_simd_mat4.cpp │ │ │ ├── gtx_simd_vec4.cpp │ │ │ ├── gtx_spline.cpp │ │ │ ├── gtx_string_cast.cpp │ │ │ ├── gtx_texture.cpp │ │ │ ├── gtx_type_aligned.cpp │ │ │ ├── gtx_type_trait.cpp │ │ │ ├── gtx_vec_swizzle.cpp │ │ │ ├── gtx_vector_angle.cpp │ │ │ ├── gtx_vector_query.cpp │ │ │ └── gtx_wrap.cpp │ │ └── perf │ │ │ ├── CMakeLists.txt │ │ │ ├── perf_matrix_div.cpp │ │ │ ├── perf_matrix_inverse.cpp │ │ │ ├── perf_matrix_mul.cpp │ │ │ ├── perf_matrix_mul_vector.cpp │ │ │ ├── perf_matrix_transpose.cpp │ │ │ └── perf_vector_mul_matrix.cpp │ └── util │ │ ├── autoexp.txt │ │ ├── autoexp.vc2010.dat │ │ ├── glm.natvis │ │ └── usertype.dat ├── glob │ ├── CMakeLists.txt │ ├── glob.cpp │ └── glob.h ├── miniaudio │ ├── LICENSE │ ├── README.md │ └── miniaudio.h ├── miniz │ ├── miniz.cpp │ └── miniz.h ├── phonedepth │ ├── CMakeLists.txt │ ├── LICENSE │ ├── extract_depthmap.cpp │ └── extract_depthmap.h ├── skymodel │ ├── ArHosekSkyModel.cpp │ ├── ArHosekSkyModel.h │ ├── ArHosekSkyModelData_CIEXYZ.h │ ├── ArHosekSkyModelData_RGB.h │ ├── ArHosekSkyModelData_Spectral.h │ ├── CMakeLists.txt │ └── README.txt ├── stb │ ├── CMakeLists.txt │ ├── stb_image.cpp │ ├── stb_image.h │ ├── stb_image_write.cpp │ └── stb_image_write.h ├── tinyexr │ └── tinyexr.h ├── tinygltf │ ├── json.hpp │ └── tiny_gltf.h ├── tinyobjloader │ └── tiny_obj_loader.h └── tinyply │ └── tinyply.h ├── glfw3.i ├── glm.i ├── include └── vera │ ├── app.h │ ├── gl │ ├── cubemapFace.h │ ├── defines.h │ ├── fbo.h │ ├── flood.h │ ├── gl.h │ ├── pingpong.h │ ├── pyramid.h │ ├── shader.h │ ├── texture.h │ ├── textureBump.h │ ├── textureCube.h │ ├── textureProps.h │ ├── textureStream.h │ ├── textureStreamAV.h │ ├── textureStreamAudio.h │ ├── textureStreamMMAL.h │ ├── textureStreamOMX.h │ ├── textureStreamSequence.h │ ├── uniform.h │ ├── vbo.h │ └── vertexLayout.h │ ├── io │ ├── gltf.h │ ├── obj.h │ ├── ply.h │ └── stl.h │ ├── ops │ ├── color.h │ ├── draw.h │ ├── env.h │ ├── fs.h │ ├── geom.h │ ├── image.h │ ├── intersection.h │ ├── math.h │ ├── meshes.h │ ├── pixel.h │ ├── string.h │ └── time.h │ ├── shaders │ ├── billboard.h │ ├── cubemap.h │ ├── default.h │ ├── defaultShaders.h │ ├── default_buffers.h │ ├── default_error.h │ ├── default_scene.h │ ├── devlook.h │ ├── draw.h │ ├── dynamic_billboard.h │ ├── fxaa.h │ ├── jumpFlood.h │ ├── light_ui.h │ ├── plot.h │ └── poissonfill.h │ ├── types │ ├── boundingBox.h │ ├── bvh.h │ ├── camera.h │ ├── font.h │ ├── image.h │ ├── label.h │ ├── light.h │ ├── line.h │ ├── material.h │ ├── mesh.h │ ├── model.h │ ├── node.h │ ├── plane.h │ ├── polarPoint.h │ ├── polyline.h │ ├── props.h │ ├── ray.h │ ├── scene.h │ ├── sky.h │ └── triangle.h │ ├── window.h │ └── xr │ ├── holoPlay.h │ └── xr.h ├── numpy.i ├── src ├── CMakeLists.txt ├── app.cpp ├── gl │ ├── defines.cpp │ ├── fbo.cpp │ ├── flood.cpp │ ├── gl.cpp │ ├── pingpong.cpp │ ├── pyramid.cpp │ ├── shader.cpp │ ├── texture.cpp │ ├── textureBump.cpp │ ├── textureCube.cpp │ ├── textureProps.cpp │ ├── textureStreamAV.cpp │ ├── textureStreamAudio.cpp │ ├── textureStreamMMAL.cpp │ ├── textureStreamOMX.cpp │ ├── textureStreamSequence.cpp │ ├── uniform.cpp │ ├── vbo.cpp │ └── vertexLayout.cpp ├── io │ ├── gltf.cpp │ ├── obj.cpp │ ├── ply.cpp │ └── stl.cpp ├── ops │ ├── color.cpp │ ├── draw.cpp │ ├── env.cpp │ ├── fs.cpp │ ├── geom.cpp │ ├── image.cpp │ ├── intersection.cpp │ ├── meshes.cpp │ ├── pixel.cpp │ ├── string.cpp │ └── time.cpp ├── shaders │ └── defaultShaders.cpp ├── types │ ├── bvh.cpp │ ├── camera.cpp │ ├── font.cpp │ ├── image.cpp │ ├── label.cpp │ ├── light.cpp │ ├── line.cpp │ ├── material.cpp │ ├── mesh.cpp │ ├── model.cpp │ ├── node.cpp │ ├── polarPoint.cpp │ ├── polyline.cpp │ ├── scene.cpp │ └── triangle.cpp ├── window.cpp └── xr │ ├── holoPlay.cpp │ └── xr.cpp └── vera.i /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/vera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/.github/vera.jpg -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/__init__.py -------------------------------------------------------------------------------- /cmake/ECMFindModuleHelpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/cmake/ECMFindModuleHelpers.cmake -------------------------------------------------------------------------------- /cmake/FindBROADCOM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/cmake/FindBROADCOM.cmake -------------------------------------------------------------------------------- /cmake/FindDRM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/cmake/FindDRM.cmake -------------------------------------------------------------------------------- /cmake/FindEGL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/cmake/FindEGL.cmake -------------------------------------------------------------------------------- /cmake/FindFFMPEG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/cmake/FindFFMPEG.cmake -------------------------------------------------------------------------------- /cmake/FindGBM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/cmake/FindGBM.cmake -------------------------------------------------------------------------------- /cmake/FindGLESv2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/cmake/FindGLESv2.cmake -------------------------------------------------------------------------------- /cmake/FindILCLIENT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/cmake/FindILCLIENT.cmake -------------------------------------------------------------------------------- /cmake/FindMMAL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/cmake/FindMMAL.cmake -------------------------------------------------------------------------------- /cmake/FindOMAX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/cmake/FindOMAX.cmake -------------------------------------------------------------------------------- /cmake/FindXCB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/cmake/FindXCB.cmake -------------------------------------------------------------------------------- /deps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/CMakeLists.txt -------------------------------------------------------------------------------- /deps/emscripten-webxr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/emscripten-webxr/CMakeLists.txt -------------------------------------------------------------------------------- /deps/emscripten-webxr/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/emscripten-webxr/COPYING -------------------------------------------------------------------------------- /deps/emscripten-webxr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/emscripten-webxr/README.md -------------------------------------------------------------------------------- /deps/emscripten-webxr/library_webxr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/emscripten-webxr/library_webxr.js -------------------------------------------------------------------------------- /deps/emscripten-webxr/webxr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/emscripten-webxr/webxr.h -------------------------------------------------------------------------------- /deps/fontstash/fontstash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/fontstash/fontstash.h -------------------------------------------------------------------------------- /deps/fontstash/glfontstash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/fontstash/glfontstash.h -------------------------------------------------------------------------------- /deps/fontstash/sdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/fontstash/sdf.h -------------------------------------------------------------------------------- /deps/fontstash/shaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/fontstash/shaders.h -------------------------------------------------------------------------------- /deps/fontstash/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/fontstash/stb_truetype.h -------------------------------------------------------------------------------- /deps/glew/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glew/CMakeLists.txt -------------------------------------------------------------------------------- /deps/glew/build/glew.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glew/build/glew.rc -------------------------------------------------------------------------------- /deps/glew/build/glewinfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glew/build/glewinfo.rc -------------------------------------------------------------------------------- /deps/glew/build/visualinfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glew/build/visualinfo.rc -------------------------------------------------------------------------------- /deps/glew/include/GL/eglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glew/include/GL/eglew.h -------------------------------------------------------------------------------- /deps/glew/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glew/include/GL/glew.h -------------------------------------------------------------------------------- /deps/glew/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glew/include/GL/glxew.h -------------------------------------------------------------------------------- /deps/glew/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glew/include/GL/wglew.h -------------------------------------------------------------------------------- /deps/glew/src/glew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glew/src/glew.c -------------------------------------------------------------------------------- /deps/glew/src/glewinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glew/src/glewinfo.c -------------------------------------------------------------------------------- /deps/glew/src/visualinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glew/src/visualinfo.c -------------------------------------------------------------------------------- /deps/glfw/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/.DS_Store -------------------------------------------------------------------------------- /deps/glfw/CMake/GenerateMappings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/CMake/GenerateMappings.cmake -------------------------------------------------------------------------------- /deps/glfw/CMake/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/CMake/Info.plist.in -------------------------------------------------------------------------------- /deps/glfw/CMake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/CMake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /deps/glfw/CMake/glfw3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/CMake/glfw3.pc.in -------------------------------------------------------------------------------- /deps/glfw/CMake/glfw3Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/CMake/glfw3Config.cmake.in -------------------------------------------------------------------------------- /deps/glfw/CMake/i686-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/CMake/i686-w64-mingw32.cmake -------------------------------------------------------------------------------- /deps/glfw/CMake/modules/FindEpollShim.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/CMake/modules/FindEpollShim.cmake -------------------------------------------------------------------------------- /deps/glfw/CMake/modules/FindOSMesa.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/CMake/modules/FindOSMesa.cmake -------------------------------------------------------------------------------- /deps/glfw/CMake/x86_64-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/CMake/x86_64-w64-mingw32.cmake -------------------------------------------------------------------------------- /deps/glfw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/CMakeLists.txt -------------------------------------------------------------------------------- /deps/glfw/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/CONTRIBUTORS.md -------------------------------------------------------------------------------- /deps/glfw/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/LICENSE.md -------------------------------------------------------------------------------- /deps/glfw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/README.md -------------------------------------------------------------------------------- /deps/glfw/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /deps/glfw/deps/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/deps/.DS_Store -------------------------------------------------------------------------------- /deps/glfw/deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/deps/getopt.c -------------------------------------------------------------------------------- /deps/glfw/deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/deps/getopt.h -------------------------------------------------------------------------------- /deps/glfw/deps/glad/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/deps/glad/gl.h -------------------------------------------------------------------------------- /deps/glfw/deps/glad/gles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/deps/glad/gles2.h -------------------------------------------------------------------------------- /deps/glfw/deps/glad/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/deps/glad/vulkan.h -------------------------------------------------------------------------------- /deps/glfw/deps/linmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/deps/linmath.h -------------------------------------------------------------------------------- /deps/glfw/deps/mingw/_mingw_dxhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/deps/mingw/_mingw_dxhelper.h -------------------------------------------------------------------------------- /deps/glfw/deps/mingw/dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/deps/mingw/dinput.h -------------------------------------------------------------------------------- /deps/glfw/deps/mingw/xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/deps/mingw/xinput.h -------------------------------------------------------------------------------- /deps/glfw/deps/nuklear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/deps/nuklear.h -------------------------------------------------------------------------------- /deps/glfw/deps/nuklear_glfw_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/deps/nuklear_glfw_gl2.h -------------------------------------------------------------------------------- /deps/glfw/deps/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/deps/stb_image_write.h -------------------------------------------------------------------------------- /deps/glfw/deps/tinycthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/deps/tinycthread.c -------------------------------------------------------------------------------- /deps/glfw/deps/tinycthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/deps/tinycthread.h -------------------------------------------------------------------------------- /deps/glfw/deps/vs2008/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/deps/vs2008/stdint.h -------------------------------------------------------------------------------- /deps/glfw/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /deps/glfw/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /deps/glfw/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/CMakeLists.txt -------------------------------------------------------------------------------- /deps/glfw/src/cocoa_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/cocoa_init.m -------------------------------------------------------------------------------- /deps/glfw/src/cocoa_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/cocoa_joystick.h -------------------------------------------------------------------------------- /deps/glfw/src/cocoa_joystick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/cocoa_joystick.m -------------------------------------------------------------------------------- /deps/glfw/src/cocoa_monitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/cocoa_monitor.m -------------------------------------------------------------------------------- /deps/glfw/src/cocoa_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/cocoa_platform.h -------------------------------------------------------------------------------- /deps/glfw/src/cocoa_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/cocoa_time.c -------------------------------------------------------------------------------- /deps/glfw/src/cocoa_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/cocoa_time.h -------------------------------------------------------------------------------- /deps/glfw/src/cocoa_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/cocoa_window.m -------------------------------------------------------------------------------- /deps/glfw/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/context.c -------------------------------------------------------------------------------- /deps/glfw/src/egl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/egl_context.c -------------------------------------------------------------------------------- /deps/glfw/src/glfw.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/glfw.rc.in -------------------------------------------------------------------------------- /deps/glfw/src/glx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/glx_context.c -------------------------------------------------------------------------------- /deps/glfw/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/init.c -------------------------------------------------------------------------------- /deps/glfw/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/input.c -------------------------------------------------------------------------------- /deps/glfw/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/internal.h -------------------------------------------------------------------------------- /deps/glfw/src/linux_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/linux_joystick.c -------------------------------------------------------------------------------- /deps/glfw/src/linux_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/linux_joystick.h -------------------------------------------------------------------------------- /deps/glfw/src/mappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/mappings.h -------------------------------------------------------------------------------- /deps/glfw/src/mappings.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/mappings.h.in -------------------------------------------------------------------------------- /deps/glfw/src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/monitor.c -------------------------------------------------------------------------------- /deps/glfw/src/nsgl_context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/nsgl_context.m -------------------------------------------------------------------------------- /deps/glfw/src/null_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/null_init.c -------------------------------------------------------------------------------- /deps/glfw/src/null_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/null_joystick.c -------------------------------------------------------------------------------- /deps/glfw/src/null_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/null_joystick.h -------------------------------------------------------------------------------- /deps/glfw/src/null_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/null_monitor.c -------------------------------------------------------------------------------- /deps/glfw/src/null_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/null_platform.h -------------------------------------------------------------------------------- /deps/glfw/src/null_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/null_window.c -------------------------------------------------------------------------------- /deps/glfw/src/osmesa_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/osmesa_context.c -------------------------------------------------------------------------------- /deps/glfw/src/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/platform.c -------------------------------------------------------------------------------- /deps/glfw/src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/platform.h -------------------------------------------------------------------------------- /deps/glfw/src/posix_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/posix_module.c -------------------------------------------------------------------------------- /deps/glfw/src/posix_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/posix_thread.c -------------------------------------------------------------------------------- /deps/glfw/src/posix_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/posix_thread.h -------------------------------------------------------------------------------- /deps/glfw/src/posix_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/posix_time.c -------------------------------------------------------------------------------- /deps/glfw/src/posix_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/posix_time.h -------------------------------------------------------------------------------- /deps/glfw/src/vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/vulkan.c -------------------------------------------------------------------------------- /deps/glfw/src/wgl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/wgl_context.c -------------------------------------------------------------------------------- /deps/glfw/src/win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/win32_init.c -------------------------------------------------------------------------------- /deps/glfw/src/win32_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/win32_joystick.c -------------------------------------------------------------------------------- /deps/glfw/src/win32_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/win32_joystick.h -------------------------------------------------------------------------------- /deps/glfw/src/win32_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/win32_module.c -------------------------------------------------------------------------------- /deps/glfw/src/win32_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/win32_monitor.c -------------------------------------------------------------------------------- /deps/glfw/src/win32_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/win32_platform.h -------------------------------------------------------------------------------- /deps/glfw/src/win32_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/win32_thread.c -------------------------------------------------------------------------------- /deps/glfw/src/win32_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/win32_thread.h -------------------------------------------------------------------------------- /deps/glfw/src/win32_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/win32_time.c -------------------------------------------------------------------------------- /deps/glfw/src/win32_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/win32_time.h -------------------------------------------------------------------------------- /deps/glfw/src/win32_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/win32_window.c -------------------------------------------------------------------------------- /deps/glfw/src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/window.c -------------------------------------------------------------------------------- /deps/glfw/src/wl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/wl_init.c -------------------------------------------------------------------------------- /deps/glfw/src/wl_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/wl_monitor.c -------------------------------------------------------------------------------- /deps/glfw/src/wl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/wl_platform.h -------------------------------------------------------------------------------- /deps/glfw/src/wl_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/wl_window.c -------------------------------------------------------------------------------- /deps/glfw/src/x11_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/x11_init.c -------------------------------------------------------------------------------- /deps/glfw/src/x11_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/x11_monitor.c -------------------------------------------------------------------------------- /deps/glfw/src/x11_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/x11_platform.h -------------------------------------------------------------------------------- /deps/glfw/src/x11_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/x11_window.c -------------------------------------------------------------------------------- /deps/glfw/src/xkb_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/xkb_unicode.c -------------------------------------------------------------------------------- /deps/glfw/src/xkb_unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glfw/src/xkb_unicode.h -------------------------------------------------------------------------------- /deps/glm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/.gitignore -------------------------------------------------------------------------------- /deps/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/CMakeLists.txt -------------------------------------------------------------------------------- /deps/glm/cmake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/cmake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /deps/glm/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/copying.txt -------------------------------------------------------------------------------- /deps/glm/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/CMakeLists.txt -------------------------------------------------------------------------------- /deps/glm/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/common.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/_features.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/compute_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/compute_common.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/compute_vector_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/compute_vector_decl.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/func_common.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/func_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/func_common_simd.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/func_geometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/func_geometric_simd.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/func_integer_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/func_integer_simd.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/func_matrix_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/func_matrix_simd.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/func_packing_simd.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/glm/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/glm.cpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/qualifier.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/setup.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_half.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_mat4x4_simd.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_quat.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_quat.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_quat_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_quat_simd.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /deps/glm/glm/detail/type_vec4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/detail/type_vec4_simd.inl -------------------------------------------------------------------------------- /deps/glm/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/exponential.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/_matrix_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/_matrix_vectorize.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_clip_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_clip_space.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_clip_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_clip_space.inl -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_common.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_common.inl -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_double2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_double2x2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_double2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_double2x3.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_double2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_double2x4.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_double3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_double3x2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_double3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_double3x3.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_double3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_double3x4.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_double4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_double4x2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_double4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_double4x3.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_double4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_double4x4.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_float2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_float2x2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_float2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_float2x3.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_float2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_float2x4.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_float3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_float3x2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_float3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_float3x3.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_float3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_float3x4.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_float4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_float4x2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_float4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_float4x3.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_float4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_float4x4.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_int2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_int2x2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_int2x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_int2x2_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_int2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_int2x3.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_int2x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_int2x3_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_int2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_int2x4.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_int2x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_int2x4_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_int3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_int3x2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_int3x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_int3x2_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_int3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_int3x3.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_int3x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_int3x3_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_int3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_int3x4.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_int3x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_int3x4_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_int4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_int4x2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_int4x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_int4x2_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_int4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_int4x3.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_int4x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_int4x3_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_int4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_int4x4.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_int4x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_int4x4_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_integer.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_integer.inl -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_projection.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_projection.inl -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_relational.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_relational.inl -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_transform.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_transform.inl -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_uint2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_uint2x2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_uint2x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_uint2x2_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_uint2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_uint2x3.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_uint2x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_uint2x3_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_uint2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_uint2x4.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_uint2x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_uint2x4_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_uint3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_uint3x2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_uint3x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_uint3x2_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_uint3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_uint3x3.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_uint3x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_uint3x3_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_uint3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_uint3x4.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_uint3x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_uint3x4_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_uint4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_uint4x2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_uint4x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_uint4x2_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_uint4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_uint4x3.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_uint4x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_uint4x3_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_uint4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_uint4x4.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/matrix_uint4x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/matrix_uint4x4_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/quaternion_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/quaternion_common.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/quaternion_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/quaternion_common.inl -------------------------------------------------------------------------------- /deps/glm/glm/ext/quaternion_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/quaternion_common_simd.inl -------------------------------------------------------------------------------- /deps/glm/glm/ext/quaternion_double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/quaternion_double.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/quaternion_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/quaternion_exponential.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/quaternion_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/quaternion_exponential.inl -------------------------------------------------------------------------------- /deps/glm/glm/ext/quaternion_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/quaternion_float.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/quaternion_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/quaternion_geometric.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/quaternion_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/quaternion_geometric.inl -------------------------------------------------------------------------------- /deps/glm/glm/ext/quaternion_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/quaternion_relational.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/quaternion_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/quaternion_relational.inl -------------------------------------------------------------------------------- /deps/glm/glm/ext/quaternion_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/quaternion_transform.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/quaternion_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/quaternion_transform.inl -------------------------------------------------------------------------------- /deps/glm/glm/ext/scalar_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/scalar_common.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/scalar_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/scalar_common.inl -------------------------------------------------------------------------------- /deps/glm/glm/ext/scalar_constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/scalar_constants.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/scalar_constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/scalar_constants.inl -------------------------------------------------------------------------------- /deps/glm/glm/ext/scalar_int_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/scalar_int_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/scalar_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/scalar_integer.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/scalar_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/scalar_integer.inl -------------------------------------------------------------------------------- /deps/glm/glm/ext/scalar_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/scalar_packing.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/scalar_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/glm/glm/ext/scalar_reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/scalar_reciprocal.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/scalar_reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/scalar_reciprocal.inl -------------------------------------------------------------------------------- /deps/glm/glm/ext/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/scalar_relational.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/scalar_relational.inl -------------------------------------------------------------------------------- /deps/glm/glm/ext/scalar_uint_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/scalar_uint_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/scalar_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/scalar_ulp.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/scalar_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/scalar_ulp.inl -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_bool1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_bool1.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_bool1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_bool1_precision.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_bool2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_bool2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_bool2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_bool2_precision.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_bool3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_bool3.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_bool3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_bool3_precision.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_bool4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_bool4.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_bool4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_bool4_precision.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_common.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_common.inl -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_double1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_double1.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_double2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_double2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_double3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_double3.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_double4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_double4.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_float1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_float1.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_float2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_float2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_float3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_float3.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_float4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_float4.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_int1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_int1.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_int1_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_int1_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_int2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_int2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_int2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_int2_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_int3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_int3.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_int3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_int3_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_int4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_int4.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_int4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_int4_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_integer.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_integer.inl -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_packing.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_reciprocal.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_reciprocal.inl -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_relational.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_relational.inl -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_uint1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_uint1.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_uint1_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_uint1_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_uint2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_uint2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_uint2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_uint2_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_uint3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_uint3.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_uint3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_uint3_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_uint4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_uint4.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_uint4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_uint4_sized.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_ulp.hpp -------------------------------------------------------------------------------- /deps/glm/glm/ext/vector_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/ext/vector_ulp.inl -------------------------------------------------------------------------------- /deps/glm/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/fwd.hpp -------------------------------------------------------------------------------- /deps/glm/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/geometric.hpp -------------------------------------------------------------------------------- /deps/glm/glm/glm.cppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/glm.cppm -------------------------------------------------------------------------------- /deps/glm/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/glm.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/constants.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/integer.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/noise.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/packing.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/glm/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/random.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/random.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/round.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/round.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /deps/glm/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/bit.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/color_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/color_encoding.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/color_encoding.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/common.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/common.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/easing.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/extend.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/extended_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/extended_min_max.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/extended_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/extended_min_max.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/exterior_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/exterior_product.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/exterior_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/exterior_product.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/float_notmalize.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/functions.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/hash.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/integer.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/io.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/io.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/matrix_factorisation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/matrix_factorisation.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/matrix_factorisation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/matrix_factorisation.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/norm.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/normal.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/pca.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/pca.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/pca.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/pca.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/projection.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/range.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /deps/glm/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/scalar_multiplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/scalar_multiplication.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/spline.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /deps/glm/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/texture.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/transform.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /deps/glm/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /deps/glm/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /deps/glm/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /deps/glm/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/integer.hpp -------------------------------------------------------------------------------- /deps/glm/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/mat2x2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/mat2x3.hpp -------------------------------------------------------------------------------- /deps/glm/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/mat2x4.hpp -------------------------------------------------------------------------------- /deps/glm/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/mat3x2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/mat3x3.hpp -------------------------------------------------------------------------------- /deps/glm/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/mat3x4.hpp -------------------------------------------------------------------------------- /deps/glm/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/mat4x2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/mat4x3.hpp -------------------------------------------------------------------------------- /deps/glm/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/mat4x4.hpp -------------------------------------------------------------------------------- /deps/glm/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/matrix.hpp -------------------------------------------------------------------------------- /deps/glm/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/packing.hpp -------------------------------------------------------------------------------- /deps/glm/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/simd/common.h -------------------------------------------------------------------------------- /deps/glm/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/simd/exponential.h -------------------------------------------------------------------------------- /deps/glm/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/simd/geometric.h -------------------------------------------------------------------------------- /deps/glm/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/simd/integer.h -------------------------------------------------------------------------------- /deps/glm/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/simd/matrix.h -------------------------------------------------------------------------------- /deps/glm/glm/simd/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/simd/neon.h -------------------------------------------------------------------------------- /deps/glm/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/simd/packing.h -------------------------------------------------------------------------------- /deps/glm/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/simd/platform.h -------------------------------------------------------------------------------- /deps/glm/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /deps/glm/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/simd/vector_relational.h -------------------------------------------------------------------------------- /deps/glm/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/trigonometric.hpp -------------------------------------------------------------------------------- /deps/glm/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/vec2.hpp -------------------------------------------------------------------------------- /deps/glm/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/vec3.hpp -------------------------------------------------------------------------------- /deps/glm/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/vec4.hpp -------------------------------------------------------------------------------- /deps/glm/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/glm/vector_relational.hpp -------------------------------------------------------------------------------- /deps/glm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/readme.md -------------------------------------------------------------------------------- /deps/glm/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/CMakeLists.txt -------------------------------------------------------------------------------- /deps/glm/test/bug/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | glmCreateTestGTC(bug_ms_vec_static) 2 | -------------------------------------------------------------------------------- /deps/glm/test/bug/bug_ms_vec_static.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/bug/bug_ms_vec_static.cpp -------------------------------------------------------------------------------- /deps/glm/test/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /deps/glm/test/cmake/test_find_glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/cmake/test_find_glm.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/CMakeLists.txt -------------------------------------------------------------------------------- /deps/glm/test/core/core_cpp_constexpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_cpp_constexpr.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_force_ctor_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_force_ctor_init.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_force_inline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_force_inline.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_force_pure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_force_pure.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_force_quat_wxyz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_force_quat_wxyz.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_force_xyzw_only.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_force_xyzw_only.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_func_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_func_common.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_func_geometric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_func_geometric.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_func_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_func_integer.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_func_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_func_matrix.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_func_noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_func_noise.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_func_packing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_func_packing.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_func_swizzle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_func_swizzle.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_setup_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_setup_message.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_setup_precision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_setup_precision.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_type_aligned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_type_aligned.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_type_cast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_type_cast.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_type_ctor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_type_ctor.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_type_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_type_int.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_type_length.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_type_length.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_type_mat2x2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_type_mat2x2.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_type_mat2x3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_type_mat2x3.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_type_mat2x4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_type_mat2x4.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_type_mat3x2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_type_mat3x2.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_type_mat3x3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_type_mat3x3.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_type_mat3x4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_type_mat3x4.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_type_mat4x2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_type_mat4x2.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_type_mat4x3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_type_mat4x3.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_type_mat4x4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_type_mat4x4.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_type_vec1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_type_vec1.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_type_vec2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_type_vec2.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_type_vec3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_type_vec3.cpp -------------------------------------------------------------------------------- /deps/glm/test/core/core_type_vec4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/core/core_type_vec4.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/CMakeLists.txt -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_matrix_clip_space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_matrix_clip_space.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_matrix_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_matrix_common.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_matrix_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_matrix_integer.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_matrix_projection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_matrix_projection.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_matrix_relational.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_matrix_relational.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_matrix_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_matrix_transform.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_quaternion_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_quaternion_common.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_quaternion_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_quaternion_type.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_scalar_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_scalar_common.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_scalar_constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_scalar_constants.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_scalar_int_sized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_scalar_int_sized.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_scalar_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_scalar_integer.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_scalar_packing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_scalar_packing.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_scalar_reciprocal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_scalar_reciprocal.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_scalar_relational.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_scalar_relational.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_scalar_uint_sized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_scalar_uint_sized.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_scalar_ulp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_scalar_ulp.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_vec1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_vec1.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_vector_bool1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_vector_bool1.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_vector_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_vector_common.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_vector_iec559.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_vector_iec559.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_vector_int1_sized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_vector_int1_sized.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_vector_int2_sized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_vector_int2_sized.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_vector_int3_sized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_vector_int3_sized.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_vector_int4_sized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_vector_int4_sized.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_vector_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_vector_integer.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_vector_packing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_vector_packing.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_vector_reciprocal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_vector_reciprocal.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_vector_relational.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_vector_relational.cpp -------------------------------------------------------------------------------- /deps/glm/test/ext/ext_vector_ulp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/ext/ext_vector_ulp.cpp -------------------------------------------------------------------------------- /deps/glm/test/glm.cppcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/glm.cppcheck -------------------------------------------------------------------------------- /deps/glm/test/gtc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtc/CMakeLists.txt -------------------------------------------------------------------------------- /deps/glm/test/gtc/gtc_bitfield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtc/gtc_bitfield.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtc/gtc_color_space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtc/gtc_color_space.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtc/gtc_constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtc/gtc_constants.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtc/gtc_epsilon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtc/gtc_epsilon.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtc/gtc_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtc/gtc_integer.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtc/gtc_matrix_access.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtc/gtc_matrix_access.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtc/gtc_matrix_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtc/gtc_matrix_integer.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtc/gtc_matrix_inverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtc/gtc_matrix_inverse.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtc/gtc_matrix_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtc/gtc_matrix_transform.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtc/gtc_noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtc/gtc_noise.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtc/gtc_packing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtc/gtc_packing.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtc/gtc_quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtc/gtc_quaternion.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtc/gtc_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtc/gtc_random.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtc/gtc_reciprocal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtc/gtc_reciprocal.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtc/gtc_round.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtc/gtc_round.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtc/gtc_type_aligned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtc/gtc_type_aligned.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtc/gtc_type_precision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtc/gtc_type_precision.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtc/gtc_type_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtc/gtc_type_ptr.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtc/gtc_ulp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtc/gtc_ulp.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtc/gtc_vec1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtc/gtc_vec1.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/CMakeLists.txt -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_closest_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_closest_point.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_color_encoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_color_encoding.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_color_space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_color_space.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_color_space_YCoCg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_color_space_YCoCg.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_common.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_compatibility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_compatibility.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_component_wise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_component_wise.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_dual_quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_dual_quaternion.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_easing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_easing.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_euler_angle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_euler_angle.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_extend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_extend.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_extended_min_max.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_extended_min_max.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_functions.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_gradient_paint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_gradient_paint.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_hash.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_int_10_10_10_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_int_10_10_10_2.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_integer.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_intersect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_intersect.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_io.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_load.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_log_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_log_base.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_matrix_query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_matrix_query.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_mixed_product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_mixed_product.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_norm.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_normal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_normal.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_normalize_dot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_normalize_dot.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_optimum_pow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_optimum_pow.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_orthonormalize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_orthonormalize.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_pca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_pca.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_perpendicular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_perpendicular.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_projection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_projection.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_quaternion.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_random.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_range.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_rotate_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_rotate_vector.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_simd_mat4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_simd_mat4.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_simd_vec4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_simd_vec4.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_spline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_spline.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_string_cast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_string_cast.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_texture.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_type_aligned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_type_aligned.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_type_trait.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_type_trait.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_vec_swizzle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_vec_swizzle.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_vector_angle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_vector_angle.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_vector_query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_vector_query.cpp -------------------------------------------------------------------------------- /deps/glm/test/gtx/gtx_wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/gtx/gtx_wrap.cpp -------------------------------------------------------------------------------- /deps/glm/test/perf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/perf/CMakeLists.txt -------------------------------------------------------------------------------- /deps/glm/test/perf/perf_matrix_div.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/perf/perf_matrix_div.cpp -------------------------------------------------------------------------------- /deps/glm/test/perf/perf_matrix_mul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/test/perf/perf_matrix_mul.cpp -------------------------------------------------------------------------------- /deps/glm/util/autoexp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/util/autoexp.txt -------------------------------------------------------------------------------- /deps/glm/util/autoexp.vc2010.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/util/autoexp.vc2010.dat -------------------------------------------------------------------------------- /deps/glm/util/glm.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/util/glm.natvis -------------------------------------------------------------------------------- /deps/glm/util/usertype.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glm/util/usertype.dat -------------------------------------------------------------------------------- /deps/glob/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glob/CMakeLists.txt -------------------------------------------------------------------------------- /deps/glob/glob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glob/glob.cpp -------------------------------------------------------------------------------- /deps/glob/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/glob/glob.h -------------------------------------------------------------------------------- /deps/miniaudio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/miniaudio/LICENSE -------------------------------------------------------------------------------- /deps/miniaudio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/miniaudio/README.md -------------------------------------------------------------------------------- /deps/miniaudio/miniaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/miniaudio/miniaudio.h -------------------------------------------------------------------------------- /deps/miniz/miniz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/miniz/miniz.cpp -------------------------------------------------------------------------------- /deps/miniz/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/miniz/miniz.h -------------------------------------------------------------------------------- /deps/phonedepth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/phonedepth/CMakeLists.txt -------------------------------------------------------------------------------- /deps/phonedepth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/phonedepth/LICENSE -------------------------------------------------------------------------------- /deps/phonedepth/extract_depthmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/phonedepth/extract_depthmap.cpp -------------------------------------------------------------------------------- /deps/phonedepth/extract_depthmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/phonedepth/extract_depthmap.h -------------------------------------------------------------------------------- /deps/skymodel/ArHosekSkyModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/skymodel/ArHosekSkyModel.cpp -------------------------------------------------------------------------------- /deps/skymodel/ArHosekSkyModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/skymodel/ArHosekSkyModel.h -------------------------------------------------------------------------------- /deps/skymodel/ArHosekSkyModelData_RGB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/skymodel/ArHosekSkyModelData_RGB.h -------------------------------------------------------------------------------- /deps/skymodel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/skymodel/CMakeLists.txt -------------------------------------------------------------------------------- /deps/skymodel/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/skymodel/README.txt -------------------------------------------------------------------------------- /deps/stb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/stb/CMakeLists.txt -------------------------------------------------------------------------------- /deps/stb/stb_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/stb/stb_image.cpp -------------------------------------------------------------------------------- /deps/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/stb/stb_image.h -------------------------------------------------------------------------------- /deps/stb/stb_image_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/stb/stb_image_write.cpp -------------------------------------------------------------------------------- /deps/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/stb/stb_image_write.h -------------------------------------------------------------------------------- /deps/tinyexr/tinyexr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/tinyexr/tinyexr.h -------------------------------------------------------------------------------- /deps/tinygltf/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/tinygltf/json.hpp -------------------------------------------------------------------------------- /deps/tinygltf/tiny_gltf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/tinygltf/tiny_gltf.h -------------------------------------------------------------------------------- /deps/tinyobjloader/tiny_obj_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/tinyobjloader/tiny_obj_loader.h -------------------------------------------------------------------------------- /deps/tinyply/tinyply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/deps/tinyply/tinyply.h -------------------------------------------------------------------------------- /glfw3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/glfw3.i -------------------------------------------------------------------------------- /glm.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/glm.i -------------------------------------------------------------------------------- /include/vera/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/app.h -------------------------------------------------------------------------------- /include/vera/gl/cubemapFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/gl/cubemapFace.h -------------------------------------------------------------------------------- /include/vera/gl/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/gl/defines.h -------------------------------------------------------------------------------- /include/vera/gl/fbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/gl/fbo.h -------------------------------------------------------------------------------- /include/vera/gl/flood.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/gl/flood.h -------------------------------------------------------------------------------- /include/vera/gl/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/gl/gl.h -------------------------------------------------------------------------------- /include/vera/gl/pingpong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/gl/pingpong.h -------------------------------------------------------------------------------- /include/vera/gl/pyramid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/gl/pyramid.h -------------------------------------------------------------------------------- /include/vera/gl/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/gl/shader.h -------------------------------------------------------------------------------- /include/vera/gl/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/gl/texture.h -------------------------------------------------------------------------------- /include/vera/gl/textureBump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/gl/textureBump.h -------------------------------------------------------------------------------- /include/vera/gl/textureCube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/gl/textureCube.h -------------------------------------------------------------------------------- /include/vera/gl/textureProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/gl/textureProps.h -------------------------------------------------------------------------------- /include/vera/gl/textureStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/gl/textureStream.h -------------------------------------------------------------------------------- /include/vera/gl/textureStreamAV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/gl/textureStreamAV.h -------------------------------------------------------------------------------- /include/vera/gl/textureStreamAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/gl/textureStreamAudio.h -------------------------------------------------------------------------------- /include/vera/gl/textureStreamMMAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/gl/textureStreamMMAL.h -------------------------------------------------------------------------------- /include/vera/gl/textureStreamOMX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/gl/textureStreamOMX.h -------------------------------------------------------------------------------- /include/vera/gl/textureStreamSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/gl/textureStreamSequence.h -------------------------------------------------------------------------------- /include/vera/gl/uniform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/gl/uniform.h -------------------------------------------------------------------------------- /include/vera/gl/vbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/gl/vbo.h -------------------------------------------------------------------------------- /include/vera/gl/vertexLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/gl/vertexLayout.h -------------------------------------------------------------------------------- /include/vera/io/gltf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/io/gltf.h -------------------------------------------------------------------------------- /include/vera/io/obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/io/obj.h -------------------------------------------------------------------------------- /include/vera/io/ply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/io/ply.h -------------------------------------------------------------------------------- /include/vera/io/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/io/stl.h -------------------------------------------------------------------------------- /include/vera/ops/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/ops/color.h -------------------------------------------------------------------------------- /include/vera/ops/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/ops/draw.h -------------------------------------------------------------------------------- /include/vera/ops/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/ops/env.h -------------------------------------------------------------------------------- /include/vera/ops/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/ops/fs.h -------------------------------------------------------------------------------- /include/vera/ops/geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/ops/geom.h -------------------------------------------------------------------------------- /include/vera/ops/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/ops/image.h -------------------------------------------------------------------------------- /include/vera/ops/intersection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/ops/intersection.h -------------------------------------------------------------------------------- /include/vera/ops/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/ops/math.h -------------------------------------------------------------------------------- /include/vera/ops/meshes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/ops/meshes.h -------------------------------------------------------------------------------- /include/vera/ops/pixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/ops/pixel.h -------------------------------------------------------------------------------- /include/vera/ops/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/ops/string.h -------------------------------------------------------------------------------- /include/vera/ops/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/ops/time.h -------------------------------------------------------------------------------- /include/vera/shaders/billboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/shaders/billboard.h -------------------------------------------------------------------------------- /include/vera/shaders/cubemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/shaders/cubemap.h -------------------------------------------------------------------------------- /include/vera/shaders/default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/shaders/default.h -------------------------------------------------------------------------------- /include/vera/shaders/defaultShaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/shaders/defaultShaders.h -------------------------------------------------------------------------------- /include/vera/shaders/default_buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/shaders/default_buffers.h -------------------------------------------------------------------------------- /include/vera/shaders/default_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/shaders/default_error.h -------------------------------------------------------------------------------- /include/vera/shaders/default_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/shaders/default_scene.h -------------------------------------------------------------------------------- /include/vera/shaders/devlook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/shaders/devlook.h -------------------------------------------------------------------------------- /include/vera/shaders/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/shaders/draw.h -------------------------------------------------------------------------------- /include/vera/shaders/dynamic_billboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/shaders/dynamic_billboard.h -------------------------------------------------------------------------------- /include/vera/shaders/fxaa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/shaders/fxaa.h -------------------------------------------------------------------------------- /include/vera/shaders/jumpFlood.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/shaders/jumpFlood.h -------------------------------------------------------------------------------- /include/vera/shaders/light_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/shaders/light_ui.h -------------------------------------------------------------------------------- /include/vera/shaders/plot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/shaders/plot.h -------------------------------------------------------------------------------- /include/vera/shaders/poissonfill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/shaders/poissonfill.h -------------------------------------------------------------------------------- /include/vera/types/boundingBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/types/boundingBox.h -------------------------------------------------------------------------------- /include/vera/types/bvh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/types/bvh.h -------------------------------------------------------------------------------- /include/vera/types/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/types/camera.h -------------------------------------------------------------------------------- /include/vera/types/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/types/font.h -------------------------------------------------------------------------------- /include/vera/types/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/types/image.h -------------------------------------------------------------------------------- /include/vera/types/label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/types/label.h -------------------------------------------------------------------------------- /include/vera/types/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/types/light.h -------------------------------------------------------------------------------- /include/vera/types/line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/types/line.h -------------------------------------------------------------------------------- /include/vera/types/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/types/material.h -------------------------------------------------------------------------------- /include/vera/types/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/types/mesh.h -------------------------------------------------------------------------------- /include/vera/types/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/types/model.h -------------------------------------------------------------------------------- /include/vera/types/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/types/node.h -------------------------------------------------------------------------------- /include/vera/types/plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/types/plane.h -------------------------------------------------------------------------------- /include/vera/types/polarPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/types/polarPoint.h -------------------------------------------------------------------------------- /include/vera/types/polyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/types/polyline.h -------------------------------------------------------------------------------- /include/vera/types/props.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/types/props.h -------------------------------------------------------------------------------- /include/vera/types/ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/types/ray.h -------------------------------------------------------------------------------- /include/vera/types/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/types/scene.h -------------------------------------------------------------------------------- /include/vera/types/sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/types/sky.h -------------------------------------------------------------------------------- /include/vera/types/triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/types/triangle.h -------------------------------------------------------------------------------- /include/vera/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/window.h -------------------------------------------------------------------------------- /include/vera/xr/holoPlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/xr/holoPlay.h -------------------------------------------------------------------------------- /include/vera/xr/xr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/include/vera/xr/xr.h -------------------------------------------------------------------------------- /numpy.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/numpy.i -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/app.cpp -------------------------------------------------------------------------------- /src/gl/defines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/gl/defines.cpp -------------------------------------------------------------------------------- /src/gl/fbo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/gl/fbo.cpp -------------------------------------------------------------------------------- /src/gl/flood.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/gl/flood.cpp -------------------------------------------------------------------------------- /src/gl/gl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/gl/gl.cpp -------------------------------------------------------------------------------- /src/gl/pingpong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/gl/pingpong.cpp -------------------------------------------------------------------------------- /src/gl/pyramid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/gl/pyramid.cpp -------------------------------------------------------------------------------- /src/gl/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/gl/shader.cpp -------------------------------------------------------------------------------- /src/gl/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/gl/texture.cpp -------------------------------------------------------------------------------- /src/gl/textureBump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/gl/textureBump.cpp -------------------------------------------------------------------------------- /src/gl/textureCube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/gl/textureCube.cpp -------------------------------------------------------------------------------- /src/gl/textureProps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/gl/textureProps.cpp -------------------------------------------------------------------------------- /src/gl/textureStreamAV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/gl/textureStreamAV.cpp -------------------------------------------------------------------------------- /src/gl/textureStreamAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/gl/textureStreamAudio.cpp -------------------------------------------------------------------------------- /src/gl/textureStreamMMAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/gl/textureStreamMMAL.cpp -------------------------------------------------------------------------------- /src/gl/textureStreamOMX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/gl/textureStreamOMX.cpp -------------------------------------------------------------------------------- /src/gl/textureStreamSequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/gl/textureStreamSequence.cpp -------------------------------------------------------------------------------- /src/gl/uniform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/gl/uniform.cpp -------------------------------------------------------------------------------- /src/gl/vbo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/gl/vbo.cpp -------------------------------------------------------------------------------- /src/gl/vertexLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/gl/vertexLayout.cpp -------------------------------------------------------------------------------- /src/io/gltf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/io/gltf.cpp -------------------------------------------------------------------------------- /src/io/obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/io/obj.cpp -------------------------------------------------------------------------------- /src/io/ply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/io/ply.cpp -------------------------------------------------------------------------------- /src/io/stl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/io/stl.cpp -------------------------------------------------------------------------------- /src/ops/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/ops/color.cpp -------------------------------------------------------------------------------- /src/ops/draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/ops/draw.cpp -------------------------------------------------------------------------------- /src/ops/env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/ops/env.cpp -------------------------------------------------------------------------------- /src/ops/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/ops/fs.cpp -------------------------------------------------------------------------------- /src/ops/geom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/ops/geom.cpp -------------------------------------------------------------------------------- /src/ops/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/ops/image.cpp -------------------------------------------------------------------------------- /src/ops/intersection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/ops/intersection.cpp -------------------------------------------------------------------------------- /src/ops/meshes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/ops/meshes.cpp -------------------------------------------------------------------------------- /src/ops/pixel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/ops/pixel.cpp -------------------------------------------------------------------------------- /src/ops/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/ops/string.cpp -------------------------------------------------------------------------------- /src/ops/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/ops/time.cpp -------------------------------------------------------------------------------- /src/shaders/defaultShaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/shaders/defaultShaders.cpp -------------------------------------------------------------------------------- /src/types/bvh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/types/bvh.cpp -------------------------------------------------------------------------------- /src/types/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/types/camera.cpp -------------------------------------------------------------------------------- /src/types/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/types/font.cpp -------------------------------------------------------------------------------- /src/types/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/types/image.cpp -------------------------------------------------------------------------------- /src/types/label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/types/label.cpp -------------------------------------------------------------------------------- /src/types/light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/types/light.cpp -------------------------------------------------------------------------------- /src/types/line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/types/line.cpp -------------------------------------------------------------------------------- /src/types/material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/types/material.cpp -------------------------------------------------------------------------------- /src/types/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/types/mesh.cpp -------------------------------------------------------------------------------- /src/types/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/types/model.cpp -------------------------------------------------------------------------------- /src/types/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/types/node.cpp -------------------------------------------------------------------------------- /src/types/polarPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/types/polarPoint.cpp -------------------------------------------------------------------------------- /src/types/polyline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/types/polyline.cpp -------------------------------------------------------------------------------- /src/types/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/types/scene.cpp -------------------------------------------------------------------------------- /src/types/triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/types/triangle.cpp -------------------------------------------------------------------------------- /src/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/window.cpp -------------------------------------------------------------------------------- /src/xr/holoPlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/xr/holoPlay.cpp -------------------------------------------------------------------------------- /src/xr/xr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/src/xr/xr.cpp -------------------------------------------------------------------------------- /vera.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patriciogonzalezvivo/vera/HEAD/vera.i --------------------------------------------------------------------------------