diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-02-29 08:03:22 +0100 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-03-09 22:40:07 +0100 |
commit | 66a8a3e88719aaa65a96dd0289e1fb151d199d9b (patch) | |
tree | 63af86085bf2a0b98023aae5ba3982fa82998f99 /src/video_core/shader/registry.cpp | |
parent | shader/registry: Store graphics and compute metadata (diff) | |
download | yuzu-66a8a3e88719aaa65a96dd0289e1fb151d199d9b.tar yuzu-66a8a3e88719aaa65a96dd0289e1fb151d199d9b.tar.gz yuzu-66a8a3e88719aaa65a96dd0289e1fb151d199d9b.tar.bz2 yuzu-66a8a3e88719aaa65a96dd0289e1fb151d199d9b.tar.lz yuzu-66a8a3e88719aaa65a96dd0289e1fb151d199d9b.tar.xz yuzu-66a8a3e88719aaa65a96dd0289e1fb151d199d9b.tar.zst yuzu-66a8a3e88719aaa65a96dd0289e1fb151d199d9b.zip |
Diffstat (limited to 'src/video_core/shader/registry.cpp')
-rw-r--r-- | src/video_core/shader/registry.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/shader/registry.cpp b/src/video_core/shader/registry.cpp index dc2d3dce3..90dfab293 100644 --- a/src/video_core/shader/registry.cpp +++ b/src/video_core/shader/registry.cpp @@ -27,6 +27,9 @@ GraphicsInfo MakeGraphicsInfo(ShaderType shader_stage, ConstBufferEngineInterfac GraphicsInfo info; info.primitive_topology = graphics.regs.draw.topology; + info.tessellation_primitive = graphics.regs.tess_mode.prim; + info.tessellation_spacing = graphics.regs.tess_mode.spacing; + info.tessellation_clockwise = graphics.regs.tess_mode.cw; return info; } |