mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-06-28 21:37:50 +02:00
@ -30,7 +30,7 @@ namespace ImGui {
|
||||
}
|
||||
}
|
||||
|
||||
dsp::complex_t* ConstellationDiagram::aquireBuffer() {
|
||||
dsp::complex_t* ConstellationDiagram::acquireBuffer() {
|
||||
bufferMtx.lock();
|
||||
return buffer;
|
||||
}
|
||||
|
@ -13,7 +13,7 @@ namespace ImGui {
|
||||
|
||||
void draw(const ImVec2& size_arg = ImVec2(0, 0));
|
||||
|
||||
dsp::complex_t* aquireBuffer();
|
||||
dsp::complex_t* acquireBuffer();
|
||||
|
||||
void releaseBuffer();
|
||||
|
||||
|
@ -42,7 +42,7 @@ namespace ImGui {
|
||||
window->DrawList->AddImage((void*)(intptr_t)textureId, min, ImVec2(min.x + width, min.y + height));
|
||||
}
|
||||
|
||||
uint8_t* LinePushImage::aquireNextLine(int count) {
|
||||
uint8_t* LinePushImage::acquireNextLine(int count) {
|
||||
bufferMtx.lock();
|
||||
|
||||
int oldLineCount = _lineCount;
|
||||
|
@ -13,7 +13,7 @@ namespace ImGui {
|
||||
|
||||
void draw(const ImVec2& size_arg = ImVec2(0, 0));
|
||||
|
||||
uint8_t* aquireNextLine(int count = 1);
|
||||
uint8_t* acquireNextLine(int count = 1);
|
||||
|
||||
void releaseNextLine();
|
||||
|
||||
|
@ -32,7 +32,7 @@ namespace ImGui {
|
||||
}
|
||||
}
|
||||
|
||||
float* SymbolDiagram::aquireBuffer() {
|
||||
float* SymbolDiagram::acquireBuffer() {
|
||||
bufferMtx.lock();
|
||||
return buffer;
|
||||
}
|
||||
|
@ -12,7 +12,7 @@ namespace ImGui {
|
||||
|
||||
void draw(const ImVec2& size_arg = ImVec2(0, 0));
|
||||
|
||||
float* aquireBuffer();
|
||||
float* acquireBuffer();
|
||||
|
||||
void releaseBuffer();
|
||||
|
||||
|
Reference in New Issue
Block a user