你們中許多人的Qt(4.6專門)的用戶將熟悉的OpenGL教程提供的Overpainting例子中,我試圖做一些非常相似,但使用的着色器爲純的OpenGL數據,而不是舊的固定功能流水線。 // Set background and state.
makeCurrent();
qglClearColor(bgColour_);
glEnable(GL_DEPTH_TEST);
glPoly
現在我只是想創建一個圓圈漸變填充: //I want the center to be at 10, 10 in the circle and the radius to be 50 pixels
QRadialGradient radial(QPointF(10, 10), 50);
radial.setColorAt(0, Qt::black); //I want the center t