2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01: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: