mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 11:48:06 +02:00
Disable an assert for hw that do not emit POS as first vertex attrib, like nv1x
This commit is contained in:
parent
db9f97e2ae
commit
a956184f70
1 changed files with 1 additions and 1 deletions
|
|
@ -294,7 +294,7 @@ GLuint _tnl_install_attrs( GLcontext *ctx, const struct tnl_attr_map *map,
|
|||
GLuint i, j;
|
||||
|
||||
assert(nr < _TNL_ATTRIB_MAX);
|
||||
assert(nr == 0 || map[0].attrib == VERT_ATTRIB_POS);
|
||||
/* assert(nr == 0 || map[0].attrib == VERT_ATTRIB_POS);*/
|
||||
|
||||
vtx->new_inputs = ~0;
|
||||
vtx->need_viewport = GL_FALSE;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue