summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--FL/Fl_Image.H15
1 files changed, 8 insertions, 7 deletions
diff --git a/FL/Fl_Image.H b/FL/Fl_Image.H
index 02e97e7a5..b9298d78d 100644
--- a/FL/Fl_Image.H
+++ b/FL/Fl_Image.H
@@ -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
};
/**