build: Small ImPlot3D fixes to make it build on all platforms

This commit is contained in:
WerWolv
2024-12-18 20:18:27 +01:00
parent 9ca40d3651
commit 0f53656952
3 changed files with 6 additions and 1 deletions

View File

@@ -702,6 +702,9 @@ template <class _Getter>
struct RendererSurfaceFill : RendererBase {
RendererSurfaceFill(const _Getter& getter, int x_count, int y_count, ImU32 col) : RendererBase((x_count - 1) * (y_count - 1), 6, 4),
Getter(getter),
UV({}),
Min(0.0f),
Max(0.0f),
XCount(x_count),
YCount(y_count),
Col(col) {}