diff options
| author | Stenzek <stenzek@gmail.com> | 2018-02-26 21:09:33 +1000 |
|---|---|---|
| committer | Stenzek <stenzek@gmail.com> | 2018-03-10 15:56:40 +1000 |
| commit | 41296db0835b210c988d540677dbdfa0acc553c9 (patch) | |
| tree | ae128121884f00efab5192df015239f4fa75398f /Source/Core/VideoCommon/BPFunctions.cpp | |
| parent | fc1fe0672bd4179a9af3ebc55b180e19cefcd65a (diff) | |
Renderer: Remove now-redundant Set{Rasterization,Depth,Blending}State
Diffstat (limited to 'Source/Core/VideoCommon/BPFunctions.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/BPFunctions.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Source/Core/VideoCommon/BPFunctions.cpp b/Source/Core/VideoCommon/BPFunctions.cpp index 1afcb35040..61e4c54b27 100644 --- a/Source/Core/VideoCommon/BPFunctions.cpp +++ b/Source/Core/VideoCommon/BPFunctions.cpp @@ -28,9 +28,6 @@ void FlushPipeline() void SetGenerationMode() { - RasterizationState state = {}; - state.Generate(bpmem, g_vertex_manager->GetCurrentPrimitiveType()); - g_renderer->SetRasterizationState(state); g_vertex_manager->SetRasterizationStateChanged(); } @@ -130,17 +127,11 @@ void SetViewport() void SetDepthMode() { - DepthState state = {}; - state.Generate(bpmem); - g_renderer->SetDepthState(state); g_vertex_manager->SetDepthStateChanged(); } void SetBlendMode() { - BlendingState state = {}; - state.Generate(bpmem); - g_renderer->SetBlendingState(state); g_vertex_manager->SetBlendingStateChanged(); } |
