| 111 | // that is cumbersome. |
| 112 | |
| 113 | IWindowPtr PTRenderer::createWindow(WindowHandle handle, uint32_t width, uint32_t height) |
| 114 | { |
| 115 | // Create and return a new window object. |
| 116 | return make_shared<PTWindow>(this, handle, width, height); |
| 117 | } |
| 118 | |
| 119 | IRenderBufferPtr PTRenderer::createRenderBuffer(int width, int height, ImageFormat imageFormat) |
| 120 | { |
nothing calls this directly
no outgoing calls
no test coverage detected