trimesh.h:

- added ScalarType typedef to GL_TYPE structure
This commit is contained in:
granzuglia 2014-08-09 09:54:43 +00:00
parent eedb03d390
commit 558fcd784a
1 changed files with 5 additions and 3 deletions

View File

@ -41,10 +41,12 @@ class GL_TYPE
}; };
template <> class GL_TYPE<float> template <> class GL_TYPE<float>
{ public: { public:
typedef GLfloat ScalarType;
static GLenum SCALAR() { return GL_FLOAT; } static GLenum SCALAR() { return GL_FLOAT; }
}; };
template <> class GL_TYPE<double> template <> class GL_TYPE<double>
{public: {public:
typedef GLdouble ScalarType;
static GLenum SCALAR() { return GL_DOUBLE; } static GLenum SCALAR() { return GL_DOUBLE; }
}; };