SSIA
Created attachment 413497 [details] Depends on #218588
Comment on attachment 413497 [details] Depends on #218588 View in context: https://bugs.webkit.org/attachment.cgi?id=413497&action=review > Source/WebCore/platform/graphics/displaylists/DisplayListRecorder.h:160 > + appendWithoutUpdatingExtents<T>(std::forward<Args>(args)...); I think you could do this with `if constexpr` instead of two overloads
Comment on attachment 413497 [details] Depends on #218588 I learned from Devin and Andy over Slack that simply wrapping the extent logic in `if constexpr (T::isDrawingItem) { ... }` works here too — I'm going to change it to that instead, since it's a bit cleaner than using std::enable_if.
Created attachment 413503 [details] For EWS
Committed r269556: <https://trac.webkit.org/changeset/269556> All reviewed patches have been landed. Closing bug and clearing flags on attachment 413503 [details].