+ cm := XCreateColormap(dpy,RootWindow(dpy,visinfo.screen),visinfo.visual,AllocNone);
+ winAttr.colormap := cm;
+ winAttr.border_pixel := 0;
+ winAttr.background_pixel := 0;
+ winAttr.event_mask := ExposureMask or ButtonPressMask or StructureNotifyMask or KeyPressMask;
+
+ //Create a window
+ win := XCreateWindow(dpy,RootWindow(dpy,visinfo.screen),0,0,640,480,0,visinfo.depth,InputOutput,visinfo.visual,CWBorderPixel or CWColormap or CWEventMask,@winAttr);
+
+ title := 'FreePascal GLX demo --------- Press any key to exit';