@JustinCase3 Are you sure you're compiling the right file by calling (if that's the name of your …
I think this is possible but you'll have to modify the default_render_caller hook (or create a cop…
I would try the second method of setting up key bindings that mrmixer linked to in the wiki. This …
Ooh ok that makes sense. I knew it had to be something like that. And when I say rebind the arrow …
CTRL + 't' is bound to search_identifier in the mapid_file key map. Since mapid_file inherits from…
extern "C" int32_t get_bindings(void *data, int32_t size){ Bind_Helper context_ = begin_bind_help…
I didn't test it for a long time but there seem to be a problem with the recent file menu where if…
Could you post the content of your custom file ? Does buildsuper.sh show any errors ?
This is true, I've seen many logging and assertion systems use/abuse this functionality to automat…
I increased POINTS_LEN to 10000000 (100x more). Then run both programs with THREAD_NUM = 1 (single…
I've just pushed version 0.9 with a lot of changes and rebrand to "miniaudio". Since the original …
What I'm much more puzzled by is how the rust version managed to increase performance by more tha…
For the single-threaded code, it's very likely that the different RNG functions used are going to …
So I'm very new to 4coder and it appears that I'm having trouble rebinding the default keys. I saw…
Also when can we buy some merch?
I am pumped !... will try to make it for sure. Suggestion for 2020 handmade con is Tokyo Japan wou…
I think nowadays you can query OS for physical monitor size. So if you query also native monitor r…
Yes, that could be the difference. Creating thread is very expensive. You should not do that all t…
Oh yea, I was wondering if you do want to display more (or less items), and so you set your matrix…
So, I have two programs that do the same thing. I tried parallelizing them using pthreads for the …
Ya, I figured this out with other failed ventures. I think you really need that implicit motivati…
I am not yet working as a full-time professional in the games industry, but I will be doing an int…
I'm currently programming a 2d fighting game from scratch. Why a fighting game? Well, let's just s…
Not sure what you mean by "actual pixel values". Do you mean pixel sizes? If so then yes, projecti…
@mmozeiko Is it just the aspect ratio that's being used to update the projection matrix, not the a…
I didn't realize I had birthdays this year: One in February, and one on the day that was announc…
By "clip off the right side of the window" you mean not render anything outside of window? That de…
And this allows UI to naturally clip off the right side of the window?
You need to recalculate your projection matrix when window size changes. "Aspect ratio" is encoded…
Hey guys, I was wondering if someone could list some pitfalls when trying to render UI elements wi…