mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Disabled renderPixmap, it's useless. Fixed FBO & PixelBuffer methods instead
This commit is contained in:
parent
4393f6cece
commit
ec8809f308
@ -1927,7 +1927,33 @@ Layer * gGraph::getLineChart()
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
// QTBUG-24710 pixmaps might not be freeing properly..
|
// Render all qued text via QPainter method
|
||||||
|
void gGraphView::DrawTextQue(QPainter &painter)
|
||||||
|
{
|
||||||
|
int w,h;
|
||||||
|
for (int i=0;i<m_textque_items;i++) {
|
||||||
|
TextQue &q = m_textque[i];
|
||||||
|
painter.setFont(*q.font);
|
||||||
|
painter.setBrush(q.color);
|
||||||
|
painter.setRenderHint(QPainter::TextAntialiasing,q.antialias);
|
||||||
|
|
||||||
|
if (q.angle==0) { // normal text
|
||||||
|
painter.drawText(q.x,q.y,q.text);
|
||||||
|
} else { // rotated text
|
||||||
|
w=painter.fontMetrics().width(q.text);
|
||||||
|
h=painter.fontMetrics().xHeight()+2;
|
||||||
|
|
||||||
|
painter.translate(q.x, q.y);
|
||||||
|
painter.rotate(-q.angle);
|
||||||
|
painter.drawText(floor(-w/2.0), floor(-h/2.0), q.text);
|
||||||
|
painter.rotate(+q.angle);
|
||||||
|
painter.translate(-q.x, -q.y);
|
||||||
|
}
|
||||||
|
q.text.clear();
|
||||||
|
}
|
||||||
|
m_textque_items=0;
|
||||||
|
}
|
||||||
|
|
||||||
QImage gGraphView::pbRenderPixmap(int w,int h)
|
QImage gGraphView::pbRenderPixmap(int w,int h)
|
||||||
{
|
{
|
||||||
QImage pm=QImage();
|
QImage pm=QImage();
|
||||||
@ -1936,17 +1962,25 @@ QImage gGraphView::pbRenderPixmap(int w,int h)
|
|||||||
|
|
||||||
if (pbuffer.isValid()) {
|
if (pbuffer.isValid()) {
|
||||||
pbuffer.makeCurrent();
|
pbuffer.makeCurrent();
|
||||||
resizeGL(w,h);
|
|
||||||
initializeGL();
|
initializeGL();
|
||||||
paintGL();
|
resizeGL(w,h);
|
||||||
|
glClearColor(255,255,255,255);
|
||||||
|
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
|
||||||
|
|
||||||
|
renderGraphs();
|
||||||
|
glFlush();
|
||||||
pm=pbuffer.toImage();
|
pm=pbuffer.toImage();
|
||||||
//pm=QPixmap::fromImage(image);
|
|
||||||
pbuffer.doneCurrent();
|
pbuffer.doneCurrent();
|
||||||
|
QPainter painter(&pm);
|
||||||
|
DrawTextQue(painter);
|
||||||
|
painter.end();
|
||||||
|
|
||||||
}
|
}
|
||||||
return pm;
|
return pm;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
QImage gGraphView::fboRenderPixmap(int w,int h)
|
QImage gGraphView::fboRenderPixmap(int w,int h)
|
||||||
{
|
{
|
||||||
QImage pm=QImage();
|
QImage pm=QImage();
|
||||||
@ -1961,7 +1995,7 @@ QImage gGraphView::fboRenderPixmap(int w,int h)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!fbo) {
|
if (!fbo) {
|
||||||
fbo=new QGLFramebufferObject(max_fbo_width,max_fbo_height,QGLFramebufferObject::NoAttachment);
|
fbo=new QGLFramebufferObject(max_fbo_width,max_fbo_height,QGLFramebufferObject::Depth); //NoAttachment);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (fbo && fbo->isValid()) {
|
if (fbo && fbo->isValid()) {
|
||||||
@ -1969,14 +2003,19 @@ QImage gGraphView::fboRenderPixmap(int w,int h)
|
|||||||
if (fbo->bind()) {
|
if (fbo->bind()) {
|
||||||
initializeGL();
|
initializeGL();
|
||||||
resizeGL(w,h);
|
resizeGL(w,h);
|
||||||
paintGL();
|
glClearColor(255,255,255,255);
|
||||||
glFlush();
|
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
|
||||||
//QImage img=grabFrameBuffer(true);
|
|
||||||
fbo->release();
|
|
||||||
|
|
||||||
// Copy just the section of the image (remember openGL draws from the bottom up)
|
renderGraphs(); // render graphs sans text
|
||||||
|
glFlush();
|
||||||
|
fbo->release();
|
||||||
pm=fbo->toImage().copy(0,max_fbo_height-h,w,h);
|
pm=fbo->toImage().copy(0,max_fbo_height-h,w,h);
|
||||||
doneCurrent();
|
doneCurrent();
|
||||||
|
|
||||||
|
QPainter painter(&pm);
|
||||||
|
DrawTextQue(painter); //Just use this on mac to
|
||||||
|
painter.end();
|
||||||
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
delete fbo;
|
delete fbo;
|
||||||
@ -2034,16 +2073,17 @@ QPixmap gGraph::renderPixmap(int w, int h, bool printing)
|
|||||||
|
|
||||||
sg->setScaleY(1.0);
|
sg->setScaleY(1.0);
|
||||||
|
|
||||||
//sg->makeCurrent();
|
// pm=QPixmap::fromImage(sg->fboRenderPixmap(w,h));
|
||||||
|
sg->makeCurrent(); // has to be current for fbo creation
|
||||||
|
|
||||||
#ifndef Q_OS_MAC
|
#ifndef Q_OS_MAC
|
||||||
// This doesn't work on Rich's Radeon boxen either
|
// This doesn't work on Rich's Radeon boxen either
|
||||||
// I'm suspiscious of this function on Radeon hardware.
|
// I'm suspiscious of this function on Radeon hardware.
|
||||||
pm=sg->renderPixmap(w,h,false);
|
// pm=sg->renderPixmap(w,h,false);
|
||||||
#endif
|
#endif
|
||||||
if (pm.isNull()) {
|
pm=QPixmap::fromImage(sg->fboRenderPixmap(w,h));
|
||||||
pm=QPixmap::fromImage(sg->fboRenderPixmap(w,h));
|
|
||||||
// this one gives nags
|
if (pm.isNull()) { // not sure if this will work with printing
|
||||||
} else if (pm.isNull()) { // not sure if this will work with printing
|
|
||||||
qDebug() << "Had to use PixelBuffer for snapshots\n";
|
qDebug() << "Had to use PixelBuffer for snapshots\n";
|
||||||
pm=QPixmap::fromImage(sg->pbRenderPixmap(w,h));
|
pm=QPixmap::fromImage(sg->pbRenderPixmap(w,h));
|
||||||
}
|
}
|
||||||
@ -2160,7 +2200,7 @@ void gGraph::roundY(EventDataType &miny, EventDataType &maxy)
|
|||||||
}
|
}
|
||||||
|
|
||||||
gGraphView::gGraphView(QWidget *parent, gGraphView * shared) :
|
gGraphView::gGraphView(QWidget *parent, gGraphView * shared) :
|
||||||
QGLWidget(QGLFormat(QGL::Rgba | QGL::DoubleBuffer),parent,shared),
|
QGLWidget(QGLFormat(QGL::Rgba | QGL::DoubleBuffer | QGL::NoOverlay),parent,shared),
|
||||||
m_offsetY(0),m_offsetX(0),m_scaleY(1.0),m_scrollbar(NULL)
|
m_offsetY(0),m_offsetX(0),m_scaleY(1.0),m_scrollbar(NULL)
|
||||||
{
|
{
|
||||||
m_shared=shared;
|
m_shared=shared;
|
||||||
@ -2388,10 +2428,11 @@ void gGraphView::DrawTextQue()
|
|||||||
|
|
||||||
if (pc) {
|
if (pc) {
|
||||||
pc->last_used=ti;
|
pc->last_used=ti;
|
||||||
|
|
||||||
glEnable(GL_BLEND);
|
glEnable(GL_BLEND);
|
||||||
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
||||||
|
|
||||||
glEnable(GL_TEXTURE_2D);
|
//glEnable(GL_TEXTURE_2D);
|
||||||
if (q.angle!=0) {
|
if (q.angle!=0) {
|
||||||
glPushMatrix();
|
glPushMatrix();
|
||||||
glTranslatef(q.x-pc->image.height()-(pc->image.height()/2),q.y+pc->image.width()/2 + pc->image.height()/2, 0);
|
glTranslatef(q.x-pc->image.height()-(pc->image.height()/2),q.y+pc->image.width()/2 + pc->image.height()/2, 0);
|
||||||
@ -2405,7 +2446,7 @@ void gGraphView::DrawTextQue()
|
|||||||
// TODO: setup for rotation if angle specified.
|
// TODO: setup for rotation if angle specified.
|
||||||
drawTexture(QPoint(q.x,q.y-pc->image.height()+4),pc->textureID);
|
drawTexture(QPoint(q.x,q.y-pc->image.height()+4),pc->textureID);
|
||||||
}
|
}
|
||||||
glDisable(GL_TEXTURE_2D);
|
// glDisable(GL_TEXTURE_2D);
|
||||||
glDisable(GL_BLEND);
|
glDisable(GL_BLEND);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -2988,7 +3029,7 @@ bool gGraphView::renderGraphs()
|
|||||||
lines->draw();
|
lines->draw();
|
||||||
// lines->setSize(linesize);
|
// lines->setSize(linesize);
|
||||||
|
|
||||||
DrawTextQue();
|
// DrawTextQue();
|
||||||
m_tooltip->paint();
|
m_tooltip->paint();
|
||||||
//glDisable(GL_TEXTURE_2D);
|
//glDisable(GL_TEXTURE_2D);
|
||||||
//glDisable(GL_DEPTH_TEST);
|
//glDisable(GL_DEPTH_TEST);
|
||||||
@ -3185,9 +3226,9 @@ void gGraphView::paintGL()
|
|||||||
// Then display the empty text message
|
// Then display the empty text message
|
||||||
QColor col=Qt::black;
|
QColor col=Qt::black;
|
||||||
AddTextQue(m_emptytext,(width()/2)-x/2,tp,0.0,col,bigfont);
|
AddTextQue(m_emptytext,(width()/2)-x/2,tp,0.0,col,bigfont);
|
||||||
DrawTextQue();
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
DrawTextQue();
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef DEBUG_EFFICIENCY
|
#ifdef DEBUG_EFFICIENCY
|
||||||
|
@ -913,9 +913,13 @@ public:
|
|||||||
//! \brief Add the Text information to the Text Drawing Queue (called by gGraphs renderText method)
|
//! \brief Add the Text information to the Text Drawing Queue (called by gGraphs renderText method)
|
||||||
void AddTextQue(QString & text, short x, short y, float angle=0.0, QColor color=Qt::black, QFont * font=defaultfont, bool antialias=true);
|
void AddTextQue(QString & text, short x, short y, float angle=0.0, QColor color=Qt::black, QFont * font=defaultfont, bool antialias=true);
|
||||||
|
|
||||||
//! \brief Draw all Text in the text drawing queue, via QPainter
|
//! \brief Draw all Text in the text drawing queue
|
||||||
void DrawTextQue();
|
void DrawTextQue();
|
||||||
|
|
||||||
|
//! \brief Draw all text components using QPainter object painter
|
||||||
|
void DrawTextQue(QPainter &painter);
|
||||||
|
|
||||||
|
|
||||||
//! \brief Returns number of graphs contained (whether they are visible or not)
|
//! \brief Returns number of graphs contained (whether they are visible or not)
|
||||||
int size() { return m_graphs.size(); }
|
int size() { return m_graphs.size(); }
|
||||||
|
|
||||||
|
2
main.cpp
2
main.cpp
@ -117,7 +117,7 @@ int main(int argc, char *argv[])
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if QT_VERSION < QT_VERSION_CHECK(5,0,0)
|
#if QT_VERSION < QT_VERSION_CHECK(5,0,0)
|
||||||
QGL::setPreferredPaintEngine(QPaintEngine::OpenGL);
|
QGL::setPreferredPaintEngine(QPaintEngine::Blitter);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
bool force_login_screen=false;
|
bool force_login_screen=false;
|
||||||
|
Loading…
Reference in New Issue
Block a user