| 275 | } |
| 276 | |
| 277 | void Clear(float* buffer, int bufferSize) |
| 278 | { |
| 279 | #ifdef USE_VECTOR_OPS |
| 280 | FloatVectorOperations::clear(buffer, bufferSize); |
| 281 | #else |
| 282 | bzero(buffer, bufferSize * sizeof(float)); |
| 283 | #endif |
| 284 | } |
| 285 | |
| 286 | void BufferCopy(float* dst, const float* src, int bufferSize) |
| 287 | { |
no outgoing calls
no test coverage detected