From patchwork Sun Feb 23 23:03:49 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 22823 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 9FF68BDB13 for ; Sun, 23 Feb 2025 23:04:30 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id E1E5B686B8; Mon, 24 Feb 2025 00:04:25 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="tRTPdqnB"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id AB4E7686B0 for ; Mon, 24 Feb 2025 00:04:21 +0100 (CET) Received: from pendragon.ideasonboard.com (81-175-209-231.bb.dnainternet.fi [81.175.209.231]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 9640082A for ; Mon, 24 Feb 2025 00:02:55 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1740351775; bh=ETHThAktD8mvvHaz+Ln0zlq0SC/W9i0qqDuzTxEwX78=; h=From:To:Subject:Date:In-Reply-To:References:From; b=tRTPdqnB+hb/eSxDALSx8/aOXPedWgd0xhjONTc4tfCGZ4EVLNaVaAS1z2t0mjL5o kvEv/ehOh3RHi8RC3IdFQZz7ewL5cN9ugbWg7o6H4r5BBKsvadDb1emNgF4UJkG9SS ffrz9AyR2vhIH8PkM9ke06JtcyhEAho54AYVcBtk= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Subject: [PATCH 01/15] libipa: awb: Sort class member documentation according to header order Date: Mon, 24 Feb 2025 01:03:49 +0200 Message-ID: <20250223230403.1226-2-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.45.3 In-Reply-To: <20250223230403.1226-1-laurent.pinchart@ideasonboard.com> References: <20250223230403.1226-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" 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 Reviewed-by: Stefan Klug --- src/ipa/libipa/awb.cpp | 58 +++++++++++++++++++++--------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/src/ipa/libipa/awb.cpp b/src/ipa/libipa/awb.cpp index 6157bd436183..2e78a4665509 100644 --- a/src/ipa/libipa/awb.cpp +++ b/src/ipa/libipa/awb.cpp @@ -130,35 +130,6 @@ namespace ipa { * \brief Handle the controls supplied in a request */ -/** - * \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 @@ -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 */