///////////////////////////////////////////////////////
| 549 | |
| 550 | //////////////////////////////////////////////////////////// |
| 551 | void Texture::update(const std::uint8_t* pixels) |
| 552 | { |
| 553 | // Update the whole texture |
| 554 | update(pixels, m_size, {0, 0}); |
| 555 | } |
| 556 | |
| 557 | |
| 558 | //////////////////////////////////////////////////////////// |
nothing calls this directly
no test coverage detected