From 582b282a6c2dbfa07ae7386fde0156c718e44197 Mon Sep 17 00:00:00 2001 From: Viktor Vaczi Date: Sat, 3 Jan 2026 11:24:24 +0100 Subject: [PATCH] Add missing GLU_TESS_BOUNDARY_ONLY constant for idftools MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The idftools/vrml_layer.cpp uses this GLU tessellation constant which was missing from our WASM GLU stub header. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- wasm/stubs/GL/glu.h | 1 + 1 file changed, 1 insertion(+) diff --git a/wasm/stubs/GL/glu.h b/wasm/stubs/GL/glu.h index 4981010..088051f 100644 --- a/wasm/stubs/GL/glu.h +++ b/wasm/stubs/GL/glu.h @@ -40,6 +40,7 @@ typedef struct GLUquadric GLUquadric; #define GLU_TESS_WINDING_POSITIVE 100132 #define GLU_TESS_WINDING_NEGATIVE 100133 #define GLU_TESS_WINDING_ABS_GEQ_TWO 100134 +#define GLU_TESS_BOUNDARY_ONLY 100141 // Tesselator functions GLUtesselator* gluNewTess(void);