Dylan Ancel

Results 8 issues of Dylan Ancel

It's possible to add empty components but they'll still use an `EntityId` per component and up to an `usize` per entity in the `World` (could go down with #10 if...

enhancement

## 🌟 What is the purpose of this PR? When building `ArrayData` on the Rust side we copy all data from Javascript. Rust and Javascript don't have the same expectation...

C-dependencies
A-engine
S-Blocked

## 🌟 What is the purpose of this PR? The PR aims to provide support for Typescript. This means having Typescript packages and behaviors. ## 🔗 Related links - [Asana...

A-engine
S-Blocked

I've started a thread on zulip about a couple of choices I've made regarding scheduling. Any feedback is welcome, anyone can read the thread but you'll need an account to...

Hi, this code ```rust fn main() { let masks = [m32::new(false); 1024]; let mask_ptr = cptrx8::splat(masks.as_ptr()); let mask = unsafe { mask_ptr.read(m32x8::splat(true), m32x8::splat(false)) }; } ``` triggers this error >...

Bug
P-High

For now, AFAIK, the results come from TomGillen's computer. How are we going to update them? A few ideas, don't hesitate to propose more: 1. Have someone do it, always...

I was playing with frag iteration and I made 3 versions: - V1 is a simple loop > time: [407.12 ns 409.32 ns 411.81 ns] V1 ```rust self.0.run(|mut data: ViewMut|...