Placeholder for window sizes Prevent navigator event 0x0 to show as unknown (though...
authorRcmaniac25 <rcmaniac25@hotmail.com>
Fri, 24 Jan 2014 10:33:23 +0000 (10:33 +0000)
committerDiederick Niehorster <dcnieho@gmail.com>
Fri, 24 Jan 2014 10:33:23 +0000 (10:33 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@1668 7f0cb862-5218-0410-a997-914c9d46530a

src/blackberry/fg_main_blackberry.c
src/blackberry/fg_window_blackberry.c

index 0932248..71f7b6d 100644 (file)
@@ -579,6 +579,9 @@ void fgPlatformProcessSingleEvent ( void )
                        seems less likely to work when the app comes to the foreground. Might be a bug */
                     break;
 
+                case 0: //Doesn't exist in header, but shows up when keyboard shows and resizes
+                       break;
+
                 default:
                     LOGW("fgPlatformProcessSingleEvent: unknown navigator event: 0x%X", SLOG2_FA_SIGNED(eventType));
                     break;
index e6876cf..9f35750 100644 (file)
@@ -80,12 +80,14 @@ void fgPlatformOpenWindow( SFG_Window* window, const char* title,
 
     /* Could set size based on what is specified for window. Work on another time
     int size[2];
-    size[0] = w;
-    size[1] = h;
-    if (screen_set_window_property_iv(sWindow, SCREEN_PROPERTY_BUFFER_SIZE, size)) {
-        screen_destroy_window(sWindow);
-        fgError("Could not set window buffer size");
-        return;
+    if(sizeUse) {
+        size[0] = w;
+        size[1] = h;
+        if (screen_set_window_property_iv(sWindow, SCREEN_PROPERTY_BUFFER_SIZE, size)) {
+            screen_destroy_window(sWindow);
+            fgError("Could not set window buffer size");
+            return;
+        }
     }*/
 
     /* Create window buffers */