Search code examples
c++openglmultisampling

OpenGL Multisampling Lines


Is there a way to just use multisampling on just lines drawn with OpenGL and not with the entire program? Thanks in advance!


Solution

  • Try to enable anti-aliased lines with glEnable(GL_LINE_SMOOTH), plus you can also add a glHint(GL_LINE_SMOOTH_HINT, GL_NICEST). These might get you what you want even it's not true multisampled drawing.