Added Doxygen comments for enum Fl_RGB_Scaling.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10374 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Manolo Gouy 2014-10-13 11:25:36 +00:00
parent be24f37905
commit 1e2f990177

View File

@ -16,8 +16,8 @@
// http://www.fltk.org/str.php
//
/* \file
Fl_Image, Fl_RGB_Image classes . */
/** \file
Fl_Image, Fl_RGB_Image classes. */
#ifndef Fl_Image_H
# define Fl_Image_H
@ -154,12 +154,13 @@ class FL_EXPORT Fl_Image {
virtual void uncache();
};
/// \enum Fl_RGB_Scaling
/// The scaling algorithm to use.
///
/** \enum Fl_RGB_Scaling
The image-scaling algorithm to use.
*/
enum Fl_RGB_Scaling {
FL_SCALING_NEAREST = 0,
FL_SCALING_BILINEAR
FL_SCALING_NEAREST = 0, ///< default RGB image-scaling algorithm
FL_SCALING_BILINEAR ///< alternative, slower and more accurate RGB image-scaling algorithm
};
/**