[SOLVED]
When I enable alpha blending and then draw a line with the built in functions, the line doesn't appear to be alpha blended (it's jaggy). What gives? It says in the help that lines are affected by the current blend mode. How can I fix this?
I expected the following program to draw "blended" lines with no aliasing:
When I enable alpha blending and then draw a line with the built in functions, the line doesn't appear to be alpha blended (it's jaggy). What gives? It says in the help that lines are affected by the current blend mode. How can I fix this?
I expected the following program to draw "blended" lines with no aliasing:
Graphics 640,480 SetBlend ALPHABLEND While Not AppTerminate() Cls DrawLine 10,10, MouseX()-5,MouseY()-5 Flip EndWhile