Fix T84329: Crash when loading the blender with deprecated graphics driver
Add the driver `4.5.13467` related to `Radeon R5 Graphics` to the workaround list.
This commit is contained in:
@@ -244,15 +244,16 @@ static void detect_workarounds()
|
|||||||
if (!GLEW_VERSION_4_0) {
|
if (!GLEW_VERSION_4_0) {
|
||||||
GLContext::base_instance_support = false;
|
GLContext::base_instance_support = false;
|
||||||
}
|
}
|
||||||
|
if (GPU_type_matches(GPU_DEVICE_ATI, GPU_OS_WIN, GPU_DRIVER_OFFICIAL) &&
|
||||||
|
(strstr(version, "4.5.13399") || strstr(version, "4.5.13417") ||
|
||||||
|
strstr(version, "4.5.13422") || strstr(version, "4.5.13467"))) {
|
||||||
/* The renderers include:
|
/* The renderers include:
|
||||||
* Mobility Radeon HD 5000;
|
* Radeon HD 5000;
|
||||||
* Radeon HD 7500M;
|
* Radeon HD 7500M;
|
||||||
* Radeon HD 7570M;
|
* Radeon HD 7570M;
|
||||||
* Radeon HD 7600M;
|
* Radeon HD 7600M;
|
||||||
* And many others... */
|
* Radeon R5 Graphics;
|
||||||
if (GPU_type_matches(GPU_DEVICE_ATI, GPU_OS_WIN, GPU_DRIVER_OFFICIAL) &&
|
* And others... */
|
||||||
(strstr(version, "4.5.13399") || strstr(version, "4.5.13417") ||
|
|
||||||
strstr(version, "4.5.13422"))) {
|
|
||||||
GLContext::unused_fb_slot_workaround = true;
|
GLContext::unused_fb_slot_workaround = true;
|
||||||
GCaps.mip_render_workaround = true;
|
GCaps.mip_render_workaround = true;
|
||||||
GCaps.shader_image_load_store_support = false;
|
GCaps.shader_image_load_store_support = false;
|
||||||
|
Reference in New Issue
Block a user