swr: [rasterizer core] Split all RECT_LIST draws into 1 RECT per draw

Needed until proper RECT_LIST PrimAssembly code is written.
This commit is contained in:
Tim Rowley
2016-02-17 17:55:59 -06:00
parent 3a25185990
commit 45a4afa634
@@ -1005,6 +1005,11 @@ uint32_t MaxVertsPerDraw(
}
break;
// The Primitive Assembly code can only handle 1 RECT at a time.
case TOP_RECT_LIST:
vertsPerDraw = 3;
break;
default:
// We are not splitting up draws for other topologies.
break;