From 22ddd4988e177cc51923d10f088a17edcde9517d Mon Sep 17 00:00:00 2001 From: Eduardo Lima Mitev Date: Tue, 23 Oct 2018 07:56:58 +0200 Subject: mesa/glformats: Remove redundant helper _mesa_base_format_component_count MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There exists _mesa_components_in_format() which already includes all cases handled in _mesa_base_format_component_count(). Reviewed-by: Tapani Pälli --- src/mesa/main/glformats.c | 27 --------------------------- 1 file changed, 27 deletions(-) (limited to 'src/mesa/main/glformats.c') diff --git a/src/mesa/main/glformats.c b/src/mesa/main/glformats.c index bbeb6034dd7..6cb3435dea2 100644 --- a/src/mesa/main/glformats.c +++ b/src/mesa/main/glformats.c @@ -1630,33 +1630,6 @@ _mesa_base_format_has_channel(GLenum base_format, GLenum pname) } -/** - * Returns the number of channels/components for a base format. - */ -GLint -_mesa_base_format_component_count(GLenum base_format) -{ - switch (base_format) { - case GL_LUMINANCE: - case GL_RED: - case GL_ALPHA: - case GL_INTENSITY: - case GL_DEPTH_COMPONENT: - return 1; - case GL_RG: - case GL_LUMINANCE_ALPHA: - case GL_DEPTH_STENCIL: - return 2; - case GL_RGB: - return 3; - case GL_RGBA: - return 4; - default: - return -1; - } -} - - /** * If format is a generic compressed format, return the corresponding * non-compressed format. For other formats, return the format as-is. -- cgit v1.2.3