| 35 | |
| 36 | namespace tgfx { |
| 37 | ProxyProvider::ProxyProvider(Context* context) |
| 38 | : context(context), vertexBlockBuffer(1 << 14, 1 << 21) { // 16kb, 2MB |
| 39 | } |
| 40 | |
| 41 | std::shared_ptr<IndexBufferProxy> ProxyProvider::createIndexBufferProxy( |
| 42 | std::unique_ptr<DataSource<Data>> source, uint32_t renderFlags) { |
nothing calls this directly
no outgoing calls
no test coverage detected