mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Windows needed renderPixmap. Typical. Mac & Linux still don't need it
This commit is contained in:
parent
ec8809f308
commit
1bca04c756
@ -2073,21 +2073,24 @@ QPixmap gGraph::renderPixmap(int w, int h, bool printing)
|
|||||||
|
|
||||||
sg->setScaleY(1.0);
|
sg->setScaleY(1.0);
|
||||||
|
|
||||||
// pm=QPixmap::fromImage(sg->fboRenderPixmap(w,h));
|
|
||||||
sg->makeCurrent(); // has to be current for fbo creation
|
sg->makeCurrent(); // has to be current for fbo creation
|
||||||
|
#ifdef Q_OS_WIN
|
||||||
#ifndef Q_OS_MAC
|
if (pm.isNull()){
|
||||||
// This doesn't work on Rich's Radeon boxen either
|
pm=sg->renderPixmap(w,h,false);
|
||||||
// I'm suspiscious of this function on Radeon hardware.
|
}
|
||||||
// pm=sg->renderPixmap(w,h,false);
|
if (pm.isNull()) { // Works, but gives shader warnings
|
||||||
#endif
|
pm=QPixmap::fromImage(sg->pbRenderPixmap(w,h));
|
||||||
|
}
|
||||||
|
if (pm.isNull()){ // crashes on mine, not sure what to do about it
|
||||||
|
pm=QPixmap::fromImage(sg->fboRenderPixmap(w,h));
|
||||||
|
}
|
||||||
|
#else
|
||||||
pm=QPixmap::fromImage(sg->fboRenderPixmap(w,h));
|
pm=QPixmap::fromImage(sg->fboRenderPixmap(w,h));
|
||||||
|
|
||||||
if (pm.isNull()) { // not sure if this will work with printing
|
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));
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
//sg->doneCurrent();
|
//sg->doneCurrent();
|
||||||
sg->trashGraphs();
|
sg->trashGraphs();
|
||||||
m_graphview=tgv;
|
m_graphview=tgv;
|
||||||
|
Loading…
Reference in New Issue
Block a user