Bridge Pattern Motivation

You have a Shape hierarchy (Circle, Square, Triangle) and a Renderer hierarchy (OpenGL, Vulkan, DirectX). Without Bridge, adding a new renderer requires modifying every shape class. What does Bridge accomplish here?