| 11 | #include "stb_image.h" |
| 12 | |
| 13 | GeometryObject::GeometryObject() : |
| 14 | m_bTaintIAFlags( 0 ), |
| 15 | m_iTaintVertFlag( 0 ), |
| 16 | m_unVertVAO( 0 ), |
| 17 | m_unTexture( 0 ), |
| 18 | m_dTextureFileTime( 0 ), |
| 19 | m_iTextureWidth( 0 ), |
| 20 | m_iTextureHeight( 0 ), |
| 21 | m_sGeoName( "Unnamed" ) |
| 22 | { |
| 23 | } |
| 24 | |
| 25 | GeometryObject::GeometryObject( const std::string & sGeoBaseName ) : GeometryObject() |
| 26 | { |
nothing calls this directly
no outgoing calls
no test coverage detected