Skip to content

Commit

Permalink
Merge pull request #19862 from Mugen87/dev45
Browse files Browse the repository at this point in the history
WebGLBindingStates: Correct vertexAttribIPointer() call.
  • Loading branch information
mrdoob committed Jul 20, 2020
2 parents 6abf593 + 2c64c9a commit c5f9daf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderers/webgl/WebGLBindingStates.js
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ function WebGLBindingStates( gl, extensions, attributes, capabilities ) {

if ( capabilities.isWebGL2 === true && ( type === gl.INT || type === gl.UNSIGNED_INT ) ) {

gl.vertexAttribIPointer( index, size, type, normalized, stride, offset );
gl.vertexAttribIPointer( index, size, type, stride, offset );

} else {

Expand Down

0 comments on commit c5f9daf

Please sign in to comment.