Fix glPtexViewer backfacing bug: initialize handedness flag in Shape

This commit is contained in:
Takahito Tejima 2015-04-29 18:12:16 -07:00
parent 0d0f6210ac
commit ac41c3d5ba

View File

@ -81,6 +81,8 @@ struct Shape {
std::string genRIB() const;
Shape() : scheme(kCatmark), isLeftHanded(false) { }
~Shape();
int GetNumVertices() const { return (int)verts.size()/3; }