(&mut self, width: u32, height: u32, data: &[u8])
| 11519 | // block so it can be reused by other capture paths if needed.) |
| 11520 | |
| 11521 | pub fn register_texture(&mut self, width: u32, height: u32, data: &[u8]) -> u32 { |
| 11522 | self.register_texture_kind(width, height, data, false) |
| 11523 | } |
| 11524 | |
| 11525 | /// Single-mip texture for dynamically updated atlases. |
| 11526 | pub fn register_texture_no_mips(&mut self, width: u32, height: u32, data: &[u8]) -> u32 { |
no test coverage detected