| 26 | } |
| 27 | |
| 28 | void Texture::UploadData(ref_ptr<dp::GraphicsContext> context, uint32_t x, uint32_t y, uint32_t width, uint32_t height, |
| 29 | ref_ptr<void> data) |
| 30 | { |
| 31 | ASSERT(m_hwTexture != nullptr, ()); |
| 32 | m_hwTexture->UploadData(context, x, y, width, height, data); |
| 33 | } |
| 34 | |
| 35 | TextureFormat Texture::GetFormat() const |
| 36 | { |
no test coverage detected