|
From: Daniel J S. <dan...@ie...> - 2012-01-07 21:00:29
|
On 01/07/2012 02:52 PM, Daniel J Sebald wrote:
+ * QT_GRAPHICSSYSTEM but this requires qt >= 4.7
I assume you are saying that although Qt added the setGraphicsSystem()
routine in version 4.5, it wasn't until version 4.7 that an environment
variable was added. But I think that is an easy fix if gnuplot Qt term
were to program it:
get version from aboutQt
if version >= Qt 4.5
if QT_GRAPHICSSYSTEM does not exist
pick highest rendering in order of
"openvg", "opengl", "raster", "native"
else
setGraphicsSystem(QT_GRAPHICSSYSTEM);
endif
endif
Dan
|