| 639 | inline void* GetSpanPtrEnd(int n) { IM_ASSERT(n >= 0 && n < CHUNKS && CurrIdx == CHUNKS); return (void*)(BasePtr + Offsets[n] + Sizes[n]); } |
| 640 | template<typename T> |
| 641 | inline void GetSpan(int n, ImSpan<T>* span) { span->set((T*)GetSpanPtrBegin(n), (T*)GetSpanPtrEnd(n)); } |
| 642 | }; |
| 643 | |
| 644 | // Helper: ImPool<> |
no outgoing calls
no test coverage detected