Browse Source
Merge pull request #7014 from Morph1984/log-pipeline-count
renderers: Log total pipeline count
pull/15/merge
Ameer J
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
4 additions and
0 deletions
-
src/video_core/renderer_opengl/gl_shader_cache.cpp
-
src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
|
|
|
@ -293,6 +293,8 @@ void ShaderCache::LoadDiskResources(u64 title_id, std::stop_token stop_loading, |
|
|
|
}}; |
|
|
|
LoadPipelines(stop_loading, shader_cache_filename, CACHE_VERSION, load_compute, load_graphics); |
|
|
|
|
|
|
|
LOG_INFO(Render_OpenGL, "Total Pipeline Count: {}", state.total); |
|
|
|
|
|
|
|
std::unique_lock lock{state.mutex}; |
|
|
|
callback(VideoCore::LoadCallbackStage::Build, 0, state.total); |
|
|
|
state.has_loaded = true; |
|
|
|
|
|
|
|
@ -447,6 +447,8 @@ void PipelineCache::LoadDiskResources(u64 title_id, std::stop_token stop_loading |
|
|
|
VideoCommon::LoadPipelines(stop_loading, pipeline_cache_filename, CACHE_VERSION, load_compute, |
|
|
|
load_graphics); |
|
|
|
|
|
|
|
LOG_INFO(Render_Vulkan, "Total Pipeline Count: {}", state.total); |
|
|
|
|
|
|
|
std::unique_lock lock{state.mutex}; |
|
|
|
callback(VideoCore::LoadCallbackStage::Build, 0, state.total); |
|
|
|
state.has_loaded = true; |
|
|
|
|