Lucas Domanico
Lucas Domanico
Hi again! This problem arises in my app when a shader uses an internal glsl library. I want to skip the error lines from this library (around 1000 LOC) and...
Can you suggest alternatives names?
I don't understand the problem. Is it just the name of `createApp()`? If the problem is the Typescript type, you can easily use an alias like `type WebGLState = PicoGL.App`
why not just; `let Pico_init = Pico.createApp`?
Rather than attacking me, why don't you explain what's the problem with creating a wrapper?
I see your point. Are you aware that the only interface of `PicoGL` is `createApp`? https://tsherif.github.io/picogl.js/docs/PicoGL.html I know that this add a layer of complexity more. But I would create...