Filip Lundgren
Filip Lundgren
Sorry for the delay! Yup we have it running since the last PR I submitted (thanks for merging that by the way @billhollings) Haven't synced latest as I've been working...
Noticing similar issues with the file here: https://github.com/KhronosGroup/glTF-Sample-Environments/blob/master/neutral/lambertian/diffuse.ktx2 The color model is UNSPECIFIED which fails with the latest libktx source, and if that is skipped then ktxTexture_calcImageSize ends up returning...
BTW is there any way we could automatically drop asserts through the compiler if ASSERTIONS=0? I've come across this a few times now, seems error prone the way it's done...
> I'm curious why non of our existing tests are hitting this error. Do we not run any browser tests with assertions disabled? > > Oh, this is only an...
Ran into this same issue with the following steps: ``` - name: checkout engine without LFS uses: actions/checkout@v2 with: lfs: false - name: apply_lfs_filters run: | git config --local lfs.fetchexclude...
> Thanks! This is very exciting. Np! It helped us be way more responsive thanks to getting / processing responses faster. Plus it seems like fetch is way way faster...
Makes sense! I haven't had the time to work on this for a while, but if anyone wants to feel free to steal the PR and refactor / split into...
Is this still planned? Our codebase uses POSIX async IO (aio) where available, but the web version currently needs a fallback using `fopen` (with directories mapped using wasmfs_create_directory and an...
Yup I can see that, luckily we don't use aio_suspend ourselves. Looking at the opfs implementation we could probably switch over to the native wasm_fs API later on instead of...