Pete —
Hmm, in terms of the order the messages gets recieved it looks pretty identical when looking at t…
My guess is that when DestroyWindow was called in WM_CLOSE, then window handle is no more valid. …
Pete —
Hey it worked!
Now just so I understand this properly. The reason I never got a WM_QUIT message …
Remove "Window" argument from call to GetMessage, pass NULL instead.
Pete —
VROOMThe best thing you can do is apply the knowledge you gain from Handmade Hero, like Halarious…
Pete —
Hello, I have encountered a somewhat confusing (atleast for me) problem.
The problem is that whe…
Jens —
For some reason I can't watch episode 488 on the iPad using the youtube app. All other videos bef…
I haven't checked but I suppose monospaced font should not have kerning information. For example …
I would be thrilled to have you come Kreco :)
Yeah, the thread started before confinement was de…
itzjac —
Thank you for pointing that out Mozeiko,
I corrected the code in the library and probably I was…
There is known issue in stb_truetype related to kerning: https://github.com/nothings/stb/issues/6…
Have you tried stepping in the code with a debugger an check every value (don't assume the conten…
itzjac —
Yeah, I have figured it out to include ix0, but doesn't make a difference.
So using your suggest…
kreco —
Hi!
Might be able to join this meetup!
I'm 100% sure I want to come but might not be possible d…
You also need to use the result of stbtt_GetCodepointBitmapBox for x. Add ix0 to the x position t…
There is nothing wrong with such functions for simple frameworks. In fact, popular GL windowing f…
Doeke —
I don't really know where to address this question, I thought the handmade network would give me …
itzjac —
Thanks, vertical alignment works as a charm!
I have tested the font using a ttf LiberationMono-…
There aren't character specific vertical metrics. But the following function gives you informatio…
itzjac —
Sorry for reviving the thread,
I have problems with the vertical positioning of the characters,…
Yeah, I'd be more than happy to set up a chapter in Salt Lake City, I already have a few people I…
itzjac —
Kudos for this initiative!
I have added my self into the spread sheet, don't know of anyone in m…
C_Worm —
Final Solution was this:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24…
I believe you don't need to add the width and height at the end:
1
2
3
4
5
6
7
8
9objPosData[0] …
Jason —
Oh okay cool. Thanks allen
Chen —
I started doing some work to add a GPU ray tracing system to my engine. I want to experiment and …
C_Worm —
Hmmm now the rectangle rotates around its origin, however the rectangle is shrinking and expandin…
Yes this issue was fixed for the order of bindings within a map, but it still doesn't work for in…
first translate the object such that the rotation point is at the (0, 0)
then do the rotation
t…
C_Worm —
Hey!
I made a function that rotates my 4 vertices in a rectangle.
However the origin seemes to …