mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-17 02:40:37 +01:00
crocus: reorder version checks on indirect xfb
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11707>
This commit is contained in:
parent
063d7bfa1c
commit
6909b4a75a
1 changed files with 2 additions and 2 deletions
|
|
@ -374,8 +374,8 @@ crocus_draw_vbo(struct pipe_context *ctx,
|
|||
return;
|
||||
}
|
||||
|
||||
if (indirect && indirect->count_from_stream_output &&
|
||||
screen->devinfo.verx10 < 75) {
|
||||
if (screen->devinfo.verx10 < 75 &&
|
||||
indirect && indirect->count_from_stream_output) {
|
||||
crocus_draw_vbo_get_vertex_count(ctx, info, drawid_offset, indirect);
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue