Turned off the line stipple and GL blending for the horizontal grids

This commit is contained in:
Mark Watkins 2011-12-31 22:26:26 +10:00
parent 44d0256bbc
commit 4f0f91b0c1
2 changed files with 5 additions and 4 deletions

View File

@ -307,7 +307,7 @@ void GLShortBuffer::draw()
{ {
if (m_cnt>0) { if (m_cnt>0) {
bool antialias=m_forceantialias || (PROFILE.ExistsAndTrue("UseAntiAliasing") && m_antialias); bool antialias=m_forceantialias || (PROFILE.ExistsAndTrue("UseAntiAliasing") && m_antialias);
if (m_stippled) antialias=true; if (m_stippled) antialias=false;
float size=m_size; float size=m_size;
if (antialias) { if (antialias) {
glEnable(GL_BLEND); glEnable(GL_BLEND);
@ -325,7 +325,8 @@ void GLShortBuffer::draw()
} }
if (m_type==GL_LINES || m_type==GL_LINE_LOOP) { if (m_type==GL_LINES || m_type==GL_LINE_LOOP) {
if (m_stippled) { if (m_stippled) {
glLineStipple(1, 0xcccc); glLineStipple(1, 0xffff);
size=1;
glEnable(GL_LINE_STIPPLE); glEnable(GL_LINE_STIPPLE);
} else { } else {
glLineStipple(1, 0xFFFF); glLineStipple(1, 0xFFFF);

View File

@ -20,9 +20,9 @@ gXGrid::gXGrid(QColor col)
{ {
Q_UNUSED(col) Q_UNUSED(col)
m_major_color=QColor(130,130,130,64); m_major_color=QColor(180,180,180,64);
//m_major_color=QColor(180,180,180,92); //m_major_color=QColor(180,180,180,92);
m_minor_color=QColor(200,200,200,64); m_minor_color=QColor(230,230,230,64);
m_show_major_lines=true; m_show_major_lines=true;
m_show_minor_lines=true; m_show_minor_lines=true;
} }