summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2025-02-23 23:12:40 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2025-02-24 18:22:18 +0200
commit7199a0c39ddf76b34e059db414b5683b567f1deb (patch)
tree1c3360cf6709d8227b3fd58d871a072a739c67e8
parentd476f8358be1536d4edd680c6024f784ff022f5d (diff)
libipa: awb: Sort class member documentation according to header order
Sort the documentation of the class members in the same order as the member declaration in the class definition, as is customary in libcamera. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Stefan Klug <stefan.klug@ideasonboard.com>
-rw-r--r--src/ipa/libipa/awb.cpp58
1 files changed, 29 insertions, 29 deletions
diff --git a/src/ipa/libipa/awb.cpp b/src/ipa/libipa/awb.cpp
index 6157bd43..2e78a466 100644
--- a/src/ipa/libipa/awb.cpp
+++ b/src/ipa/libipa/awb.cpp
@@ -131,35 +131,6 @@ namespace ipa {
*/
/**
- * \var AwbAlgorithm::controls_
- * \brief Controls info map for the controls provided by the algorithm
- */
-
-/**
- * \var AwbAlgorithm::modes_
- * \brief Map of all configured modes
- * \sa AwbAlgorithm::parseModeConfigs
- */
-
-/**
- * \class AwbAlgorithm::ModeConfig
- * \brief Holds the configuration of a single AWB mode
- *
- * Awb modes limit the regulation of the AWB algorithm to a specific range of
- * colour temperatures.
- */
-
-/**
- * \var AwbAlgorithm::ModeConfig::ctLo
- * \brief The lowest valid colour temperature of that mode
- */
-
-/**
- * \var AwbAlgorithm::ModeConfig::ctHi
- * \brief The highest valid colour temperature of that mode
- */
-
-/**
* \brief Parse the mode configurations from the tuning data
* \param[in] tuningData the YamlObject representing the tuning data
* \param[in] def The default value for the AwbMode control
@@ -260,6 +231,35 @@ int AwbAlgorithm::parseModeConfigs(const YamlObject &tuningData,
return 0;
}
+/**
+ * \class AwbAlgorithm::ModeConfig
+ * \brief Holds the configuration of a single AWB mode
+ *
+ * Awb modes limit the regulation of the AWB algorithm to a specific range of
+ * colour temperatures.
+ */
+
+/**
+ * \var AwbAlgorithm::ModeConfig::ctLo
+ * \brief The lowest valid colour temperature of that mode
+ */
+
+/**
+ * \var AwbAlgorithm::ModeConfig::ctHi
+ * \brief The highest valid colour temperature of that mode
+ */
+
+/**
+ * \var AwbAlgorithm::controls_
+ * \brief Controls info map for the controls provided by the algorithm
+ */
+
+/**
+ * \var AwbAlgorithm::modes_
+ * \brief Map of all configured modes
+ * \sa AwbAlgorithm::parseModeConfigs
+ */
+
} /* namespace ipa */
} /* namespace libcamera */