We are currently in the process of converting the website to the new design. Some pages, like this one, are still broken. We appreciate your patience.
ratchetfreak
And the people that use CRTP are the ones that don't want to have anything to do with the virtua…
»
Arne Döring
this code is just an edited version of the code casey showed in the stream and it is supposed to s…
»
Mārtiņš Možeiko
"Essential Mathematics for Games and Interactive Applications: A Programmer's Guide" (James M. Van…
»
guillaumec
What are your references when writing matrix and quaternion code as far as the math go? I often sp…
»
ashelley
Thank you for the long thoughtful comment... I just realized that i might not get notifications wh…
»
Mārtiņš Možeiko
Languages like rust typically during compilation have very slow constant part due to how they are …
»
pragmatic_hero
I thought the purpose of CRTP and other template tricks are to utterly and completely butcher comp…
»
Clive Galway
Great article, thanks ever so much for this. I am working on an open source remapping application …
»
Jim R. Didriksen
Has this changed? Just started using 4Coder and I'm used to 3x Space Tabs. edit: Would also be nic…
»
Mārtiņš Možeiko
That's because in "debug" mode typically build system doesn't turn on compiler optimizations to ma…
»
nlives
yes, I got it to work, but have to run in release mode. for it to fast, in debug its very slow, I …
»
John Burton
Thanks both :) I think that the combination of a default parameter for when it doesn't matter, and…
»
Jeremiah Goerdt
Then interpret the data there according to what type another_member is. Follow pointer as needed.…
»
Ginger Bill
I have an allocator system which I use everywhere in my C and C++ code. I store the allocators in…
»
Mikael Johansson
So the name only has to live within the function, but the function is called often enough for allo…
»
John Burton
I am implementing allocators in my program. I use C++ (But not so much 'modern' c++). I have imple…
»
Mārtiņš Možeiko
Because in C the array variable is not a pointer. So taking address of will not give you pointer t…
»
Italo
initGfx(&textures, &spriteText, screenSurface);[/code] On GDB, if I print (*sprites) when inside…
»
TM
I think the sync code won't work as expected. I remember doing something similar for resetting key…
»
Andrew Reece
This post is meant to provide a general overview of the code structure to contextualize later info…
»
ratchetfreak
This may be stating the obvious somewhat but in "var.member.another_member" the "var" should be a …
»
ratchetfreak
Except the entire point of crtp is to avoid having any virtual functions in the first place. I fee…
»
Mārtiņš Možeiko
Yes, you need to call stbte_mouse_button with 5th argument set to 0 ("false") when mouse button is…
»
Arne Döring
There is a way in C++ from a base class, which inherited class it is. Whenever a class in C++ has …
»
Jeremiah Goerdt
I've been scratching my head a bit lately, trying to figure out how to handle a string of variable…
»
nlives
I am trying to use stb_tilemap_editor.h with sfml, And I have a few doubts am using this piece of …
»
Oswald Hurlem
I'm planning to put up a few interesting tech posts soon (within a week), but before that, I want…
»
Andrew Reece
Ahh I see what you're getting at now - using the cursor position (with appropriate modifiers) to z…
»
Matt Mascarenhas
So, I got advanced access to the video for annotation purposes, and while writing those annotation…
»
»