Thanks for your reply!
It seems like I at some point have moved depot_tools without updating PATH, and so a newer version of ninja got used instead. Now with PATH updated I also just get a warning and it compiles fine.
The new issue is creating the device needed by
`skgpu::graphite::ContextFactory::MakeDawn(...)`
First I try creating an instance:
`auto instance = wgpu::CreateInstance(); // program crashes`
```
// dawn_proc.c
//
wgpu::CreateInstance calls this function
WGPUInstance wgpuCreateInstance(WGPUInstanceDescriptor const * descriptor) {
return procs.createInstance(descriptor); // everything in procs is null and crash happens here
}
```
Any ideas what I'm doing wrong?
Also, judging by the recent commits, I take that M117 is the last version with dawn backend in ganesh?