mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
Enable anti-aliasing for just the stippled line components
This commit is contained in:
parent
5e089deefe
commit
ee602a64d2
@ -297,7 +297,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, 0xAAAA);
|
glLineStipple(1, 0xcccc);
|
||||||
|
glEnable(GL_BLEND);
|
||||||
glEnable(GL_LINE_STIPPLE);
|
glEnable(GL_LINE_STIPPLE);
|
||||||
} else {
|
} else {
|
||||||
glLineStipple(1, 0xFFFF);
|
glLineStipple(1, 0xFFFF);
|
||||||
@ -341,6 +342,7 @@ void GLShortBuffer::draw()
|
|||||||
glPolygonMode(GL_BACK,GL_FILL);
|
glPolygonMode(GL_BACK,GL_FILL);
|
||||||
}
|
}
|
||||||
if (m_stippled) {
|
if (m_stippled) {
|
||||||
|
glDisable(GL_BLEND);
|
||||||
glDisable(GL_LINE_STIPPLE);
|
glDisable(GL_LINE_STIPPLE);
|
||||||
glLineStipple(1, 0xFFFF);
|
glLineStipple(1, 0xFFFF);
|
||||||
}
|
}
|
||||||
@ -2333,8 +2335,8 @@ void gGraphView::paintGL()
|
|||||||
//if (print_scaleY>1) {
|
//if (print_scaleY>1) {
|
||||||
// lines->setSize(3);
|
// lines->setSize(3);
|
||||||
// }
|
// }
|
||||||
backlines->draw();
|
|
||||||
stippled->draw();
|
stippled->draw();
|
||||||
|
backlines->draw();
|
||||||
for (int i=0;i<m_graphs.size();i++) {
|
for (int i=0;i<m_graphs.size();i++) {
|
||||||
m_graphs[i]->drawGLBuf();
|
m_graphs[i]->drawGLBuf();
|
||||||
}
|
}
|
||||||
|
@ -20,9 +20,9 @@ gXGrid::gXGrid(QColor col)
|
|||||||
{
|
{
|
||||||
Q_UNUSED(col)
|
Q_UNUSED(col)
|
||||||
|
|
||||||
m_major_color=QColor(100,100,100,64);
|
m_major_color=QColor(130,130,130,64);
|
||||||
//m_major_color=QColor(180,180,180,92);
|
//m_major_color=QColor(180,180,180,92);
|
||||||
m_minor_color=QColor(220,220,220,128);
|
m_minor_color=QColor(200,200,200,64);
|
||||||
m_show_major_lines=true;
|
m_show_major_lines=true;
|
||||||
m_show_minor_lines=true;
|
m_show_minor_lines=true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user