Commit b3c4ad768944207450086bb1544a612ca054d023
authorDelio Brignoli <brignoli.delio@gmail.com>
Sat, 16 Sep 2017 17:11:06 +0000 (18:11 +0100)
committerMichel Pollet <github.com@pollet.net>
Thu, 21 Sep 2017 05:44:16 +0000 (06:44 +0100)
examples/board_ssd1306/ssd1306demo.c

index 99adbbbec4438a269d64c8a73cb949dba9a10320..5584a424edfbbc1ba1004381dd37b5fd9cfe1b37 100644 (file)
@@ -99,7 +99,7 @@ initGL (int w, int h, float pix_size)
 
        // Double buffered, RGB disp mode.
        glutInitDisplayMode (GLUT_RGB | GLUT_DOUBLE);
-       glutInitWindowSize (w * 4, h * 4);
+       glutInitWindowSize (w, h);
        window_identifier = glutCreateWindow ("SSD1306 128x64 OLED");
 
        // Set up projection matrix
@@ -163,7 +163,7 @@ main (int argc, char *argv[])
 
        // Initialize GLUT system
        glutInit (&argc, argv);
-       initGL (ssd1306.columns, ssd1306.rows, 0.5);
+       initGL (ssd1306.columns, ssd1306.rows, 2.0);
 
        pthread_t run;
        pthread_create (&run, NULL, avr_run_thread, NULL);