FLTK logo

[master] a61d8fb - macOS: simpler code for auxiliary NSView supporting widgets on a GL3 window.

FLTK matrix user chat room
(using Element browser app)   FLTK gitter user chat room   GitHub FLTK Project   FLTK News RSS Feed  
  FLTK Apps      FLTK Library      Forums      Links     Login 
 All Forums  |  Back to fltk.commit  ]
 
Previous Message ]Next Message ]

[master] a61d8fb - macOS: simpler code for auxiliary NSView supporting widgets on a GL3 window. "ManoloFLTK" Sep 30, 2022  
 
commit a61d8fb6828c5f480aa913f8d96289a8ead26833
Author:     ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>
AuthorDate: Fri Sep 30 16:20:51 2022 +0200
Commit:     ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>
CommitDate: Fri Sep 30 16:20:51 2022 +0200

    macOS: simpler code for auxiliary NSView supporting widgets on a GL3 window.

 src/drivers/Cocoa/Fl_Cocoa_Gl_Window_Driver.mm | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git src/drivers/Cocoa/Fl_Cocoa_Gl_Window_Driver.mm src/drivers/Cocoa/Fl_Cocoa_Gl_Window_Driver.mm
index 741ab33..c72fe6c 100644
--- src/drivers/Cocoa/Fl_Cocoa_Gl_Window_Driver.mm
+++ src/drivers/Cocoa/Fl_Cocoa_Gl_Window_Driver.mm
@@ -313,17 +313,11 @@ void Fl_Cocoa_Gl_Window_Driver::swap_buffers() {
 
 char Fl_Cocoa_Gl_Window_Driver::swap_type() {return copy;}
 
-static void delayed_redraw(Fl_Gl_Window *win) {
-  win->redraw();
-}
-
 void Fl_Cocoa_Gl_Window_Driver::resize(int is_a_resize, int w, int h) {
   if (pWindow->shown()) apply_scissor();
   [(NSOpenGLContext*)pWindow->context() update];
   if (gl1ctxt) {
-    [[gl1ctxt view] setFrame:[[[gl1ctxt view] superview] frame]];
     [gl1ctxt update];
-    Fl::add_timeout(0.01, (Fl_Timeout_Handler)delayed_redraw, pWindow);
   }
 }
 
@@ -474,6 +468,8 @@ void Fl_Cocoa_Gl_Window_Driver::switch_to_GL1() {
   if (!gl1ctxt) {
     NSView *view = [fl_xid(pWindow) contentView];
     win_view_struct.gl1view = [[NSView alloc] initWithFrame:[view frame]];
+    [win_view_struct.gl1view setAutoresizingMask:
+                                NSViewWidthSizable|NSViewHeightSizable];
     NSOpenGLPixelFormat *gl1pixelformat = mode_to_NSOpenGLPixelFormat(
                                 FL_RGB8 | FL_ALPHA | FL_SINGLE, NULL);
     gl1ctxt = [[NSOpenGLContext alloc]
Direct Link to Message ]
 
     
Previous Message ]Next Message ]
 
 

Comments are owned by the poster. All other content is copyright 1998-2024 by Bill Spitzak and others. This project is hosted by The FLTK Team. Please report site problems to 'erco@seriss.com'.