├── .gitignore ├── CMake ├── Modules │ └── FindGLFW.cmake └── README.md ├── CMakeLists.txt ├── Examples ├── BlinkColorTriangle │ ├── CMakeLists.txt │ └── main.cpp ├── CMakeLists.txt ├── Content │ ├── sample.png │ └── sample2.png ├── External │ ├── glm │ │ ├── CMakeLists.txt │ │ ├── common.hpp │ │ ├── detail │ │ │ ├── _features.hpp │ │ │ ├── _fixes.hpp │ │ │ ├── _literals.hpp │ │ │ ├── _noise.hpp │ │ │ ├── _swizzle.hpp │ │ │ ├── _swizzle_func.hpp │ │ │ ├── _vectorize.hpp │ │ │ ├── dummy.cpp │ │ │ ├── func_common.hpp │ │ │ ├── func_common.inl │ │ │ ├── func_exponential.hpp │ │ │ ├── func_exponential.inl │ │ │ ├── func_geometric.hpp │ │ │ ├── func_geometric.inl │ │ │ ├── func_integer.hpp │ │ │ ├── func_integer.inl │ │ │ ├── func_matrix.hpp │ │ │ ├── func_matrix.inl │ │ │ ├── func_noise.hpp │ │ │ ├── func_noise.inl │ │ │ ├── func_packing.hpp │ │ │ ├── func_packing.inl │ │ │ ├── func_trigonometric.hpp │ │ │ ├── func_trigonometric.inl │ │ │ ├── func_vector_relational.hpp │ │ │ ├── func_vector_relational.inl │ │ │ ├── glm.cpp │ │ │ ├── hint.hpp │ │ │ ├── intrinsic_common.hpp │ │ │ ├── intrinsic_common.inl │ │ │ ├── intrinsic_exponential.hpp │ │ │ ├── intrinsic_exponential.inl │ │ │ ├── intrinsic_geometric.hpp │ │ │ ├── intrinsic_geometric.inl │ │ │ ├── intrinsic_integer.hpp │ │ │ ├── intrinsic_integer.inl │ │ │ ├── intrinsic_matrix.hpp │ │ │ ├── intrinsic_matrix.inl │ │ │ ├── intrinsic_trigonometric.hpp │ │ │ ├── intrinsic_trigonometric.inl │ │ │ ├── intrinsic_vector_relational.hpp │ │ │ ├── intrinsic_vector_relational.inl │ │ │ ├── precision.hpp │ │ │ ├── precision.inl │ │ │ ├── setup.hpp │ │ │ ├── type_float.hpp │ │ │ ├── type_gentype.hpp │ │ │ ├── type_gentype.inl │ │ │ ├── type_half.hpp │ │ │ ├── type_half.inl │ │ │ ├── type_int.hpp │ │ │ ├── type_mat.hpp │ │ │ ├── type_mat.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_vec.hpp │ │ │ ├── type_vec.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 │ │ ├── exponential.hpp │ │ ├── ext.hpp │ │ ├── fwd.hpp │ │ ├── geometric.hpp │ │ ├── glm.hpp │ │ ├── gtc │ │ │ ├── constants.hpp │ │ │ ├── constants.inl │ │ │ ├── epsilon.hpp │ │ │ ├── epsilon.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 │ │ │ ├── random.hpp │ │ │ ├── random.inl │ │ │ ├── reciprocal.hpp │ │ │ ├── reciprocal.inl │ │ │ ├── type_precision.hpp │ │ │ ├── type_precision.inl │ │ │ ├── type_ptr.hpp │ │ │ ├── type_ptr.inl │ │ │ ├── ulp.hpp │ │ │ └── ulp.inl │ │ ├── gtx │ │ │ ├── associated_min_max.hpp │ │ │ ├── associated_min_max.inl │ │ │ ├── bit.hpp │ │ │ ├── bit.inl │ │ │ ├── closest_point.hpp │ │ │ ├── closest_point.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── color_space_YCoCg.hpp │ │ │ ├── color_space_YCoCg.inl │ │ │ ├── compatibility.hpp │ │ │ ├── compatibility.inl │ │ │ ├── component_wise.hpp │ │ │ ├── component_wise.inl │ │ │ ├── constants.hpp │ │ │ ├── dual_quaternion.hpp │ │ │ ├── dual_quaternion.inl │ │ │ ├── epsilon.hpp │ │ │ ├── euler_angles.hpp │ │ │ ├── euler_angles.inl │ │ │ ├── extend.hpp │ │ │ ├── extend.inl │ │ │ ├── extented_min_max.hpp │ │ │ ├── extented_min_max.inl │ │ │ ├── fast_exponential.hpp │ │ │ ├── fast_exponential.inl │ │ │ ├── fast_square_root.hpp │ │ │ ├── fast_square_root.inl │ │ │ ├── fast_trigonometry.hpp │ │ │ ├── fast_trigonometry.inl │ │ │ ├── gradient_paint.hpp │ │ │ ├── gradient_paint.inl │ │ │ ├── handed_coordinate_space.hpp │ │ │ ├── handed_coordinate_space.inl │ │ │ ├── inertia.hpp │ │ │ ├── inertia.inl │ │ │ ├── int_10_10_10_2.hpp │ │ │ ├── int_10_10_10_2.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_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 │ │ │ ├── multiple.hpp │ │ │ ├── multiple.inl │ │ │ ├── noise.hpp │ │ │ ├── norm.hpp │ │ │ ├── norm.inl │ │ │ ├── normal.hpp │ │ │ ├── normal.inl │ │ │ ├── normalize_dot.hpp │ │ │ ├── normalize_dot.inl │ │ │ ├── number_precision.hpp │ │ │ ├── number_precision.inl │ │ │ ├── optimum_pow.hpp │ │ │ ├── optimum_pow.inl │ │ │ ├── orthonormalize.hpp │ │ │ ├── orthonormalize.inl │ │ │ ├── perpendicular.hpp │ │ │ ├── perpendicular.inl │ │ │ ├── polar_coordinates.hpp │ │ │ ├── polar_coordinates.inl │ │ │ ├── projection.hpp │ │ │ ├── projection.inl │ │ │ ├── quaternion.hpp │ │ │ ├── quaternion.inl │ │ │ ├── random.hpp │ │ │ ├── raw_data.hpp │ │ │ ├── raw_data.inl │ │ │ ├── reciprocal.hpp │ │ │ ├── rotate_normalized_axis.hpp │ │ │ ├── rotate_normalized_axis.inl │ │ │ ├── rotate_vector.hpp │ │ │ ├── rotate_vector.inl │ │ │ ├── scalar_relational.hpp │ │ │ ├── scalar_relational.inl │ │ │ ├── simd_mat4.hpp │ │ │ ├── simd_mat4.inl │ │ │ ├── simd_quat.hpp │ │ │ ├── simd_quat.inl │ │ │ ├── simd_vec4.hpp │ │ │ ├── simd_vec4.inl │ │ │ ├── spline.hpp │ │ │ ├── spline.inl │ │ │ ├── std_based_type.hpp │ │ │ ├── std_based_type.inl │ │ │ ├── string_cast.hpp │ │ │ ├── string_cast.inl │ │ │ ├── transform.hpp │ │ │ ├── transform.inl │ │ │ ├── transform2.hpp │ │ │ ├── transform2.inl │ │ │ ├── ulp.hpp │ │ │ ├── unsigned_int.hpp │ │ │ ├── unsigned_int.inl │ │ │ ├── vec1.hpp │ │ │ ├── vec1.inl │ │ │ ├── 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 │ │ ├── trigonometric.hpp │ │ ├── vec2.hpp │ │ ├── vec3.hpp │ │ ├── vec4.hpp │ │ └── vector_relational.hpp │ └── stb_image.h ├── MirroredCube │ ├── CMakeLists.txt │ └── main.cpp ├── TexturedQuad │ ├── CMakeLists.txt │ └── main.cpp ├── Transformations │ ├── CMakeLists.txt │ └── main.cpp ├── Triangle │ ├── CMakeLists.txt │ └── main.cpp └── Window │ ├── CMakeLists.txt │ └── main.cpp ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /CMake/Modules/FindGLFW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/CMake/Modules/FindGLFW.cmake -------------------------------------------------------------------------------- /CMake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/CMake/README.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/BlinkColorTriangle/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/BlinkColorTriangle/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/BlinkColorTriangle/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/BlinkColorTriangle/main.cpp -------------------------------------------------------------------------------- /Examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/Content/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/Content/sample.png -------------------------------------------------------------------------------- /Examples/Content/sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/Content/sample2.png -------------------------------------------------------------------------------- /Examples/External/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/External/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/common.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/_features.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/_literals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/_literals.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/dummy.cpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/func_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/func_common.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/func_common.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/func_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/func_exponential.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/func_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/func_geometric.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/func_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/func_integer.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/func_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/func_matrix.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/func_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/func_noise.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/func_noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/func_noise.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/func_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/func_packing.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/func_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/func_trigonometric.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/func_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/func_vector_relational.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/glm.cpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/hint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/hint.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/intrinsic_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/intrinsic_common.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/intrinsic_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/intrinsic_common.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/intrinsic_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/intrinsic_exponential.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/intrinsic_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/intrinsic_exponential.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/intrinsic_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/intrinsic_geometric.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/intrinsic_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/intrinsic_geometric.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/intrinsic_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/intrinsic_integer.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/intrinsic_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/intrinsic_integer.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/intrinsic_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/intrinsic_matrix.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/intrinsic_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/intrinsic_matrix.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/intrinsic_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/intrinsic_trigonometric.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/intrinsic_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/intrinsic_trigonometric.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/intrinsic_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/intrinsic_vector_relational.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/intrinsic_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/intrinsic_vector_relational.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/precision.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/precision.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/External/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/setup.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_gentype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_gentype.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_gentype.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_gentype.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_half.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_int.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_mat.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_mat.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_vec.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_vec.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /Examples/External/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /Examples/External/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/exponential.hpp -------------------------------------------------------------------------------- /Examples/External/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/ext.hpp -------------------------------------------------------------------------------- /Examples/External/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/fwd.hpp -------------------------------------------------------------------------------- /Examples/External/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/geometric.hpp -------------------------------------------------------------------------------- /Examples/External/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/glm.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/constants.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/noise.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/packing.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/random.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/random.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/type_precision.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/bit.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/constants.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/epsilon.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/extend.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/extented_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/extented_min_max.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/extented_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/extented_min_max.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/inertia.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/inertia.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/inertia.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/inertia.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/int_10_10_10_2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/int_10_10_10_2.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/int_10_10_10_2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/int_10_10_10_2.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/integer.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/io.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/io.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/multiple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/multiple.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/multiple.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/multiple.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/noise.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/norm.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/normal.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/number_precision.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/projection.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/random.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/reciprocal.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/simd_mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/simd_mat4.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/simd_mat4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/simd_mat4.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/simd_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/simd_quat.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/simd_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/simd_quat.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/simd_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/simd_vec4.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/simd_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/simd_vec4.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/spline.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/std_based_type.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/transform.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/ulp.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/unsigned_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/unsigned_int.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/unsigned_int.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/unsigned_int.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/vec1.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/vec1.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /Examples/External/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /Examples/External/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /Examples/External/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/integer.hpp -------------------------------------------------------------------------------- /Examples/External/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/mat2x2.hpp -------------------------------------------------------------------------------- /Examples/External/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/mat2x3.hpp -------------------------------------------------------------------------------- /Examples/External/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/mat2x4.hpp -------------------------------------------------------------------------------- /Examples/External/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/mat3x2.hpp -------------------------------------------------------------------------------- /Examples/External/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/mat3x3.hpp -------------------------------------------------------------------------------- /Examples/External/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/mat3x4.hpp -------------------------------------------------------------------------------- /Examples/External/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/mat4x2.hpp -------------------------------------------------------------------------------- /Examples/External/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/mat4x3.hpp -------------------------------------------------------------------------------- /Examples/External/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/mat4x4.hpp -------------------------------------------------------------------------------- /Examples/External/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/matrix.hpp -------------------------------------------------------------------------------- /Examples/External/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/packing.hpp -------------------------------------------------------------------------------- /Examples/External/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/trigonometric.hpp -------------------------------------------------------------------------------- /Examples/External/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/vec2.hpp -------------------------------------------------------------------------------- /Examples/External/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/vec3.hpp -------------------------------------------------------------------------------- /Examples/External/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/vec4.hpp -------------------------------------------------------------------------------- /Examples/External/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/glm/vector_relational.hpp -------------------------------------------------------------------------------- /Examples/External/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/External/stb_image.h -------------------------------------------------------------------------------- /Examples/MirroredCube/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/MirroredCube/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/MirroredCube/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/MirroredCube/main.cpp -------------------------------------------------------------------------------- /Examples/TexturedQuad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/TexturedQuad/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/TexturedQuad/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/TexturedQuad/main.cpp -------------------------------------------------------------------------------- /Examples/Transformations/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/Transformations/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/Transformations/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/Transformations/main.cpp -------------------------------------------------------------------------------- /Examples/Triangle/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/Triangle/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/Triangle/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/Triangle/main.cpp -------------------------------------------------------------------------------- /Examples/Window/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/Window/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/Window/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/Examples/Window/main.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuck/opengl-examples/HEAD/README.md --------------------------------------------------------------------------------