Fixed s/getCreateBackFace(bool on) methds so that use used the correct variable.

This commit is contained in:
Robert Osfield 2003-12-18 10:57:57 +00:00
parent aac16a17e7
commit 3eef331f2a

View File

@ -74,8 +74,8 @@ class TessellationHints : public Object
inline void setCreateFrontFace(bool on) { _createFrontFace=on; } inline void setCreateFrontFace(bool on) { _createFrontFace=on; }
inline bool getCreateFrontFace() const { return _createFrontFace; } inline bool getCreateFrontFace() const { return _createFrontFace; }
inline void setCreateBackFace(bool on) { _createFrontFace=on; } inline void setCreateBackFace(bool on) { _createBackFace=on; }
inline bool getCreateBackFace() const { return _createFrontFace; } inline bool getCreateBackFace() const { return _createBackFace; }
inline void setCreateNormals(bool on) { _createNormals=on; } inline void setCreateNormals(bool on) { _createNormals=on; }
inline bool getCreateNormals() const { return _createNormals; } inline bool getCreateNormals() const { return _createNormals; }