fubark

Results 16 issues of fubark

I think we could just link the moltenvk fat static lib for both x64 and arm64. This would remove the dependency of installing MoltenVK through the normal installers.

The graphics API should work. This work is mostly making sure SDL is able to grab the context and the vk func are loaded at runtime.

This is really important to start using Cosmic for UI in visual applications. Essentially it will be a declarative/reactive framework that can be easily used in js. It should also...

Currently Cosmic relies on lyon a rust dependency to convert paths/polygons to triangles. The plan is to drop this dependency and to create our own tessellator from scratch. The implementation...

Currently Cosmic renders glyphs into bitmaps and does some scaling so it doesn't upload too much data for dynamic text sizes. A better approach is to render using MSDF for...

Cosmic should be able to target web with just plain JS. No wasm. See #19 for wasm. This can be a lot of work since there isn't a nice way...

Currently Cosmic is optimized for doing client side HTTP requests but there is no facility to do raw TCP/UDP network connections. Something I like in deno is how http servers...

Currently Cosmic async file ops are not optimized. It's just queuing sync work in the default work queue. The goal is to use libuv to do native async file io...

Generate type definitions for text editor intellisense. Use comptime reflection on api.zig like what doc gen does in doc_gen.zig.