glm/glm/ext.hpp

102 lines
2.9 KiB
C++
Raw Normal View History

2016-05-01 10:29:11 +00:00
/// @file glm/ext.hpp
///
/// @ref core (Dependence)
2010-04-29 10:54:07 +00:00
#include "detail/setup.hpp"
2014-07-13 23:48:27 +00:00
#pragma once
2010-04-29 10:54:07 +00:00
#include "glm.hpp"
2018-07-11 22:47:38 +00:00
#if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_MESSAGE_EXT_INCLUDED_DISPLAYED)
2011-01-19 15:44:05 +00:00
# define GLM_MESSAGE_EXT_INCLUDED_DISPLAYED
2018-03-27 17:04:44 +00:00
# pragma message("GLM: All extensions included (not recommended)")
2011-01-19 16:41:58 +00:00
#endif//GLM_MESSAGES
2011-01-19 15:44:05 +00:00
#include "./ext/vec1.hpp"
#include "./ext/vector_relational.hpp"
2014-11-03 23:06:20 +00:00
#include "./gtc/bitfield.hpp"
2016-09-11 00:50:37 +00:00
#include "./gtc/color_space.hpp"
#include "./gtc/constants.hpp"
#include "./gtc/epsilon.hpp"
2014-11-24 23:16:03 +00:00
#include "./gtc/integer.hpp"
2010-04-30 10:11:09 +00:00
#include "./gtc/matrix_access.hpp"
2011-01-20 12:16:28 +00:00
#include "./gtc/matrix_integer.hpp"
2010-12-13 12:19:51 +00:00
#include "./gtc/matrix_inverse.hpp"
2010-04-30 10:11:09 +00:00
#include "./gtc/matrix_transform.hpp"
#include "./gtc/noise.hpp"
2013-12-25 22:32:35 +00:00
#include "./gtc/packing.hpp"
2010-04-30 10:11:09 +00:00
#include "./gtc/quaternion.hpp"
#include "./gtc/random.hpp"
#include "./gtc/reciprocal.hpp"
2014-11-03 23:06:20 +00:00
#include "./gtc/round.hpp"
2010-04-30 10:11:09 +00:00
#include "./gtc/type_precision.hpp"
#include "./gtc/type_ptr.hpp"
#include "./gtc/ulp.hpp"
#include "./gtc/vec1.hpp"
2018-07-23 18:13:40 +00:00
#if GLM_USE_ALIGNED_GENTYPES == GLM_ENABLE
2016-07-17 01:37:24 +00:00
# include "./gtc/type_aligned.hpp"
#endif
2010-04-29 10:54:07 +00:00
2016-11-12 13:19:22 +00:00
#ifdef GLM_ENABLE_EXPERIMENTAL
2010-04-29 10:56:52 +00:00
#include "./gtx/associated_min_max.hpp"
#include "./gtx/bit.hpp"
#include "./gtx/closest_point.hpp"
2016-11-20 20:50:12 +00:00
#include "./gtx/color_encoding.hpp"
2010-04-29 10:56:52 +00:00
#include "./gtx/color_space.hpp"
#include "./gtx/color_space_YCoCg.hpp"
#include "./gtx/compatibility.hpp"
#include "./gtx/component_wise.hpp"
#include "./gtx/dual_quaternion.hpp"
2010-04-29 10:56:52 +00:00
#include "./gtx/euler_angles.hpp"
#include "./gtx/extend.hpp"
#include "./gtx/extended_min_max.hpp"
2010-04-29 10:56:52 +00:00
#include "./gtx/fast_exponential.hpp"
#include "./gtx/fast_square_root.hpp"
#include "./gtx/fast_trigonometry.hpp"
2017-08-17 14:24:32 +00:00
#include "./gtx/functions.hpp"
2010-04-29 10:56:52 +00:00
#include "./gtx/gradient_paint.hpp"
#include "./gtx/handed_coordinate_space.hpp"
#include "./gtx/integer.hpp"
#include "./gtx/intersect.hpp"
#include "./gtx/log_base.hpp"
#include "./gtx/matrix_cross_product.hpp"
#include "./gtx/matrix_interpolation.hpp"
2010-04-29 10:56:52 +00:00
#include "./gtx/matrix_major_storage.hpp"
2010-04-30 08:59:43 +00:00
#include "./gtx/matrix_operation.hpp"
2010-04-29 10:56:52 +00:00
#include "./gtx/matrix_query.hpp"
#include "./gtx/mixed_product.hpp"
#include "./gtx/norm.hpp"
#include "./gtx/normal.hpp"
#include "./gtx/normalize_dot.hpp"
#include "./gtx/number_precision.hpp"
#include "./gtx/optimum_pow.hpp"
#include "./gtx/orthonormalize.hpp"
#include "./gtx/perpendicular.hpp"
#include "./gtx/polar_coordinates.hpp"
#include "./gtx/projection.hpp"
#include "./gtx/quaternion.hpp"
#include "./gtx/raw_data.hpp"
#include "./gtx/rotate_vector.hpp"
#include "./gtx/spline.hpp"
#include "./gtx/std_based_type.hpp"
#if !(GLM_COMPILER & GLM_COMPILER_CUDA)
# include "./gtx/string_cast.hpp"
#endif
2010-04-29 10:56:52 +00:00
#include "./gtx/transform.hpp"
#include "./gtx/transform2.hpp"
#include "./gtx/vec_swizzle.hpp"
2010-04-29 10:56:52 +00:00
#include "./gtx/vector_angle.hpp"
#include "./gtx/vector_query.hpp"
2011-01-19 16:02:13 +00:00
#include "./gtx/wrap.hpp"
2010-04-29 10:54:07 +00:00
#if GLM_HAS_TEMPLATE_ALIASES
# include "./gtx/scalar_multiplication.hpp"
#endif
#if GLM_HAS_RANGE_FOR
# include "./gtx/range.hpp"
#endif
2016-11-12 13:19:22 +00:00
#endif//GLM_ENABLE_EXPERIMENTAL