I added dbInk to no avail. dbDot and dbCircle are still invisible, but dbLine is visable. Both nVidia machines I am having issues with are running the August 2009 driver (8.16.11.8681) and they are both Quadros.
How does one determine the version of Dark GDK they are running? The readme.txt simply says "Dark GDK - Version 14th November 2007"
#include "DarkGDK.h"
void DarkGDK()
{
DWORD blue = dbRGB(0,0,255);
DWORD red = dbRGB(255,0,0);
DWORD green = dbRGB(0,255,0);
DWORD black = dbRGB(0,0,0);
// Draw three concentric circles.
dbInk(blue,black);
dbDot(310,239);
dbDot(315,239);
dbDot(320,239);
dbDot(325,239);
dbDot(330,239);
dbInk(green,black);
dbCircle(320,240,150);
dbCircle(320,240,75);
dbCircle(320,240,25);
dbInk(red,black);
dbLine(320,180,240,300);
dbLine(320,180,400,300);
dbLine(320,300,400,300);
// Pause the program until the user presses a key.
dbWaitKey();
}