Merge pull request #5965 from Morph1984/shader-count
gl_disk_shader_cache: Log total shader entries count on game load
This commit is contained in:
commit
2807a98168
|
@ -335,6 +335,10 @@ void ShaderCacheOpenGL::LoadDiskCache(u64 title_id, const std::atomic_bool& stop
|
||||||
const VideoCore::DiskResourceLoadCallback& callback) {
|
const VideoCore::DiskResourceLoadCallback& callback) {
|
||||||
disk_cache.BindTitleID(title_id);
|
disk_cache.BindTitleID(title_id);
|
||||||
const std::optional transferable = disk_cache.LoadTransferable();
|
const std::optional transferable = disk_cache.LoadTransferable();
|
||||||
|
|
||||||
|
LOG_INFO(Render_OpenGL, "Total Shader Count: {}",
|
||||||
|
transferable.has_value() ? transferable->size() : 0);
|
||||||
|
|
||||||
if (!transferable) {
|
if (!transferable) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue