mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 22:08:26 +02:00
d3d1x: set primitive restart in the correct draw calls
This commit is contained in:
parent
bb0482a55b
commit
27b0c9d513
1 changed files with 9 additions and 9 deletions
|
|
@ -742,7 +742,8 @@ struct GalliumD3D10Device : public GalliumD3D10ScreenImpl<threadsafe>
|
|||
info.max_index = ~0;
|
||||
info.start_instance = 0;
|
||||
info.instance_count = 1;
|
||||
info.primitive_restart = FALSE;
|
||||
info.primitive_restart = TRUE;
|
||||
info.restart_index = strip_cut_index;
|
||||
|
||||
pipe->draw_vbo(pipe, &info);
|
||||
}
|
||||
|
|
@ -765,8 +766,7 @@ struct GalliumD3D10Device : public GalliumD3D10ScreenImpl<threadsafe>
|
|||
info.max_index = ~0;
|
||||
info.start_instance = 0;
|
||||
info.instance_count = 1;
|
||||
info.primitive_restart = TRUE;
|
||||
info.restart_index = strip_cut_index;
|
||||
info.primitive_restart = FALSE;
|
||||
|
||||
pipe->draw_vbo(pipe, &info);
|
||||
}
|
||||
|
|
@ -792,7 +792,8 @@ struct GalliumD3D10Device : public GalliumD3D10ScreenImpl<threadsafe>
|
|||
info.max_index = ~0;
|
||||
info.start_instance = start_instance_location;
|
||||
info.instance_count = instance_count;
|
||||
info.primitive_restart = FALSE;
|
||||
info.primitive_restart = TRUE;
|
||||
info.restart_index = strip_cut_index;
|
||||
|
||||
pipe->draw_vbo(pipe, &info);
|
||||
}
|
||||
|
|
@ -817,8 +818,7 @@ struct GalliumD3D10Device : public GalliumD3D10ScreenImpl<threadsafe>
|
|||
info.max_index = ~0;
|
||||
info.start_instance = start_instance_location;
|
||||
info.instance_count = instance_count;
|
||||
info.primitive_restart = TRUE;
|
||||
info.restart_index = strip_cut_index;
|
||||
info.primitive_restart = FALSE;
|
||||
|
||||
pipe->draw_vbo(pipe, &info);
|
||||
}
|
||||
|
|
@ -862,7 +862,8 @@ struct GalliumD3D10Device : public GalliumD3D10ScreenImpl<threadsafe>
|
|||
info.max_index = ~0;
|
||||
info.start_instance = 0;
|
||||
info.instance_count = data.instance_count;
|
||||
info.primitive_restart = FALSE;
|
||||
info.primitive_restart = TRUE;
|
||||
info.restart_index = strip_cut_index;
|
||||
|
||||
pipe->draw_vbo(pipe, &info);
|
||||
}
|
||||
|
|
@ -893,8 +894,7 @@ struct GalliumD3D10Device : public GalliumD3D10ScreenImpl<threadsafe>
|
|||
info.max_index = ~0;
|
||||
info.start_instance = 0;
|
||||
info.instance_count = data.instance_count;
|
||||
info.primitive_restart = TRUE;
|
||||
info.restart_index = strip_cut_index;
|
||||
info.primitive_restart = FALSE;
|
||||
|
||||
pipe->draw_vbo(pipe, &info);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue