From 1641c872ed36ee92ce8136385936e19f8535bec3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mathias=20Fr=C3=B6hlich?= Date: Tue, 11 Dec 2018 18:45:43 +0100 Subject: [PATCH] mesa: Remove now unused _mesa_draw_attrib. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Reviewed-by: Matt Turner Signed-off-by: Mathias Fröhlich Part-of: --- src/mesa/main/arrayobj.h | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/mesa/main/arrayobj.h b/src/mesa/main/arrayobj.h index c5f01ac..c7423f1 100644 --- a/src/mesa/main/arrayobj.h +++ b/src/mesa/main/arrayobj.h @@ -331,21 +331,6 @@ _mesa_draw_edge_flag_array_enabled(const struct gl_context *ctx) } -/** - * Return the attrib for the given attribute. - */ -static inline const struct gl_array_attributes* -_mesa_draw_attrib(const struct gl_context *ctx, gl_vert_attrib attr) -{ - if (ctx->Array._DrawVAOEnabledAttribs & VERT_BIT(attr)) { - const struct gl_vertex_array_object *vao = ctx->Array._DrawVAO; - return _mesa_draw_array_attrib(vao, attr); - } else { - return _vbo_current_attrib(ctx, attr); - } -} - - /* * API functions */ -- 2.7.4