mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-08 07:59:59 +00:00
glasm: Fix tessellation headers
This commit is contained in:
parent
9ec2303ad6
commit
48d4e26326
1 changed files with 2 additions and 2 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue