0
0
mirror of https://git.tardis.systems/mirrors/yuzu.git synced 2025-01-03 03:54:45 +00:00

glasm: Fix tessellation headers

This commit is contained in:
ReinUsesLisp 2021-05-20 21:39:45 -03:00 committed by ameerj
parent 9ec2303ad6
commit 48d4e26326

View File

@ -307,9 +307,9 @@ std::string_view StageHeader(Stage stage) {
case Stage::VertexB:
return "!!NVvp5.0\n";
case Stage::TessellationControl:
return "!!NVtcs5.0\n";
return "!!NVtcp5.0\n";
case Stage::TessellationEval:
return "!!NVtes5.0\n";
return "!!NVtep5.0\n";
case Stage::Geometry:
return "!!NVgp5.0\n";
case Stage::Fragment: