[GPU] Fix a typo in the tessellation patch types comment

This commit is contained in:
Triang3l 2020-04-06 00:08:05 +03:00
parent 4b9f63cdf1
commit c4f47039eb
1 changed files with 3 additions and 3 deletions

View File

@ -53,9 +53,9 @@ enum class PrimitiveType : uint32_t {
k2DTriStrip = 0x16,
// Tessellation patches (D3DTPT) when VGT_OUTPUT_PATH_CNTL::path_select is
// xenos::VGTOutputPath::tess_mode. Seen being used with adaptive tessellation
// in Banjo-Kazooie: Nuts & Bolts, Halo 3 and Viva Pinata; discrete/continuous
// uses kTriangleList in Call of Duty 3 and Viva Pinata.
// xenos::VGTOutputPath::kTessellationEnable. Seen being used with adaptive
// tessellation in Banjo-Kazooie: Nuts & Bolts, Halo 3 and Viva Pinata;
// discrete/continuous uses kTriangleList in Call of Duty 3 and Viva Pinata.
kLinePatch = 0x10,
kTrianglePatch = 0x11,
kQuadPatch = 0x12,