diff options
| author | Matt Kosarek <matt.kosarek@canonical.com> | 2026-02-03 08:13:30 -0500 |
|---|---|---|
| committer | Matt Kosarek <matt.kosarek@canonical.com> | 2026-02-03 08:13:30 -0500 |
| commit | b4e8ae9731eca175cd4e6e75a20da87ff86eb91f (patch) | |
| tree | 95b1156031ed70e6bb91f5c58a03c75ad3722593 /themes/dist/output.js | |
| parent | 1b0fbb1818d6a9cd721366909275aaefb7de4c64 (diff) | |
Diffstat (limited to 'themes/dist/output.js')
| -rw-r--r-- | themes/dist/output.js | 6 |
1 files changed, 6 insertions, 0 deletions
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, |
