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.
Naman Dixit
I started working on an engine some time ago and just decided to implement audio support. So, I t…
»
twelvefifteen
Hey all. I'm curious if, unless specified otherwise, all image processing algorithms should be pe…
»
Castan
Ah, I see. That's nice, at least now I have something to keep track of the state of this. :-) Tha…
»
Mārtiņš Možeiko
This is ok. Modern CPUs execute a lot of stuff ahead of "current" instruction. To do so it intern…
»
cl777
I tried 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17V3U *AddVectors_128(V3U *va, V3U *vb, …
»
x13pixels
CastanTrying to resurrect this; Has anyone actually tried this? I've tried a bunch of solutions f…
»
Mārtiņš Možeiko
Try this: 1 2 3 4 5 6 7 8 9 10 11 12 13V3U *AddVectors_128(V3U *va, V3U *vb, u32 size) {…
»
cl777
Hello Mārtiņš, 1. I'm compiling with Cl -O2 2. That was the culprit. Comparing apples and orange…
»
Mārtiņš Možeiko
Few questions: 1) are you compiling with optimizations (O2/O3) when benchmarking? 2) you are actu…
»
cl777
Hi Folks, I'm trying to wrap my had around basic SIMD stuff. I wrote a simple program that adds …
»
Castan
Trying to resurrect this; Has anyone actually tried this? I've tried a bunch of solutions found a…
»
ratchetfreak
The stack is part of the calling convention between functions. In most cases it is a area of memo…
»
Mārtiņš Možeiko
Heap and stack are not really concepts for language. It is more runtime thing. If you have pointe…
»
Bits Please
Greetings everyone! As we all know, in C, which is a low-level programming language, there's a co…
»
Peter
Unfortunately it didn't work. But I've bought a new graphics card now. Radeon RX 580. I'll put th…
»
x13pixels
FYI, I posted another bug-fix release of RemedyBG today. * Memory edit prev/next buttons now gr…
»
Simon Anciaux
According to the following page, your card chip only supports OpenGL 3.1 and Handmade hero uses O…
»
Peter
Is it possible that the video card in the comp I'm using now (internal Intel HD Graphics 2000) is…
»
Ray
Thanks! I keep working hard to improve it! :)
»
albatros
Raylib was good and it keeps getting better, that's awesome news. Champagne ! :D
»
Simon Anciaux
You can measure time elapsed in your application but it doesn't guarantee anything about DirectSo…
»
Simon Anciaux
The raylib gif is extremely annoying when you're trying to read the text. Is anything happening …
»
Ryan Fleury
Hey there, everyone! Handmade Network is a community about writing quality software, understandi…
»
Marc Costa
If you are OK using OS specific functions, then you can use _msize (MSVC), malloc_usable_size (Li…
»
Ray
After almost one years since latest raylib installment, here it is raylib 2.5. A lot of work has …
»
Henry Kloren
makes sense although couldn't we just use queryperformancecounter to figure out when it plays 0.5…
»
Mārtiņš Možeiko
If you are OK using OS specific functions, then you can use _msize (MSVC), malloc_usable_size (Li…
»
Marc Costa
You ask malloc for an amount of memory, so you already know the size. Having said that, malloc w…
»
C_Worm
Hello i was wondering if it is possible to get the size of some dynamicaly allocated memory like …
»
Simon Anciaux
HFKlorenisn't it true that if DSound plays 0.5seconds of sound then we can calculate how many sam…
»