Test Circular Buffer
This commit is contained in:
@@ -17,7 +17,7 @@ namespace JabyEngine {
|
||||
public:
|
||||
FastCircularBuffer() = default;
|
||||
|
||||
void setup(T* buffer_start_adr, size_t element_count) {
|
||||
void setup(T* buffer_start_adr) {
|
||||
this->start_adr = buffer_start_adr;
|
||||
this->read_idx = 0;
|
||||
this->write_idx = 0;
|
||||
|
Reference in New Issue
Block a user