| 138 | } |
| 139 | |
| 140 | bool CGraphicsPluginImpl::Initialise() |
| 141 | { |
| 142 | if(!CreateRenderer()) |
| 143 | { |
| 144 | return false; |
| 145 | } |
| 146 | |
| 147 | if(!CTextureCache::Create()) |
| 148 | { |
| 149 | return false; |
| 150 | } |
| 151 | |
| 152 | if (!DLParser_Initialise()) |
| 153 | { |
| 154 | return false; |
| 155 | } |
| 156 | |
| 157 | return true; |
| 158 | } |
| 159 | |
| 160 | void CGraphicsPluginImpl::ProcessDList() |
| 161 | { |
no test coverage detected