I’ve had similar thoughts to this recently! It was awesome to meet and talk about handmade topic…
I think Handmade could end up having a tradition of spawning independent entities until most needs…
Thanks for your feedback. We just added a list of new additions to the library home page, so you c…
Ah, okay. It looks like the problem is the top-left pixel fill convention that at least the first…
Hi and welcome. I don't know about that topic but I was interested so I did a little search about …
Hi everyone, I'd first like to take the occasion of my first post to express my gratitude towards …
I ended up doing 2 of those 3 things (1 & 3) before I read your message, and now I've just finishe…
Just reached out to everyone! We're definitely just starting out here, but something that's on th…
Very nice! Next steps: remove glClear(GL_COLOR_BUFFER_BIT), because you are drawing fullscreen qua…
Yes. Sorry if I wasn't clear on that. And yes, good catch on the lock happening after . It's been…
Hello Everyone, I am new in this community and I am looking to entry level data science certificat…
Thanks for the repro case jack. I will make sure this is addressed in the upcoming release.
Oh, I see - you were using only one context. There is not sharing. You were binding one context in…
Ok, yeah I think I see where I was going wrong. The thing that confused me is that the method th…
I wouldn't try to generalize it. Each case has separate constraints and it's a matter of advantag…
If you were not explicitly sharing GL context's, then other GL context does not know anything abou…
Nice. I've sent another e-mail your way with plans for the Seattle chapter and who will be coordin…
Hi, library is very cool, a lot of useful resources posted already. Is there a way to see resource…
Ok, that's what I thought. What was confusing me is that I verified that and are correct, but i…
Jason —
Okay, so I'm trying to visualize what things would be like with different allocators. Would these …
Jack —
Simplest example: Main.cpp void main() { ++Foo; #include "test_include.h" ++Foo; } [/code] test_…
Generally speaking - yes, true. But there is nothing wrong with uploading texture and drawing lar…
Also, as far as I know, using a texture to update the Framebuffer is not how it's meant to be. Tex…
You "change" texture size by simply allocating new texture with glTexImage2D. No need to delete te…
So I decided it was time to add support for full screen mode in my game. Previously when entering …
3/7/2020 - Saturday 3-5pm - Cafe 1923, Hamtramck, MI The humble beginnings of Handmade Detroit's …
Boooom! that was it, thaanks so much! <3
(1) You read only 200000 bytes for ttf font file. On my system aria.ttf file is 1036584 bytes, cou…
You got the idea right. I like to think about memory in term of "lifetime" and "system" (as in a g…
Hey I've implemented a writeText function. 1. First problem is that if i load arial.ttf or many ot…