From b4e8ae9731eca175cd4e6e75a20da87ff86eb91f Mon Sep 17 00:00:00 2001 From: Matt Kosarek Date: Tue, 3 Feb 2026 08:13:30 -0500 Subject: feature: improve snowflake renderer --- themes/dist/output.js | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'themes/dist/output.js') diff --git a/themes/dist/output.js b/themes/dist/output.js index 011ac68..b19a1a3 100644 --- a/themes/dist/output.js +++ b/themes/dist/output.js @@ -2875,6 +2875,10 @@ function dbg(...args) { GL.postDrawHandleClientVertexAttribBindings(); }; + var _glDrawArraysInstanced = (mode, first, count, primcount) => { + GLctx.drawArraysInstanced(mode, first, count, primcount); + }; + var _glDrawElements = (mode, count, type, indices) => { var buf; var vertexes = 0; @@ -3342,6 +3346,8 @@ var wasmImports = { /** @export */ glDrawArrays: _glDrawArrays, /** @export */ + glDrawArraysInstanced: _glDrawArraysInstanced, + /** @export */ glDrawElements: _glDrawElements, /** @export */ glEnable: _glEnable, -- cgit v1.2.1