| 70 | } |
| 71 | |
| 72 | int32 ProfilerGPU::EventBuffer::Add(const Event& e) |
| 73 | { |
| 74 | PROFILE_MEM(Profiler); |
| 75 | const int32 index = _data.Count(); |
| 76 | _data.Add(e); |
| 77 | return index; |
| 78 | } |
| 79 | |
| 80 | void ProfilerGPU::EventBuffer::Extract(Array<Event>& data) const |
| 81 | { |
no test coverage detected