Files
GuitarPiano/include/GPRenderer.h
2022-07-30 11:27:15 +02:00

24 lines
364 B
C++

#pragma once
namespace gpgui {
namespace renderer {
void InitRendering();
void DrawWidgets();
void DrawStrings();
bool IsKeyHighlited(int key);
void SetKeyHighlight(int key, bool highlight);
void ClearKeyboard();
void UpdateBuffers();
void ClearTab();
void SetTab(int tab, int fret);
void SetCapoPos(int capo);
} // namespace renderer
} // namespace gpgui