Fix typo aquire -> acquire

https://en.wiktionary.org/wiki/aquire
This commit is contained in:
Maxime Biette
2021-07-09 14:24:07 -04:00
parent 91c6823e0c
commit ac04432453
45 changed files with 234 additions and 234 deletions

View File

@ -30,7 +30,7 @@ namespace ImGui {
}
}
dsp::complex_t* ConstellationDiagram::aquireBuffer() {
dsp::complex_t* ConstellationDiagram::acquireBuffer() {
bufferMtx.lock();
return buffer;
}

View File

@ -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();

View File

@ -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;

View File

@ -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();

View File

@ -32,7 +32,7 @@ namespace ImGui {
}
}
float* SymbolDiagram::aquireBuffer() {
float* SymbolDiagram::acquireBuffer() {
bufferMtx.lock();
return buffer;
}

View File

@ -12,7 +12,7 @@ namespace ImGui {
void draw(const ImVec2& size_arg = ImVec2(0, 0));
float* aquireBuffer();
float* acquireBuffer();
void releaseBuffer();