summaryrefslogtreecommitdiff
path: root/themes/dist/output.js
diff options
context:
space:
mode:
Diffstat (limited to 'themes/dist/output.js')
-rw-r--r--themes/dist/output.js6
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,