blob: d1d0d7cd4334c61facbf585d13f86e8c537faf53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
void
brw_pipe_vertex_cleanup( struct brw_context *brw )
{
for (i = 0; i < VERT_ATTRIB_MAX; i++) {
brw->sws->bo_unreference(brw->vb.inputs[i].bo);
brw->vb.inputs[i].bo = NULL;
}
}
|