summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Vulkan/FramebufferManager.cpp
diff options
context:
space:
mode:
authorStenzek <stenzek@gmail.com>2017-09-09 00:10:40 +1000
committerStenzek <stenzek@gmail.com>2017-09-11 20:01:52 +1000
commit340aabbb06404481b8a496f506ebc9bae75fad6c (patch)
treebec229041a0bf943001d38f1ddbb6b6bde8ca7b0 /Source/Core/VideoBackends/Vulkan/FramebufferManager.cpp
parentb7a099814a6cfcd1db4d7091e01bf4538be67e5e (diff)
VideoCommon: Add helpers for generating common render states
Diffstat (limited to 'Source/Core/VideoBackends/Vulkan/FramebufferManager.cpp')
-rw-r--r--Source/Core/VideoBackends/Vulkan/FramebufferManager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/VideoBackends/Vulkan/FramebufferManager.cpp b/Source/Core/VideoBackends/Vulkan/FramebufferManager.cpp
index 7ab7c6ecd3..53351e0325 100644
--- a/Source/Core/VideoBackends/Vulkan/FramebufferManager.cpp
+++ b/Source/Core/VideoBackends/Vulkan/FramebufferManager.cpp
@@ -1192,11 +1192,11 @@ void FramebufferManager::DrawPokeVertices(const EFBPokeVertex* vertices, size_t
pipeline_info.gs = (GetEFBLayers() > 1) ? m_poke_geometry_shader : VK_NULL_HANDLE;
pipeline_info.ps = m_poke_fragment_shader;
pipeline_info.render_pass = m_efb_load_render_pass;
- pipeline_info.rasterization_state.hex = Util::GetNoCullRasterizationState().hex;
+ pipeline_info.rasterization_state.hex = RenderState::GetNoCullRasterizationState().hex;
pipeline_info.rasterization_state.primitive = m_poke_primitive;
pipeline_info.multisampling_state.hex = GetEFBMultisamplingState().hex;
- pipeline_info.depth_state.hex = Util::GetNoDepthTestingDepthStencilState().hex;
- pipeline_info.blend_state.hex = Util::GetNoBlendingBlendState().hex;
+ pipeline_info.depth_state.hex = RenderState::GetNoDepthTestingDepthStencilState().hex;
+ pipeline_info.blend_state.hex = RenderState::GetNoBlendingBlendState().hex;
pipeline_info.blend_state.colorupdate = write_color;
pipeline_info.blend_state.alphaupdate = write_color;
if (write_depth)