mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Offscreen rendering doesn't like pixmap cache, so disable it for snapshots
This commit is contained in:
parent
d65cb86695
commit
b49063b85e
@ -2143,6 +2143,7 @@ gGraphView::gGraphView(QWidget *parent, gGraphView * shared) :
|
|||||||
m_fadingIn=false;
|
m_fadingIn=false;
|
||||||
m_inAnimation=false;
|
m_inAnimation=false;
|
||||||
m_limbo=false;
|
m_limbo=false;
|
||||||
|
use_pixmap_cache=true;
|
||||||
}
|
}
|
||||||
|
|
||||||
gGraphView::~gGraphView()
|
gGraphView::~gGraphView()
|
||||||
@ -2179,16 +2180,14 @@ void gGraphView::DrawTextQue()
|
|||||||
const qint64 under_limit_cache_bonus=30000; // If under the limit, give a bonus to the millisecond timeout.
|
const qint64 under_limit_cache_bonus=30000; // If under the limit, give a bonus to the millisecond timeout.
|
||||||
const qint32 max_pixmap_cache=4*1048576; // Maximum size of pixmap cache (it can grow over this, but only temporarily)
|
const qint32 max_pixmap_cache=4*1048576; // Maximum size of pixmap cache (it can grow over this, but only temporarily)
|
||||||
|
|
||||||
const bool use_pixmap_cache=true;
|
|
||||||
quint64 ti=0,exptime=0;
|
quint64 ti=0,exptime=0;
|
||||||
int w,h;
|
int w,h;
|
||||||
QHash<QString,myPixmapCache*>::iterator it;
|
QHash<QString,myPixmapCache*>::iterator it;
|
||||||
QPainter painter;
|
QPainter painter;
|
||||||
if (use_pixmap_cache) {
|
if (usePixmapCache()) {
|
||||||
// Current time in milliseconds since epoch.
|
// Current time in milliseconds since epoch.
|
||||||
ti=QDateTime::currentDateTime().toMSecsSinceEpoch();
|
ti=QDateTime::currentDateTime().toMSecsSinceEpoch();
|
||||||
|
|
||||||
|
|
||||||
if (pixmap_cache_size > max_pixmap_cache) { // comment this if block out to only cleanup when past the maximum cache size
|
if (pixmap_cache_size > max_pixmap_cache) { // comment this if block out to only cleanup when past the maximum cache size
|
||||||
// Expire any strings not used
|
// Expire any strings not used
|
||||||
QList<QString> expire;
|
QList<QString> expire;
|
||||||
@ -2225,23 +2224,19 @@ void gGraphView::DrawTextQue()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//else {
|
else {
|
||||||
glPushAttrib(GL_COLOR_BUFFER_BIT);
|
glPushAttrib(GL_COLOR_BUFFER_BIT);
|
||||||
|
|
||||||
#ifndef USE_RENDERTEXT
|
#ifndef USE_RENDERTEXT
|
||||||
painter.begin(this);
|
painter.begin(this);
|
||||||
#endif
|
#endif
|
||||||
//}
|
}
|
||||||
for (int i=0;i<m_textque_items;i++) {
|
for (int i=0;i<m_textque_items;i++) {
|
||||||
// GL Font drawing is ass in Qt.. :(
|
// GL Font drawing is ass in Qt.. :(
|
||||||
TextQue & q=m_textque[i];
|
TextQue & q=m_textque[i];
|
||||||
|
|
||||||
#ifdef Q_OS_MAC
|
|
||||||
// can do antialiased text via texture cache fine on mac
|
// can do antialiased text via texture cache fine on mac
|
||||||
if (use_pixmap_cache) {
|
if (usePixmapCache()) {
|
||||||
#else
|
|
||||||
if (use_pixmap_cache && q.antialias) {
|
|
||||||
#endif
|
|
||||||
// Generate the pixmap cache "key"
|
// Generate the pixmap cache "key"
|
||||||
QString hstr=QString("%4:%5:%6%7").arg(q.text).arg(q.color.name()).arg(q.font->key()).arg(q.antialias);
|
QString hstr=QString("%4:%5:%6%7").arg(q.text).arg(q.color.name()).arg(q.font->key()).arg(q.antialias);
|
||||||
|
|
||||||
@ -2352,12 +2347,12 @@ void gGraphView::DrawTextQue()
|
|||||||
//q.text.squeeze();
|
//q.text.squeeze();
|
||||||
}
|
}
|
||||||
|
|
||||||
// if (!use_pixmap_cache) {
|
if (!usePixmapCache()) {
|
||||||
#ifndef USE_RENDERTEXT
|
#ifndef USE_RENDERTEXT
|
||||||
painter.end();
|
painter.end();
|
||||||
#endif
|
#endif
|
||||||
glPopAttrib();
|
glPopAttrib();
|
||||||
// }
|
}
|
||||||
//qDebug() << "rendered" << m_textque_items << "text items";
|
//qDebug() << "rendered" << m_textque_items << "text items";
|
||||||
m_textque_items=0;
|
m_textque_items=0;
|
||||||
}
|
}
|
||||||
@ -3109,12 +3104,12 @@ void gGraphView::paintGL()
|
|||||||
double fps=v/double(rs);
|
double fps=v/double(rs);
|
||||||
ss="Debug Mode "+QString::number(ms,'f',1)+"ms ("+QString::number(fps,'f',1)+"fps) "+QString::number(lines_drawn_this_frame,'f',0)+" lines "+QString::number(quads_drawn_this_frame,'f',0)+" quads "+QString::number(pixmap_cache.count(),'f',0)+" strings "+QString::number(pixmap_cache_size/1024.0,'f',1)+"Kb";
|
ss="Debug Mode "+QString::number(ms,'f',1)+"ms ("+QString::number(fps,'f',1)+"fps) "+QString::number(lines_drawn_this_frame,'f',0)+" lines "+QString::number(quads_drawn_this_frame,'f',0)+" quads "+QString::number(pixmap_cache.count(),'f',0)+" strings "+QString::number(pixmap_cache_size/1024.0,'f',1)+"Kb";
|
||||||
int w,h;
|
int w,h;
|
||||||
GetTextExtent(ss,w,h);
|
GetTextExtent(ss,w,h); // this uses tightBoundingRect, which is different on Mac than it is on Windows & Linux.
|
||||||
QColor col=Qt::white;
|
QColor col=Qt::white;
|
||||||
quads->add(width()-m_graphs[0]->marginRight(),0,width()-m_graphs[0]->marginRight(),w,width(),w,width(),0,col.rgba());
|
quads->add(width()-m_graphs[0]->marginRight(),0,width()-m_graphs[0]->marginRight(),w,width(),w,width(),0,col.rgba());
|
||||||
quads->draw();
|
quads->draw();
|
||||||
#ifndef Q_OS_MAC
|
#ifndef Q_OS_MAC
|
||||||
AddTextQue(ss,width()+7,w/2,90,col,defaultfont);
|
AddTextQue(ss,width()+7,w/2+4,90,col,defaultfont);
|
||||||
#else
|
#else
|
||||||
AddTextQue(ss,width()+3,w/2,90,col,defaultfont);
|
AddTextQue(ss,width()+3,w/2,90,col,defaultfont);
|
||||||
#endif
|
#endif
|
||||||
|
@ -960,6 +960,8 @@ public:
|
|||||||
QMutex dl_mutex;
|
QMutex dl_mutex;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//! \brief Sends day object to be distributed to all Graphs Layers objects
|
//! \brief Sends day object to be distributed to all Graphs Layers objects
|
||||||
void setDay(Day * day);
|
void setDay(Day * day);
|
||||||
|
|
||||||
@ -1033,6 +1035,11 @@ protected:
|
|||||||
//! \brief Add Graph to drawing queue, mainly for the benefit of multithreaded drawing code
|
//! \brief Add Graph to drawing queue, mainly for the benefit of multithreaded drawing code
|
||||||
void queGraph(gGraph *,int originX, int originY, int width, int height);
|
void queGraph(gGraph *,int originX, int originY, int width, int height);
|
||||||
|
|
||||||
|
|
||||||
|
void setUsePixmapCache(bool b) { use_pixmap_cache=b; }
|
||||||
|
|
||||||
|
bool usePixmapCache() { return use_pixmap_cache; }
|
||||||
|
|
||||||
//! \brief the list of graphs to draw this frame
|
//! \brief the list of graphs to draw this frame
|
||||||
QList<gGraph *> m_drawlist;
|
QList<gGraph *> m_drawlist;
|
||||||
|
|
||||||
@ -1097,6 +1104,7 @@ protected:
|
|||||||
// turn this into a struct later..
|
// turn this into a struct later..
|
||||||
QHash<QString,myPixmapCache *> pixmap_cache;
|
QHash<QString,myPixmapCache *> pixmap_cache;
|
||||||
qint32 pixmap_cache_size;
|
qint32 pixmap_cache_size;
|
||||||
|
bool use_pixmap_cache;
|
||||||
|
|
||||||
|
|
||||||
//QVector<GLuint> texid;
|
//QVector<GLuint> texid;
|
||||||
|
@ -242,7 +242,10 @@ void MainWindow::Startup()
|
|||||||
PROFILE.LoadMachineData();
|
PROFILE.LoadMachineData();
|
||||||
|
|
||||||
SnapshotGraph=new gGraphView(this,daily->graphView());
|
SnapshotGraph=new gGraphView(this,daily->graphView());
|
||||||
|
#ifndef Q_OS_MAC
|
||||||
|
//Windows & Linux barfs when offscreen rendering with pixmap cached text
|
||||||
|
SnapshotGraph->setUsePixmapCache(false);
|
||||||
|
#endif
|
||||||
SnapshotGraph->setFormat(daily->graphView()->format());
|
SnapshotGraph->setFormat(daily->graphView()->format());
|
||||||
//SnapshotGraph->setMaximumSize(1024,512);
|
//SnapshotGraph->setMaximumSize(1024,512);
|
||||||
//SnapshotGraph->setMinimumSize(1024,512);
|
//SnapshotGraph->setMinimumSize(1024,512);
|
||||||
|
Loading…
Reference in New Issue
Block a user