From patchwork Tue Nov 19 10:37:34 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Klug X-Patchwork-Id: 21995 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 A7D26C32F3 for ; Tue, 19 Nov 2024 10:38:08 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 9AA2365F0C; Tue, 19 Nov 2024 11:38:07 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="plq3FB+d"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id C43E365EFE for ; Tue, 19 Nov 2024 11:38:05 +0100 (CET) Received: from ideasonboard.com (unknown [IPv6:2a00:6020:448c:6c00:bf40:cdab:103d:2270]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 7A020641; Tue, 19 Nov 2024 11:37:48 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1732012668; bh=b1v1X/doN32FWxYLcuerPX9uL0BUQp3HdavaQs/Ia1s=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=plq3FB+dI9AxGF8bMWQSdJCGi/VstotFRhbj9gDZ8OrzIZLD8WFIpD0IcPoNNNxsz i/T4NCWI0/1ZosB2rOb/72oGkYJaf5pP2XDsx0eZd3s67AW10o4a3lC6/z2kN3kLLB y+IrYgIOFxiMYAUXOcgFjnc5AHOL4FGmd/SaXXtg= From: Stefan Klug To: libcamera-devel@lists.libcamera.org Cc: Stefan Klug Subject: [PATCH v2 7/9] libipa: Use Matrix class from libcamera Date: Tue, 19 Nov 2024 11:37:34 +0100 Message-ID: <20241119103740.1919807-8-stefan.klug@ideasonboard.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20241119103740.1919807-1-stefan.klug@ideasonboard.com> References: <20241119103740.1919807-1-stefan.klug@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" Use the Matrix class from libcamera/internal in libipa so that the one from libipa can be dropped later. Signed-off-by: Stefan Klug Reviewed-by: Laurent Pinchart --- src/ipa/libipa/vector.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ipa/libipa/vector.h b/src/ipa/libipa/vector.h index 8612a06a2ab2..dcafcb1c0e96 100644 --- a/src/ipa/libipa/vector.h +++ b/src/ipa/libipa/vector.h @@ -14,9 +14,9 @@ #include #include -#include "libcamera/internal/yaml_parser.h" +#include "libcamera/internal/matrix.h" -#include "matrix.h" +#include "libcamera/internal/yaml_parser.h" namespace libcamera {