Skip to content

Commit

Permalink
Patch for recent release (#127)
Browse files Browse the repository at this point in the history
* Patched Vao for webgl1

* 0.13.2
  • Loading branch information
EvgenyRodygin authored Mar 13, 2023
1 parent 57b864a commit 749bcc3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "2gl",
"version": "0.13.1",
"version": "0.13.2",
"description": "WebGL library for 2GIS projects",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/Vao.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class Vao {
if (shaderAttribute.index !== true) {
gl.enableVertexAttribArray(shaderAttribute.location);
}
attributes[name].bind(gl, shaderAttribute.location, null, instancesExt);
attributes[name].bind(gl, shaderAttribute.location, instancesExt);
}
if (this.indicesBuffer) {
this.indicesBuffer.bind(gl);
Expand Down

0 comments on commit 749bcc3

Please sign in to comment.