Remove some trailing spaces
[gltest.git] / glxbackend.cpp
index 9f8ed3e257d5aac8ec10239ecd33b9934332028b..a957e5bfeb8963618ba87f00a34394c7b0dd9c95 100644 (file)
 #include <GL/glxext.h>
 #include <string>
 
-/* attributes for a double buffered visual in RGBA format with at least
-* 4 bits per color */                       
+// attributes for a double buffered visual in RGBA format with at least 4 bits per color
 static int attrList[] =                                             
-{                                                                      
+{
        GLX_RGBA, GLX_DOUBLEBUFFER,
-       GLX_RED_SIZE, 4,                                                   
-       GLX_GREEN_SIZE, 4,                                                 
+       GLX_RED_SIZE, 4,
+       GLX_GREEN_SIZE, 4,
        GLX_BLUE_SIZE, 4,
-       None                                                               
+       None
 };
 
 VisualID GLXBackend::initialize(Display *display)