video_core: Disable disk shader cache when GL_ARB_get_program_binary is unsupported (#5785)
This commit is contained in:
parent
7bf0f10305
commit
d4e85e2bb5
|
@ -365,10 +365,6 @@ void ShaderDiskCache::SaveDecompiled(u64 unique_identifier,
|
||||||
void ShaderDiskCache::SaveDump(u64 unique_identifier, GLuint program) {
|
void ShaderDiskCache::SaveDump(u64 unique_identifier, GLuint program) {
|
||||||
if (!IsUsable())
|
if (!IsUsable())
|
||||||
return;
|
return;
|
||||||
if (!GLAD_GL_ARB_get_program_binary) {
|
|
||||||
LOG_WARNING(Render_OpenGL, "ARB_get_program_binary is not supported. Problems may occur if "
|
|
||||||
"use_disk_shader_cache is ON.");
|
|
||||||
}
|
|
||||||
|
|
||||||
GLint binary_length{};
|
GLint binary_length{};
|
||||||
glGetProgramiv(program, GL_PROGRAM_BINARY_LENGTH, &binary_length);
|
glGetProgramiv(program, GL_PROGRAM_BINARY_LENGTH, &binary_length);
|
||||||
|
|
|
@ -442,6 +442,12 @@ void ShaderProgramManager::LoadDiskCache(const std::atomic_bool& stop_loading,
|
||||||
"Cannot load disk cache as separate shader programs are unsupported!");
|
"Cannot load disk cache as separate shader programs are unsupported!");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (!GLAD_GL_ARB_get_program_binary) {
|
||||||
|
LOG_ERROR(Render_OpenGL,
|
||||||
|
"Cannot load disk cache as ARB_get_program_binary is not supported!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
auto& disk_cache = impl->disk_cache;
|
auto& disk_cache = impl->disk_cache;
|
||||||
const auto transferable = disk_cache.LoadTransferable();
|
const auto transferable = disk_cache.LoadTransferable();
|
||||||
if (!transferable) {
|
if (!transferable) {
|
||||||
|
|
Reference in New Issue