loganbenjamin
loganbenjamin
I'm not actually sure of an easy way to determine between returning a `Blob` and an `ArrayBuffer`? The only way I can think of it is an update to the...
Ah good spotting, I had tested axios but only on client-side. If running under Node.js I've noticed people opting for streams most of the time when dealing with files. Although...
Apologies I didn't have much information in my original PR, I've updated it to better detail how it works. Nothing to do at the moment just waiting for @ferdikoomen to...
@jospete thanks for checking it out and responding with detailed information, I've made a small change to fix this.
I have this issue as well, I don't think that adding a check for application/pdf is the right way to do it because you'll end up needing to add a...
I had the same issue, the variable name you are looking for is v_texcoord ```GLSL #ifdef GL_ES precision highp float; #endif uniform sampler2D u_texture_0; varying vec2 v_texcoord; void main(){ gl_FragColor=texture2D(u_texture_0,v_texcoord);...