GPU/HW: Fix incorrect range for shader compiling progress

This commit is contained in:
Connor McLaughlin 2021-06-25 13:20:36 +10:00
parent 6f5d15d2aa
commit f7587eaeac
3 changed files with 2 additions and 6 deletions

View File

@ -655,8 +655,6 @@ bool GPU_HW_D3D11::CompileShaders()
} }
} }
UPDATE_PROGRESS();
if (m_downsample_mode == GPUDownsampleMode::Adaptive) if (m_downsample_mode == GPUDownsampleMode::Adaptive)
{ {
m_downsample_first_pass_pixel_shader = m_downsample_first_pass_pixel_shader =

View File

@ -518,7 +518,7 @@ bool GPU_HW_OpenGL::CompilePrograms()
m_pgxp_depth_buffer, m_supports_dual_source_blend); m_pgxp_depth_buffer, m_supports_dual_source_blend);
Common::Timer compile_time; Common::Timer compile_time;
const int progress_total = (4 * 9 * 2 * 2) + (2 * 3) + 6; const int progress_total = (4 * 9 * 2 * 2) + (2 * 3) + 1 + 1 + 1 + 1 + 1 + 1;
int progress_value = 0; int progress_value = 0;
#define UPDATE_PROGRESS() \ #define UPDATE_PROGRESS() \
do \ do \

View File

@ -840,7 +840,7 @@ bool GPU_HW_Vulkan::CompilePipelines()
m_pgxp_depth_buffer, m_supports_dual_source_blend); m_pgxp_depth_buffer, m_supports_dual_source_blend);
Common::Timer compile_time; Common::Timer compile_time;
const int progress_total = 2 + (4 * 9 * 2 * 2) + (2 * 4 * 5 * 9 * 2 * 2) + 1 + 2 + 2 + 2 + 2 + (2 * 3) + 1; const int progress_total = 2 + (4 * 9 * 2 * 2) + (3 * 4 * 5 * 9 * 2 * 2) + 1 + 2 + 2 + 2 + 1 + 1 + (2 * 3) + 1;
int progress_value = 0; int progress_value = 0;
#define UPDATE_PROGRESS() \ #define UPDATE_PROGRESS() \
do \ do \
@ -1176,8 +1176,6 @@ bool GPU_HW_Vulkan::CompilePipelines()
} }
} }
UPDATE_PROGRESS();
if (m_downsample_mode == GPUDownsampleMode::Adaptive) if (m_downsample_mode == GPUDownsampleMode::Adaptive)
{ {
gpbuilder.Clear(); gpbuilder.Clear();