| 42 | }; |
| 43 | |
| 44 | template<> bool CSingleton< CGraphicsContext >::Create() |
| 45 | { |
| 46 | DAEDALUS_ASSERT_Q(mpInstance == NULL); |
| 47 | |
| 48 | mpInstance = new GraphicsContextGL(); |
| 49 | return mpInstance->Initialise(); |
| 50 | } |
| 51 | |
| 52 | |
| 53 | GraphicsContextGL::~GraphicsContextGL() |
nothing calls this directly
no test coverage detected