| 140 | } |
| 141 | |
| 142 | GFXVertexDecl* GFXVertexFormat::getDecl() const |
| 143 | { |
| 144 | if ( !mDecl || mDirty ) |
| 145 | const_cast<GFXVertexFormat*>(this)->_updateDecl(); |
| 146 | |
| 147 | return mDecl; |
| 148 | } |
| 149 | |
| 150 | bool GFXVertexFormat::hasNormal() const |
| 151 | { |
no test coverage detected