src/glrenderer.cpp

changeset 1391
5fa4bf1fc781
parent 1376
83dd6cbd7f1a
child 1393
f0fe7ea82b81
equal deleted inserted replaced
1390:3eace926af7f 1391:5fa4bf1fc781
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);

mercurial