From: Christoph Bumiller Date: Thu, 20 Oct 2011 21:36:15 +0000 (+0200) Subject: d3d1x: set primitive restart in the correct draw calls X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=27b0c9d51300712f3b5d4af6cc20d53fcf9c8c46;p=mesa.git d3d1x: set primitive restart in the correct draw calls --- diff --git a/src/gallium/state_trackers/d3d1x/gd3d11/d3d11_context.h b/src/gallium/state_trackers/d3d1x/gd3d11/d3d11_context.h index 6385fc123ca..4055c549d85 100644 --- a/src/gallium/state_trackers/d3d1x/gd3d11/d3d11_context.h +++ b/src/gallium/state_trackers/d3d1x/gd3d11/d3d11_context.h @@ -742,7 +742,8 @@ struct GalliumD3D10Device : public GalliumD3D10ScreenImpl 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 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 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 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 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 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); }