summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2014-10-13 11:25:36 +0000
committerManolo Gouy <Manolo>2014-10-13 11:25:36 +0000
commit1e2f990177a7b91cc520b92eec0271035e21aaf9 (patch)
tree6e8136642bb08d9298ec59a628924126f08377e0 /FL
parentbe24f37905b1abe2ecbf1a396a60af042f0129f9 (diff)
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
Diffstat (limited to 'FL')
-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
};
/**