added static member for vertex radius check (HasPerVertexRadius()).

This commit is contained in:
Marco Di Benedetto 2009-03-19 17:26:26 +00:00
parent c955238597
commit 375e0cec74
1 changed files with 2 additions and 1 deletions

View File

@ -395,7 +395,8 @@ static bool HasPerVertexColor() { return VertexType::HasColor() ; }
static bool HasPerVertexMark() { return VertexType::HasMark() ; }
static bool HasPerVertexQuality() { return VertexType::HasQuality(); }
static bool HasPerVertexTexCoord(){ return VertexType::HasTexCoord(); }
static bool HasPerVertexFlags() { return VertexType::HasFlags(); }
static bool HasPerVertexRadius() { return VertexType::HasRadius(); }
static bool HasPerVertexFlags() { return VertexType::HasFlags(); }
static bool HasPolyInfo() { return FaceType::HasPolyInfo() ; }
static bool HasPerFaceColor() { return FaceType::HasFaceColor() ; }