| 235 | } |
| 236 | |
| 237 | void Tr2GrannyPrimitiveSet::CreatePrimitive() |
| 238 | { |
| 239 | if( !m_grannyRes ) |
| 240 | { |
| 241 | return; |
| 242 | } |
| 243 | |
| 244 | if( m_grannyRes->IsUsingCMF() ) |
| 245 | { |
| 246 | CreatePrimitiveFromCMF(); |
| 247 | } |
| 248 | #if WITH_GRANNY |
| 249 | else |
| 250 | { |
| 251 | CreatePrimitiveFromGranny(); |
| 252 | } |
| 253 | #endif |
| 254 | } |
| 255 | |
| 256 | void Tr2GrannyPrimitiveSet::CreatePrimitiveFromCMF() |
| 257 | { |
nothing calls this directly
no test coverage detected