| 1 | #include "HapticsBuffer.h" |
| 2 | |
| 3 | HapticsBuffer::HapticsBuffer() |
| 4 | : m_ReadIndex(0xFF) |
| 5 | , m_WriteIndex(0) |
| 6 | , m_Buffer() |
| 7 | { |
| 8 | } |
| 9 | |
| 10 | void HapticsBuffer::AddSamples(const ovrHapticsBuffer* buffer) |
| 11 | { |
nothing calls this directly
no outgoing calls
no test coverage detected