Skip to content

Newsletter 13: Add NeoCogi's libs #243

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Sep 7, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions content/posts/newsletter-013/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,24 @@ If needed, a section can be split into subsections with a "------" delimiter.

## Library & Tooling Updates

### NeoCogi's libraries
[Jude3D](https://neocogi.com) is a web based 3D sculpting application! It's a webassembly application, written in C/C++ and compiled using emscripten. After much thinking we decided to move the development to Rust!

![](jude3d.png)

Many problems arise when moving existing C/C++/webassembly code to Rust. The 2 most important ones:
* The new code should still interop with the already existing code
* Payload size matters on the web: Your wasm app should be as small as possible

These led us to drop using rust's std in favor to our own libs (`!#[no_std]`), at least until the std library crates are split up accordingly and stabilized (example the `alloc` crate).

The good news is that we are releasing most of the libraries as we make them as open source! [NeoCogi Repo](https://github.com/NeoCogi)

We have included an example that showcase the libs:

[Webassembly glfw3/gles2 example](https://github.com/NeoCogi/rs-glfw3-gles2-test)


## Popular Workgroup Issues in Github

## Meeting Minutes
Expand Down
Binary file added content/posts/newsletter-013/jude3d.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.