(&self)
| 69 | } |
| 70 | |
| 71 | pub fn size(&self) -> Extent3d { |
| 72 | Extent3d { |
| 73 | width: self.config.width, |
| 74 | height: self.config.height, |
| 75 | depth_or_array_layers: 1, |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | pub fn resize(&mut self, width: u32, height: u32) { |
| 80 | self.config.width = width; |
no outgoing calls
no test coverage detected