I'm making a paint-like program. I want to allow users to draw rectangles (selections). Presently, I'm painting the rectangle using white lines. However, if they try drawing one over top a white image, the line won't be visible.
Other programs get around this by using "marching ants" or by using a sort of inverted color so that the line is always visible.
What's the easiest way to achieve this effect in OpenGL?
If relevant, I'm using C# w/ OpenTK + WinForms.