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>
}
-/**
- * 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
*/