glasm: Fix tessellation headers

This commit is contained in:
ReinUsesLisp 2021-05-20 21:39:45 -03:00 committed by ameerj
parent e8289a4e5f
commit 53705226c6

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: