| 78 | } |
| 79 | |
| 80 | IOBatchId VRAMService::open_batch(uint64_t n) SKR_NOEXCEPT |
| 81 | { |
| 82 | uint64_t seq = (uint64_t)skr_atomicu64_add_relaxed(&batch_sequence, 1); |
| 83 | return skr::static_pointer_cast<IIOBatch>(vram_batch_pool->allocate(this, seq, n)); |
| 84 | } |
| 85 | |
| 86 | SlicesIORequestId VRAMService::open_texture_request() SKR_NOEXCEPT |
| 87 | { |
no test coverage detected