|
From: Johan O. <joh...@pp...> - 2000-12-15 19:37:41
|
Hi, I'm having troubles getting Stippled lines beeing drawn as sold lines no matter what I do .... I'm able to succesfully compile & link the 'lines' demo in the 'book' subdir ... ... /* in 1st row, 3 lines, each with a different stipple */ glEnable (GL_LINE_STIPPLE); glLineStipple (1, 0x0101); /* dotted */ drawOneLine (50.0, 125.0, 150.0, 125.0); glLineStipple (1, 0x00FF); /* dashed */ drawOneLine (150.0, 125.0, 250.0, 125.0); glLineStipple (1, 0x1C47); /* dash/dot/dash */ drawOneLine (250.0, 125.0, 350.0, 125.0); ... e.t.c ... BUT all I see are solid lines :-( My setup is: Linux 2.2.18 / XFree 3.3.6 / Matrox G400 / utah-glx (OCT 19 2000) / Mesa 3.2 (OCT 19 2000 snapshot) ..... Any clues, I've got none .... BR: Jussi / Finland PS: Quake 3 arena demo runs fine :-) |