| 45 | GFXTextureProfile::NONE); |
| 46 | |
| 47 | template<> void *Resource<GFont>::create(const Torque::Path &path) |
| 48 | { |
| 49 | #ifdef TORQUE_DEBUG_RES_MANAGER |
| 50 | Con::printf( "Resource<GFont>::create - [%s]", path.getFullPath().c_str() ); |
| 51 | #endif |
| 52 | |
| 53 | return GFont::load( path ); |
| 54 | } |
| 55 | |
| 56 | template<> ResourceBase::Signature Resource<GFont>::signature() |
| 57 | { |
no test coverage detected