| 198 | } |
| 199 | |
| 200 | uint16_t ComponentFrameStorage::ComponentsOnPage(uint32_t page) const |
| 201 | { |
| 202 | auto sizeBucket = ComponentSizeBucket(); |
| 203 | auto cappedPages = std::min<uint32_t>(page, 8); |
| 204 | return FrameAllocatorComponentsPerPage[sizeBucket][cappedPages]; |
| 205 | } |
| 206 | |
| 207 | uint32_t ComponentFrameStorage::Capacity() const |
| 208 | { |
nothing calls this directly
no outgoing calls
no test coverage detected