From c4a238c45f7d15dc8568a2f3fc09174b151f97df Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Mon, 2 Jan 2012 18:06:08 +1000 Subject: [PATCH] Explicitly disable GL blending for lines. --- Graphs/gGraphView.cpp | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index 639cb148..3ca683a2 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -309,10 +309,14 @@ void GLShortBuffer::draw() bool antialias=m_forceantialias || (PROFILE.ExistsAndTrue("UseAntiAliasing") && m_antialias); if (m_stippled) antialias=false; float size=m_size; - if (antialias) { - glEnable(GL_BLEND); - glBlendFunc(m_blendfunc1, m_blendfunc2); + if (antialias) { + if (m_type==GL_LINES || m_type==GL_LINE_LOOP) { + glEnable(GL_ALPHA_TEST); + } else { + glEnable(GL_BLEND); + glBlendFunc(m_blendfunc1, m_blendfunc2); + } //glColorMask(GL_FALSE, GL_FALSE, GL_FALSE, GL_TRUE); if (m_type==GL_LINES || m_type==GL_LINE_LOOP) { glEnable(GL_LINE_SMOOTH); @@ -382,7 +386,11 @@ void GLShortBuffer::draw() } else if (m_type==GL_POLYGON) { glDisable(GL_POLYGON_SMOOTH); } - glDisable(GL_BLEND); + if (m_type==GL_LINES || m_type==GL_LINE_LOOP) { + glDisable(GL_ALPHA_TEST); + } else { + glDisable(GL_BLEND); + } } } }