mesa: Remove now unused _mesa_draw_attrib.

Reviewed-by: Matt Turner <mattst88@gmail.com>
Signed-off-by: Mathias Fröhlich <Mathias.Froehlich@web.de>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/308>
This commit is contained in:
Mathias Fröhlich
2018-12-11 18:45:43 +01:00
committed by Marge Bot
parent 305724dd7b
commit 1641c872ed
-15
View File
@@ -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
*/