diff options
| author | bunnei <bunneidev@gmail.com> | 2018-06-08 18:48:12 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-08 18:48:12 -0400 |
| commit | c116b220e9e9a1228ed18a8912900b4da5ba36dd (patch) | |
| tree | 7a0b9eec6e73ffb8bdf5a39a79d729534313ed4e /src/video_core/renderer_opengl/gl_rasterizer.h | |
| parent | a931cf9e8b852f28d64e964c0a7d622544197f91 (diff) | |
| parent | c011b6f67e909cffe6496bc07d3359b5b74b1d63 (diff) | |
Merge pull request #548 from Subv/blend
GPU: Fixed ghosting when drawing with blending disabled
Diffstat (limited to 'src/video_core/renderer_opengl/gl_rasterizer.h')
| -rw-r--r-- | src/video_core/renderer_opengl/gl_rasterizer.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/video_core/renderer_opengl/gl_rasterizer.h b/src/video_core/renderer_opengl/gl_rasterizer.h index d3f0558ed..b7c8cf843 100644 --- a/src/video_core/renderer_opengl/gl_rasterizer.h +++ b/src/video_core/renderer_opengl/gl_rasterizer.h @@ -121,14 +121,8 @@ private: /// Syncs the depth offset to match the guest state void SyncDepthOffset(); - /// Syncs the blend enabled status to match the guest state - void SyncBlendEnabled(); - - /// Syncs the blend functions to match the guest state - void SyncBlendFuncs(); - - /// Syncs the blend color to match the guest state - void SyncBlendColor(); + /// Syncs the blend state to match the guest state + void SyncBlendState(); bool has_ARB_buffer_storage; bool has_ARB_direct_state_access; |
