245 // ============================================================================= |
245 // ============================================================================= |
246 // |
246 // |
247 void GLRenderer::initializeGL() |
247 void GLRenderer::initializeGL() |
248 { |
248 { |
249 initializeOpenGLFunctions(); |
249 initializeOpenGLFunctions(); |
|
250 |
|
251 if (glGetError() != GL_NO_ERROR) |
|
252 { |
|
253 abort(); |
|
254 } |
|
255 |
250 setBackground(); |
256 setBackground(); |
251 glLineWidth (config::lineThickness()); |
257 glLineWidth (config::lineThickness()); |
252 glLineStipple (1, 0x6666); |
258 glLineStipple (1, 0x6666); |
253 setAutoFillBackground (false); |
259 setAutoFillBackground (false); |
254 setMouseTracking (true); |
260 setMouseTracking (true); |