vulkan: Remove unneeded dirty_frame boolean.

This commit is contained in:
Vincent Lejeune 2016-03-29 01:59:54 +02:00
parent d5e44f6224
commit 38d57eb02c
2 changed files with 0 additions and 3 deletions

View File

@ -1199,6 +1199,5 @@ void VKGSRender::flip(int buffer)
vkResetDescriptorPool(*m_device, descriptor_pool, 0);
m_draw_calls = 0;
dirty_frame = true;
m_frame->flip(m_context);
}

View File

@ -61,7 +61,6 @@ private:
vk::command_pool m_command_buffer_pool;
vk::command_buffer m_command_buffer;
bool dirty_frame = true;
std::array<VkRenderPass, 120> m_render_passes;
@ -75,7 +74,6 @@ private:
std::vector<std::unique_ptr<vk::sampler> > m_sampler_to_clean;
u32 m_draw_calls = 0;
u8 m_draw_buffers_count = 0;
public: