From e948b743631ac9c38ec35fed4d13d8d9e9088191 Mon Sep 17 00:00:00 2001 From: Yuxuan Shui Date: Sat, 10 Feb 2024 14:00:53 +0000 Subject: [PATCH] backend: gl: remove an unused type Signed-off-by: Yuxuan Shui --- src/backend/gl/glx.h | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/backend/gl/glx.h b/src/backend/gl/glx.h index a7663d946a..86701023a0 100644 --- a/src/backend/gl/glx.h +++ b/src/backend/gl/glx.h @@ -19,20 +19,6 @@ struct glx_fbconfig_info { int y_inverted; }; -/// The search criteria for glx_find_fbconfig -struct glx_fbconfig_criteria { - /// Bit width of the red component - int red_size; - /// Bit width of the green component - int green_size; - /// Bit width of the blue component - int blue_size; - /// Bit width of the alpha component - int alpha_size; - /// The depth of X visual - int visual_depth; -}; - struct glx_fbconfig_info *glx_find_fbconfig(struct x_connection *, struct xvisual_info); struct glxext_info {