| 120 | } |
| 121 | |
| 122 | bool CGraphicsPluginImpl::Initialise() |
| 123 | { |
| 124 | if (!CreateRenderer()) |
| 125 | { |
| 126 | return false; |
| 127 | } |
| 128 | |
| 129 | if (!CTextureCache::Create()) |
| 130 | { |
| 131 | return false; |
| 132 | } |
| 133 | |
| 134 | if (!DLParser_Initialise()) |
| 135 | { |
| 136 | return false; |
| 137 | } |
| 138 | |
| 139 | return true; |
| 140 | } |
| 141 | |
| 142 | void CGraphicsPluginImpl::ProcessDList() |
| 143 | { |
no test coverage detected