So I have everything installed and set up, but I tried to run a test like so:
#include "DarkGDK.h"
void DarkGDK() {
dbLine( 0, 239, 639, 239);
dbLine(319, 0, 319, 479);
dbLine( 0, 0, 639, 479);
dbLine(639, 0, 0, 479);
dbWaitKey();
}
It draws only the first and last lines, the other two do not appear. I tried commenting out lines selectively and it draws differently if the first and/or last line is commented out.
I figured it was a sync problem, so I put a dbSync() before the wait (also tried with 2) but I get the same result.
Does anyone have an idea what may be causing this?