Restore Doxygen doc of fl_graphics_driver

This commit is contained in:
ManoloFLTK 2023-09-17 09:00:48 +02:00
parent 5fa994fcfc
commit 824818303c
2 changed files with 12 additions and 11 deletions

View File

@ -2,7 +2,7 @@
// Declaration of classes Fl_Graphics_Driver, Fl_Scalable_Graphics_Driver, // Declaration of classes Fl_Graphics_Driver, Fl_Scalable_Graphics_Driver,
// and Fl_Font_Descriptor for the Fast Light Tool Kit (FLTK). // and Fl_Font_Descriptor for the Fast Light Tool Kit (FLTK).
// //
// Copyright 2010-2022 by Bill Spitzak and others. // Copyright 2010-2023 by Bill Spitzak and others.
// //
// This library is free software. Distribution and use rights are outlined in // This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this // the file "COPYING" which should have been included with this file. If this
@ -37,7 +37,6 @@
class Fl_Graphics_Driver; class Fl_Graphics_Driver;
class Fl_Font_Descriptor; class Fl_Font_Descriptor;
class Fl_Image_Surface; class Fl_Image_Surface;
/** \brief Points to the driver that currently receives all graphics requests */
FL_EXPORT extern Fl_Graphics_Driver *fl_graphics_driver; FL_EXPORT extern Fl_Graphics_Driver *fl_graphics_driver;
/** /**

View File

@ -1,7 +1,7 @@
// //
// Fl_Graphics_Driver class for the Fast Light Tool Kit (FLTK). // Fl_Graphics_Driver class for the Fast Light Tool Kit (FLTK).
// //
// Copyright 2010-2022 by Bill Spitzak and others. // Copyright 2010-2023 by Bill Spitzak and others.
// //
// This library is free software. Distribution and use rights are outlined in // This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this // the file "COPYING" which should have been included with this file. If this
@ -14,24 +14,26 @@
// https://www.fltk.org/bugs.php // https://www.fltk.org/bugs.php
// //
/** \file Fl_Graphics_Driver.cxx
\brief Implementation of class Fl_Graphics_Driver.
*/
#include <FL/Fl_Graphics_Driver.H>
/** Points to the driver that currently receives all graphics requests */
FL_EXPORT Fl_Graphics_Driver *fl_graphics_driver;
/** /**
\cond DriverDev \cond DriverDev
\addtogroup DriverDeveloper \addtogroup DriverDeveloper
\{ \{
*/ */
#include <config.h>
#include <FL/Fl.H>
#include <FL/Fl_Graphics_Driver.H>
#include "Fl_Screen_Driver.H" #include "Fl_Screen_Driver.H"
#include <FL/Fl_Image.H>
#include <FL/fl_draw.H>
#include <FL/Fl_Image_Surface.H> #include <FL/Fl_Image_Surface.H>
#include <FL/math.h> #include <FL/math.h> // for fabs(), sqrt()
#include <FL/platform.H> #include <FL/platform.H> // for fl_open_display()
#include <stdlib.h> #include <stdlib.h>
FL_EXPORT Fl_Graphics_Driver *fl_graphics_driver; // the current driver of graphics operations
const Fl_Graphics_Driver::matrix Fl_Graphics_Driver::m0 = {1, 0, 0, 1, 0, 0}; const Fl_Graphics_Driver::matrix Fl_Graphics_Driver::m0 = {1, 0, 0, 1, 0, 0};