00001
00002
00004
00005
00006
00007
00009
00010
00012
00013 #ifndef glm_gtx_component_wise
00014 #define glm_gtx_component_wise
00015
00016
00017 #include "../glm.hpp"
00018
00019 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
00020 # pragma message("GLM: GLM_GTX_component_wise extension included")
00021 #endif
00022
00023 namespace glm
00024 {
00025 namespace test{
00026 void main_gtx_component_wise();
00027 }
00028
00029 namespace gtx{
00031 namespace component_wise
00032 {
00035
00038 template <typename genType>
00039 typename genType::value_type compAdd(
00040 genType const & v);
00041
00044 template <typename genType>
00045 typename genType::value_type compMul(
00046 genType const & v);
00047
00050 template <typename genType>
00051 typename genType::value_type compMin(
00052 genType const & v);
00053
00056 template <typename genType>
00057 typename genType::value_type compMax(
00058 genType const & v);
00059
00061
00062 }
00063 }
00064 }
00065
00066 #include "component_wise.inl"
00067
00068 namespace glm{using namespace gtx::component_wise;}
00069
00070 #endif//glm_gtx_component_wise