| 1697 | #undef add_matrix_var |
| 1698 | |
| 1699 | void Gui::Widgets::graph( |
| 1700 | const char label[], |
| 1701 | GraphCallback func, |
| 1702 | void* pUserData, |
| 1703 | uint32_t sampleCount, |
| 1704 | int32_t sampleOffset, |
| 1705 | float yMin, |
| 1706 | float yMax, |
| 1707 | uint32_t width, |
| 1708 | uint32_t height |
| 1709 | ) |
| 1710 | { |
| 1711 | if (mpGui) |
| 1712 | mpGui->mpWrapper->addGraph(label, func, pUserData, sampleCount, sampleOffset, yMin, yMax, width, height); |
| 1713 | } |
| 1714 | |
| 1715 | Gui::Menu::Menu(Gui* pGui, const char* name) |
| 1716 | { |