From 27501682876d91839e62f0d70fc8fc19c3843574 Mon Sep 17 00:00:00 2001 From: Dan Paulat Date: Mon, 30 Jun 2025 22:25:42 -0500 Subject: [PATCH] Fix display of placefile polygons and triangles on macOS --- scwx-qt/gl/map_color.vert | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scwx-qt/gl/map_color.vert b/scwx-qt/gl/map_color.vert index 6ae98e92..609d1c34 100644 --- a/scwx-qt/gl/map_color.vert +++ b/scwx-qt/gl/map_color.vert @@ -26,6 +26,9 @@ void main() // Always set displayed to true vsOut.displayed = 1; + // Initialize texCoord to default value + vsOut.texCoord = vec3(0.0f, 0.0f, 0.0f); + // Pass the threshold and time range to the geometry shader vsOut.threshold = aThreshold; vsOut.timeRange = aTimeRange;