Skip to content

Commit

Permalink
comment out line unbinding the texture
Browse files Browse the repository at this point in the history
attempting a fix for #44
  • Loading branch information
hiddenist authored Dec 14, 2023
1 parent e26167c commit ccd4b89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/drawing-engine/src/engine/Layer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class Layer {
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR)
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_S, gl.CLAMP_TO_EDGE)
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_T, gl.CLAMP_TO_EDGE)
gl.bindTexture(gl.TEXTURE_2D, null)
// gl.bindTexture(gl.TEXTURE_2D, null)
return texture
}

Expand Down

0 comments on commit ccd4b89

Please sign in to comment.