Bladeren bron

Merge pull request #344 from mortoray/merge-temp

Merge temp
Sean Paul Taylor 13 jaren geleden
bovenliggende
commit
bdf2c454d2
2 gewijzigde bestanden met toevoegingen van 7 en 1 verwijderingen
  1. 1 0
      .kateconfig
  2. 6 1
      gameplay/src/PlatformLinux.cpp

+ 1 - 0
.kateconfig

@@ -0,0 +1 @@
+kate: space-indent on; tab-width 4; indent-width 4; replace-tabs on; show-tabs: on; replace-tabs-save: off; replace-trailing-space-save: off;

+ 6 - 1
gameplay/src/PlatformLinux.cpp

@@ -452,11 +452,16 @@ Platform* Platform::create(Game* game, void* attachToWindow)
     __window = XCreateWindow(__display, DefaultRootWindow(__display), 0, 0, 1280, 720, 0, 
                             visualInfo->depth, InputOutput, visualInfo->visual, winMask,
                             &winAttribs); 
-   
+    
     XMapWindow(__display, __window);
     XStoreName(__display, __window, "");
 
     __context = glXCreateContext(__display, visualInfo, NULL, True);
+    if(!__context)
+    {
+        perror("glXCreateContext");
+        return NULL;
+    }
     glXMakeCurrent(__display, __window, __context);
 
     // Use OpenGL 2.x with GLEW