The buffer the guest currently draws into and reads from.
(&mut self)
| 58 | |
| 59 | /// Total FILL-register clears since boot. |
| 60 | pub fn fill_count(&self) -> u64 { |
| 61 | self.fill_count |
| 62 | } |
| 63 | |
| 64 | /// Monotonic counter of visible-pixel changes; the GUI re-uploads its texture |
| 65 | /// whenever this moves, so demos that draw directly (no FILL) still refresh. |
| 66 | pub fn content_version(&self) -> u64 { |
| 67 | self.version |
| 68 | } |
| 69 |
no outgoing calls
no test coverage detected