| Age | Commit message (Collapse) | Author |
|
|
|
drivers/Wayland/Fl_Wayland_Window_Driver.cxx:1515:47: warning: declaration ‘struct wld_window::custom_cursor’ does not declare anything
|
|
|
|
|
|
|
|
|
|
|
|
No code changes.
|
|
|
|
|
|
and also add more detailed documentation of platform-specific behaviors.
|
|
|
|
|
|
|
|
|
|
Also, remove Doxygen warning from file bundled-libs.dox
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(no code changes)
|
|
This removes a \todo item.
|
|
Since FLTK 1.4.0 inclusion of FL/Fl.H is no longer a requirement
unless class Fl is used (e.g. Fl::run()) or if it is used to include
other headers like FL/Enumerations.H
|
|
- replace tabs with spaces
- remove trailing whitespace
|
|
|
|
Add Doxygen-formatted description of the Wayland backend
Add bundled-libs.dox
Delete README.bundled-libs.txt
Move "Development" page to "Development of FLTK" chapter
|
|
|
|
|
|
|
|
|
|
Add "New FL_OVERRIDE Macro" paragraph and update some more parts.
|
|
|
|
|
|
|
|
|
|
This adds fl_rounded_rect and fl_rounded_rectf so the
user can draw rounded rectangles. This uses existing and
optimised code that is rearranged.
|
|
|
|
|
|
|
|
Also, the application-level code to add widgets to a GL3 window becomes
platform-independent.
|
|
Under non-macOS platforms, the key is to call glUseProgram(0); after having used OpenGL 3
which allows to then use OpenGL 1 and draw FLTK widgets over the OpenGL3 scene.
Under macOS, this is impossible because macOS GL3 contexts are not compatible
with GL1. The solution implemented here is to create an additional Fl_Gl_Window
placed above and sized as the GL3-based window, to give it a non opaque,
GL1-based context, and to put the FLTK widgets in that additional window.
|
|
|