diff --git a/.gitignore b/.gitignore index 8cad491..1a8b5bc 100644 --- a/.gitignore +++ b/.gitignore @@ -6,9 +6,7 @@ examples/raymarch/build/* docs/html source .DS_Store -third_party/lib/libdawn.* -third_party/lib/*.so -third_party/lib/*.dylib +third_party/lib/* third_party/local/* # formatter files diff --git a/gpu.h b/gpu.h index 0636b0c..0abd5c4 100644 --- a/gpu.h +++ b/gpu.h @@ -755,7 +755,7 @@ inline Context createContext(const WGPUInstanceDescriptor &desc = {}, devData.device = device; devData.requestEnded = true; }; -#ifdef WEBGPU_BACKEND_DAWN +#if defined(WEBGPU_BACKEND_DAWN) && !defined(__EMSCRIPTEN__) devDescriptor.deviceLostCallbackInfo = { .callback = [](WGPUDevice const *device, WGPUDeviceLostReason reason,