Caleb Cornett
Caleb Cornett
> Looks like the latest MoltenVK is not a fan of FEZ: > > ``` > [mvk-error] VK_ERROR_DEVICE_LOST: Command buffer 0x7fdb87a685c0 "" execution failed (code 1): Internal Error (IOAF code...
Ran into a spec violation in Capsized's opening video cutscene: ``` System.InvalidOperationException: The render target must not be set on the device when it is used as a texture. ```
I'm occasionally seeing this when starting up Flinthook on Windows AMD: > UNASSIGNED-Threading-MultipleThreads(ERROR / SPEC): msgNum: 337425955 - Validation Error: [ UNASSIGNED-Threading-MultipleThreads ] Object 0: handle = 0x42d0860000000003, type =...
@misl6 Do you have an active GL context when you call GL_GetDrawableSize? SDL2 always reports 0x0 on UIKit if there's no context.
Ah, okay. Is there a particular reason Uno doesn't populate files into the VFS? I noticed that mono-wasm's packager tool [supports preloading](https://github.com/mono/mono/blob/master/sdks/wasm/packager.cs#L146) so I'm just curious.
> we contemplating adding a specific metadata to flag (e.g. `` to enable that scenario That would be very helpful. I found a workaround to enable preloading by manually passing...
I've been thinking about this some more recently. I can't speak for Linux, but for macOS... > 1. Fix the actual build.sh script to properly link on macOS. It obviously...
If anyone's interested in experimenting with possible solutions, I've scribbled out a rough version of what the general structure might look like, minus the key part -- what semantic or...
> set your target to be `x86_64-linux-gnu.2.18` I am intentionally targeting 2.17. This project builds (without zig) on CentOS 7, which has glibc 2.17. The main reason I am interested...
My understanding is that libcxxabi is supposed to polyfill this function for lower glibc versions, by having a [backup implementation](https://github.com/ziglang/zig/blob/master/lib/libcxxabi/src/cxa_thread_atexit.cpp#L112) in case no actual __cxa_thread_atexit_impl function is found. But the...