From patchwork Mon Apr 13 11:47:13 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Barnab=C3=A1s_P=C5=91cze?= X-Patchwork-Id: 26518 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 00FDDBDCBD for ; Mon, 13 Apr 2026 11:47:23 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 0720E62E8B; Mon, 13 Apr 2026 13:47:21 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="ftCi3jEA"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id D161862E84 for ; Mon, 13 Apr 2026 13:47:16 +0200 (CEST) Received: from pb-laptop.local (185.182.214.8.nat.pool.zt.hu [185.182.214.8]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 1425497F for ; Mon, 13 Apr 2026 13:45:45 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1776080745; bh=g7bdFfCaZt/3JjuJ0+x9HrvE7K+5UN2oktIBvhJFuac=; h=From:To:Subject:Date:In-Reply-To:References:From; b=ftCi3jEAT0ZAFNG+lRuTkuEmdON5o6afVwmeR5+moEZFmksJZjoLQiDPyEwgrl/oQ Xtbgrgh3T1rqu6SmVq3skMzCBSfpHi7wCkmykwSoymPuJ9sKilKPqaQF0+dA4KGpUB isbd9G7WQEu2ATFbuLSI1XmD0wCEjaMZNHTSKcYg= From: =?utf-8?q?Barnab=C3=A1s_P=C5=91cze?= To: libcamera-devel@lists.libcamera.org Subject: [PATCH v1 3/3] libcamera: software_isp: debayer_egl: Remove unnecessary declarations Date: Mon, 13 Apr 2026 13:47:13 +0200 Message-ID: <20260413114713.426459-3-barnabas.pocze@ideasonboard.com> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260413114713.426459-1-barnabas.pocze@ideasonboard.com> References: <20260413114713.426459-1-barnabas.pocze@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" These functions are not defined, so remove them. Signed-off-by: Barnabás Pőcze Reviewed-by: Kieran Bingham --- src/libcamera/software_isp/debayer_egl.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/libcamera/software_isp/debayer_egl.h b/src/libcamera/software_isp/debayer_egl.h index d563bfa55..644f6604e 100644 --- a/src/libcamera/software_isp/debayer_egl.h +++ b/src/libcamera/software_isp/debayer_egl.h @@ -61,18 +61,9 @@ public: private: static int getInputConfig(PixelFormat inputFormat, DebayerInputConfig &config); static int getOutputConfig(PixelFormat outputFormat, DebayerOutputConfig &config); - int setupStandardBayerOrder(BayerFormat::Order order); - void pushEnv(std::vector &shaderEnv, const char *str); int initBayerShaders(PixelFormat inputFormat, PixelFormat outputFormat); - int initEGLContext(); - int generateTextures(); - int compileShaderProgram(GLuint &shaderId, GLenum shaderType, - unsigned char *shaderData, int shaderDataLen, - std::vector shaderEnv); - int linkShaderProgram(void); int getShaderVariableLocations(); void setShaderVariableValues(const DebayerParams ¶ms); - void configureTexture(GLuint &texture); int debayerGPU(MappedFrameBuffer &in, int out_fd, const DebayerParams ¶ms); /* Shader program identifiers */