ratchetfreak
ratchetfreak
Will there be support for non-owning deferred_ptrs that will not prevent objects being destroyed (don't participate in the mark phase) but will get nulled when the object they refer to...
https://github.com/kimkulling/osre/blob/master/src/RenderBackend/VulkanRenderer/VlkRenderBackend.cpp#L692 Here you set the `initialLayout` to `PRESENT` however the first time through the layout of a swapchain image is `UNDEFINED`. You can however just set it to undefined. Transitioning...
Can there be an option to convert wuffs-side asserts into asserts in the generated code? This could be a macro which lets the user code pick which behavior to have...
An application may want to map en external buffer and read/write to it directly. A concrete example is mapping a webgl vertex buffer into a wasm module to have it...
nlerp, it is less accurate but is much faster, only needing a single sqrt instead of 4 transcendal trig functions. (FYI you can get the slerp using a half dozen...
Because vulkan requires that mutable objects are usually externally synchronized you can use a shared lock around getting the custom data. It helps that std::map maintains referential consistency when inserting/removing....
Adds 2 lines to show interpretation of the bytes as a floating point (both single and double precision) Partially addresses #51
It just doesn't add anything. And only feels like oop for the sake of oop. User code will want to grab the underlying type directly. And forcing everyone through a...
steps to recreate 1. start fresh 2. click the plus below the graph 3. start dragging the hello that appear in the new branch 4. drop it outside the graph...
Steps to recreate: 1. make a group 2. remove all things inside the group 3. it is now impossible to add anything into the group it instead adds before or...