diff options
Diffstat (limited to 'src/fltk-widgets-groups-windows-opengl.ads')
-rw-r--r-- | src/fltk-widgets-groups-windows-opengl.ads | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/fltk-widgets-groups-windows-opengl.ads b/src/fltk-widgets-groups-windows-opengl.ads index 63762fb..9c8d1c9 100644 --- a/src/fltk-widgets-groups-windows-opengl.ads +++ b/src/fltk-widgets-groups-windows-opengl.ads @@ -16,10 +16,6 @@ private with package FLTK.Widgets.Groups.Windows.OpenGL is - ------------- - -- Types -- - ------------- - type GL_Window is new Window with private; type GL_Window_Reference (Data : not null access GL_Window'Class) is @@ -44,10 +40,6 @@ package FLTK.Widgets.Groups.Windows.OpenGL is - -------------------- - -- Constructors -- - -------------------- - package Forge is function Create @@ -100,6 +92,10 @@ package FLTK.Widgets.Groups.Windows.OpenGL is (This : in GL_Window) return Float; + procedure Resize + (This : in out GL_Window; + X, Y, W, H : in Integer); + @@ -195,6 +191,9 @@ private type GL_Window is new Window with null record; + overriding procedure Initialize + (This : in out GL_Window); + overriding procedure Finalize (This : in out GL_Window); @@ -260,3 +259,4 @@ private end FLTK.Widgets.Groups.Windows.OpenGL; + |