Skip to content

Commit

Permalink
Fixed typo in BVBI extension docs. (#3603)
Browse files Browse the repository at this point in the history
  • Loading branch information
keaukraine authored Nov 20, 2023
1 parent 4d3a9c1 commit 5a1217d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ var ext = gl.getExtension("WEBGL_draw_instanced_base_vertex_base_instance");
gl.uniform1i(u_BaseVertex_location, baseVertex);
gl.uniform1i(u_BaseInstance_location, baseInstance);
ext.drawElementsInstancedBaseVertexBaseInstanceWEBGL(
gl.TRIANGLES, count, gl.UNSIGHNED_SHORT, offset, instanceCount, baseVertex, baseInstance);
gl.TRIANGLES, count, gl.UNSIGNED_SHORT, offset, instanceCount, baseVertex, baseInstance);
}
</pre>
<pre>
Expand Down

0 comments on commit 5a1217d

Please sign in to comment.