diff options
| author | bunnei <bunneidev@gmail.com> | 2018-11-07 00:11:49 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-07 00:11:49 -0800 |
| commit | 74bce4d68f72c64d73dd05d9c30e0e3010f69759 (patch) | |
| tree | 00caaaad110530578ef271ee5d24f8dbac8ad085 /src/video_core/renderer_opengl/gl_rasterizer.h | |
| parent | e5a0a235538a12180d2c66c09aaddc0bcb76c8ea (diff) | |
| parent | 19038db4898bc059fe78d21ba9a400b5277dd2dd (diff) | |
Merge pull request #1635 from Tinob/master
Implement multi-target viewports and blending
Diffstat (limited to 'src/video_core/renderer_opengl/gl_rasterizer.h')
| -rw-r--r-- | src/video_core/renderer_opengl/gl_rasterizer.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/renderer_opengl/gl_rasterizer.h b/src/video_core/renderer_opengl/gl_rasterizer.h index 47097c569..60e783803 100644 --- a/src/video_core/renderer_opengl/gl_rasterizer.h +++ b/src/video_core/renderer_opengl/gl_rasterizer.h @@ -133,7 +133,7 @@ private: u32 SetupTextures(Tegra::Engines::Maxwell3D::Regs::ShaderStage stage, Shader& shader, GLenum primitive_mode, u32 current_unit); - /// Syncs the viewport to match the guest state + /// Syncs the viewport and depth range to match the guest state void SyncViewport(); /// Syncs the clip enabled status to match the guest state @@ -148,9 +148,6 @@ private: /// Syncs the primitve restart to match the guest state void SyncPrimitiveRestart(); - /// Syncs the depth range to match the guest state - void SyncDepthRange(); - /// Syncs the depth test state to match the guest state void SyncDepthTestState(); @@ -172,6 +169,9 @@ private: /// Syncs the point state to match the guest state void SyncPointState(); + /// Syncs Color Mask + void SyncColorMask(); + /// Check asserts for alpha testing. void CheckAlphaTests(); |
