setlinewidth and glmax2d

BlitzMax Forums/BlitzMax Programming/setlinewidth and glmax2d

jkrankie(Posted 2009) [#1]
using the d3d7max2ddriver, setlinewidth works, however using glmax2ddriver it doesn't. i'm sending the function float data. can anyone else confirm this?

Cheers
Charlie


tonyg(Posted 2009) [#2]
Yes using the following code which I'm surprised you didn't post as it would make it so much more likely that somebody will respond.

p.s. on my system it seems to be a max line width of 10.0 for OGL driver


Tommo(Posted 2009) [#3]
d3d7Max2d actually draws a quad when linewidth > 1, it's done by max2ddriver; glMax2d just call glLineWidth and the rest is done by GL driver.

So I guess maybe it's some problem of your GL driver.