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.
Ben Visness
I feel compelled to mention that I have a strong intuitive understanding of hue, saturation, and …
»
Jens
Hello there, I've watched soon 40 episodes of Handmade Hero (no spoilers please) and got to thin…
»
Mārtiņš Možeiko
The function Pseudonym posted does that - it calculates x % (2*pi). atan function is not periodi…
»
Randy Gaul
Have yet to implement an angle modulo yet in SSE. Does anyone happen to have this kind of functio…
»
spx
Croepha This looks very cool :) Your user interface feels very clean, is it from scratch? yes, th…
»
Demetri Spanos
Here's another survey for the upcoming computer vision tutorial. If you're interested, help me ma…
»
David Butler
This looks very cool :) Your user interface feels very clean, is it from scratch?
»
spx
I've created a second video basically showing the other half of the debugger window. There are a …
»
Timothy Barnes
This post is the first in a 4 part series about using splines in real-time applications, such as …
»
Mārtiņš Možeiko
Another advantage of Qt, it supports accessibility across multiple platforms.
»
Simon Anciaux
I tried on an AMD card with the latest drivers in a small game and it's actually a little slower …
»
Simon Anciaux
I just thought that the aspect ratio of your screen is 16/10 while Casey's is 16/9. If at some pl…
»
Nicolas Léveillé
An issue that is easy to forget is accessibility: allowing blind or poor-of-sight users to make u…
»
ginkgobitter
I have a small addition to this not pertaining to the particular nvidia issue at hand, but the se…
»
r2d2
Hmmph. Maybe I was doing something wrong yesterday but today the following code works properly: …
»
r2d2
Hi, Simon! Thanks for the suggestions. > - The position of the mouse may be in screen space …
»
Simon Anciaux
I don't know what the problem is, here are some ideas: - The position of the mouse may be in scre…
»
Josh Ayres
Thanks for all of your help!
»
spx
very true, that is not something novel. PyCharm has it as well nowadays (well i guess at lot of j…
»
Mārtiņš Možeiko
Can you show output of "echo %LIB%" after you called your shell.bat? How are you calling shell.ba…
»
catsonmars
I have this as my shell.bat @echo off call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\…
»
Mārtiņš Možeiko
Many debuggers do that now. For example: Chrome builtin JS debugger: https://developers.google.co…
»
Mārtiņš Možeiko
kernel32.lib is implicit. It is always linked to (because C/C++ startup code uses functions from …
»
Simon Anciaux
I've never seen the "display values in the source" feature and I'm curious to try it. Could it be…
»
Alberto Vaudagna
Add also kernel32.lib
»
Mārtiņš Možeiko
Oh, there's one more mistake. The "-c" argument. "-c" means compile only. So you were actually pr…
»
Josh Ayres
I figured it out. I have to compile an object file before the dll 1 2clang++ $CommonCompilerFlag…
»
Josh Ayres
So it is saying that the -shared is not being used during compilation.
»
Mārtiņš Možeiko
You need to pass "-shared" to clang/gcc arguments when creating shared library. So line 8 should …
»
Josh Ayres
Here is my build file: 1 2 3 4 5 6 7 8 9 10 11#!/bin/sh cd ../bin CommonCompilerFlags="…
»