diff --git a/source/blender/blenkernel/intern/subdiv_modifier.cc b/source/blender/blenkernel/intern/subdiv_modifier.cc index 767b58c4bbd..d628a70f265 100644 --- a/source/blender/blenkernel/intern/subdiv_modifier.cc +++ b/source/blender/blenkernel/intern/subdiv_modifier.cc @@ -88,12 +88,6 @@ static bool is_subdivision_evaluation_possible_on_gpu() return false; } - /* Now that we know it is OpenGL, check for Qualcomm GPUs, - * which GPU subdiv is broken on some of (#124515) */ - if (GPU_type_matches_ex(GPU_DEVICE_QUALCOMM, GPU_OS_WIN, GPU_DRIVER_ANY, GPU_BACKEND_OPENGL)) { - return false; - } - if (GPU_max_compute_shader_storage_blocks() < MAX_GPU_SUBDIV_SSBOS) { return false; }