| 80 | } |
| 81 | |
| 82 | static u32 NextFrameNo(u32 frame, size_t total_frames) |
| 83 | { |
| 84 | u32 next_frame = frame + 1; |
| 85 | if (next_frame >= total_frames) |
| 86 | next_frame = 0; |
| 87 | return next_frame; |
| 88 | } |
| 89 | |
| 90 | void ReadbackSpinManager::ReadbackRequested() |
| 91 | { |
no outgoing calls
no test coverage detected