mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 11:30:21 +01:00
draw: vertex fetch can be validated too early leading to an assertion... disable
This commit is contained in:
parent
cbec008491
commit
05a4ecdec2
1 changed files with 5 additions and 1 deletions
|
|
@ -314,7 +314,11 @@ static fetch_func get_fetch_func( enum pipe_format format )
|
|||
return NULL; /* not sure why this is needed */
|
||||
|
||||
default:
|
||||
assert(0);
|
||||
/* This can get hit because draw-state-validation is too eager,
|
||||
and can jump in here validating stuff before the state tracker has set
|
||||
up everything.
|
||||
*/
|
||||
/* assert(0); */
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue