summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_graphics_pipeline.h
diff options
context:
space:
mode:
authorFernando S <fsahmkow27@gmail.com>2022-10-09 07:04:03 +0200
committerGitHub <noreply@github.com>2022-10-09 07:04:03 +0200
commit55e6d0dae003378ca8ed9a10b6fbb8626a1fd25f (patch)
treef05d721b40595c3caa9543af50015041a66c2bdf /src/video_core/renderer_opengl/gl_graphics_pipeline.h
parentMerge pull request #9033 from liamwhite/stub-fsp (diff)
parentUpdate 3D regs (diff)
downloadyuzu-55e6d0dae003378ca8ed9a10b6fbb8626a1fd25f.tar
yuzu-55e6d0dae003378ca8ed9a10b6fbb8626a1fd25f.tar.gz
yuzu-55e6d0dae003378ca8ed9a10b6fbb8626a1fd25f.tar.bz2
yuzu-55e6d0dae003378ca8ed9a10b6fbb8626a1fd25f.tar.lz
yuzu-55e6d0dae003378ca8ed9a10b6fbb8626a1fd25f.tar.xz
yuzu-55e6d0dae003378ca8ed9a10b6fbb8626a1fd25f.tar.zst
yuzu-55e6d0dae003378ca8ed9a10b6fbb8626a1fd25f.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/renderer_opengl/gl_graphics_pipeline.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/renderer_opengl/gl_graphics_pipeline.h b/src/video_core/renderer_opengl/gl_graphics_pipeline.h
index a0f0e63cb..ea53ddb46 100644
--- a/src/video_core/renderer_opengl/gl_graphics_pipeline.h
+++ b/src/video_core/renderer_opengl/gl_graphics_pipeline.h
@@ -37,8 +37,8 @@ struct GraphicsPipelineKey {
BitField<0, 1, u32> xfb_enabled;
BitField<1, 1, u32> early_z;
BitField<2, 4, Maxwell::PrimitiveTopology> gs_input_topology;
- BitField<6, 2, Maxwell::TessellationPrimitive> tessellation_primitive;
- BitField<8, 2, Maxwell::TessellationSpacing> tessellation_spacing;
+ BitField<6, 2, Maxwell::Tessellation::DomainType> tessellation_primitive;
+ BitField<8, 2, Maxwell::Tessellation::Spacing> tessellation_spacing;
BitField<10, 1, u32> tessellation_clockwise;
};
std::array<u32, 3> padding;