Results 812 comments of Andre Weissflog

No to all your specific questions, but I was recently looking for a way to add a simple raster font for using extracted old-school 8-bit home computer fonts without having...

I haven't planned it so far, but I think it's a good addition. Implementing it may be a bit trickier than expected because of the sokol validation layer (at least...

Yes, I agree, doing the explicit call first is better to check out whether everything works as intended, after that we can decide wether automatic generation still makes sense. My...

Yes sounds good, but in the end we need to check how it "feels" in real code ;) Some minor naming proposals: SG_MIPMAPGENERATION_ON_DEMAND -> SG_MIPMAPGENERATION_EXPLICIT? (meaning that sg_generate_mipmaps() needs to...

> Well, what about mipmapped render textures? I suppose you could wait until the end of the pass to auto generate mipmaps? But you may still want finer control over...

I'll probably pick up this PR after I finished on the pixel-format modernization (but I'm feeling an emulator-itch coming again, so it may not be immediately after). We'll also have...

It probably won't go into sokol_gfx.h itself, but maybe into a utility header (there would need to be two separate code paths though, one that runs on the CPU and...

To generate mipmaps on the GPU you would need to declare the image as render target, and kick off one render pass per mipmap. In such situations it might actually...

Hmm this means creating the D3D11 device and/or DXGI swapchain failed, it's unrelated to Zig, but a problem with the graphics stack (it's this D3D11CreateDeviceAndSwapChain() call that fails: https://github.com/floooh/sokol/blob/42d757c7a47a7096f15b48d491f06ef54fddb162/sokol_app.h#L5418-L5432). That's...

I had started looking into this when I wrote the code behind `sapp_frame_duration()`, and unfortunately at least on browsers it's impossible to query the display refresh rate, and that's basically...