From 4e85ce87f19206d3a8fc075b85d5762435c34e06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barnab=C3=A1s=20P=C5=91cze?= Date: Fri, 3 Apr 2026 17:24:48 +0200 Subject: [PATCH] libcamera: software_isp: debayer_egl: Remove unnecessary declarations MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These functions are not defined, so remove them. Signed-off-by: Barnabás Pőcze Reviewed-by: Kieran Bingham Reviewed-by: Bryan O'Donoghue --- 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 d563bfa5..644f6604 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 */