From 87e7882dead1d4dce5c4b7f8ca07b5a61b188ba3 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sun, 11 Sep 2011 23:58:26 +1000 Subject: [PATCH] Windows GL Font test #1 --- Graphs/gGraphView.cpp | 19 ++++++++++++++++--- main.cpp | 1 + overview.cpp | 2 +- report.cpp | 2 +- 4 files changed, 19 insertions(+), 5 deletions(-) diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index f0602ed0..e2101c44 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -1284,27 +1284,41 @@ void gGraphView::DrawTextQue() glPushAttrib(GL_COLOR_BUFFER_BIT); //glFlush(); //glEnable(GL_BLEND); - QPainter painter(QGLContext::currentContext()->device()); int w,h; + QPaintDevice *pd=QGLContext::currentContext()->device(); + +/* #ifdef Q_WS_WIN32 + QPixmap *pixmap=dynamic_cast(pd); +#endif */ + for (int i=0;iSetXBounds(first,last); int w=this->width()-20; - QPixmap pixmap=GraphView->renderPixmap(w,240,false); //gwwidth,gwheight,false); + QPixmap pixmap=GraphView->renderPixmap(w,240,false); return pixmap; }