mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-31 11:20:26 +01:00
gallium: Remove draw_vertex_fetch::lookup.
It is not being used, and would be dangerous to use given the possibility of constants.
This commit is contained in:
parent
fc36399f23
commit
cdb48e20d6
2 changed files with 0 additions and 7 deletions
|
|
@ -161,8 +161,6 @@ unsigned draw_vf_set_vertex_attributes( struct draw_vertex_fetch *vf,
|
|||
|
||||
assert(nr < PIPE_ATTRIB_MAX);
|
||||
|
||||
memset(vf->lookup, 0, sizeof(vf->lookup));
|
||||
|
||||
for (j = 0, i = 0; i < nr; i++) {
|
||||
const unsigned format = map[i].format;
|
||||
if (format == DRAW_EMIT_PAD) {
|
||||
|
|
@ -175,9 +173,6 @@ unsigned draw_vf_set_vertex_attributes( struct draw_vertex_fetch *vf,
|
|||
|
||||
}
|
||||
else {
|
||||
assert(vf->lookup[map[i].attrib] == 0 || format == DRAW_EMIT_1F_CONST);
|
||||
vf->lookup[map[i].attrib] = &vf->attr[j];
|
||||
|
||||
vf->attr[j].attrib = map[i].attrib;
|
||||
vf->attr[j].format = format;
|
||||
vf->attr[j].insert = draw_vf_format_info[format].insert;
|
||||
|
|
|
|||
|
|
@ -159,8 +159,6 @@ struct draw_vertex_fetch
|
|||
unsigned attr_count;
|
||||
unsigned vertex_stride;
|
||||
|
||||
struct draw_vf_attr *lookup[PIPE_ATTRIB_MAX];
|
||||
|
||||
draw_vf_emit_func emit;
|
||||
|
||||
/* Parameters and constants for codegen:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue