| 69 | } |
| 70 | |
| 71 | const float * data() const |
| 72 | { |
| 73 | if (m_rawPointer) |
| 74 | return m_rawPointer; |
| 75 | if (m_memBuffer) |
| 76 | return m_memBuffer->data(); |
| 77 | return nullptr; |
| 78 | } |
| 79 | |
| 80 | // Zeroes out all sample values in buffer. |
| 81 | void zero() |
nothing calls this directly
no outgoing calls
no test coverage detected