RESOLVED FIXED 244824
TextureMapper: rendering issue of a 3D transformed element at infinity with a parent with opacity<1
https://bugs.webkit.org/show_bug.cgi?id=244824
Summary TextureMapper: rendering issue of a 3D transformed element at infinity with a...
Fujii Hironori
Reported 2022-09-05 21:01:57 PDT
Created attachment 462155 [details] test case TextureMapper: rendering issue of a 3D transformed element with negative w and a parent with opacity
Attachments
test case (782 bytes, text/html)
2022-09-05 21:01 PDT, Fujii Hironori
no flags
test case 2 (1.18 KB, text/html)
2022-09-05 22:24 PDT, Fujii Hironori
no flags
test case 3 (676 bytes, text/html)
2022-09-05 22:57 PDT, Fujii Hironori
no flags
WIP patch (7.55 KB, patch)
2022-09-07 14:20 PDT, Fujii Hironori
ews-feeder: commit-queue-
test case 4 (598 bytes, text/html)
2022-09-13 23:21 PDT, Fujii Hironori
no flags
WIP patch (7.44 KB, patch)
2022-09-14 19:28 PDT, Fujii Hironori
no flags
WIP patch (10.23 KB, patch)
2022-09-15 00:36 PDT, Fujii Hironori
ews-feeder: commit-queue-
WIP patch (10.39 KB, patch)
2022-09-19 23:26 PDT, Fujii Hironori
no flags
Patch (11.36 KB, patch)
2022-09-26 18:00 PDT, Fujii Hironori
no flags
Patch (12.43 KB, patch)
2022-09-26 20:36 PDT, Fujii Hironori
no flags
Fujii Hironori
Comment 1 2022-09-05 22:24:27 PDT
Created attachment 462157 [details] test case 2
Fujii Hironori
Comment 2 2022-09-05 22:57:15 PDT
Created attachment 462159 [details] test case 3
Fujii Hironori
Comment 3 2022-09-07 14:20:34 PDT
Created attachment 462188 [details] WIP patch
Radar WebKit Bug Importer
Comment 4 2022-09-12 21:02:19 PDT
Fujii Hironori
Comment 5 2022-09-13 23:21:25 PDT
Created attachment 462329 [details] test case 4
Fujii Hironori
Comment 6 2022-09-14 19:28:39 PDT
Created attachment 462343 [details] WIP patch
Fujii Hironori
Comment 7 2022-09-15 00:36:12 PDT
Created attachment 462351 [details] WIP patch
Fujii Hironori
Comment 8 2022-09-19 23:26:43 PDT
Created attachment 462468 [details] WIP patch
Fujii Hironori
Comment 9 2022-09-26 18:00:59 PDT
Fujii Hironori
Comment 10 2022-09-26 20:36:56 PDT
Don Olmstead
Comment 11 2022-09-29 13:48:16 PDT
Comment on attachment 462645 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=462645&action=review > Source/WebCore/platform/graphics/texmap/TextureMapperLayer.cpp:364 > +template<typename T> > +struct Point4D { > + T x; > + T y; > + T z; > + T w; > +}; > + > +template<typename T> > +Point4D<T> operator+(Point4D<T> s, Point4D<T> t) > +{ > + return { s.x + t.x, s.y + t.y, s.z + t.z, s.w + t.w }; > +} > + > +template<typename T> > +Point4D<T> operator-(Point4D<T> s, Point4D<T> t) > +{ > + return { s.x - t.x, s.y - t.y, s.z - t.z, s.w - t.w }; > +} > + > +template<typename T> > +Point4D<T> operator*(T s, Point4D<T> t) > +{ > + return { s * t.x, s * t.y, s * t.z, s * t.w }; > +} I'm just surprised there's nothing hanging out already that you can piggy-back on for this.
EWS
Comment 12 2022-09-29 14:22:22 PDT
Committed 255013@main (2fd3420ef281): <https://commits.webkit.org/255013@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 462645 [details].
Note You need to log in before you can comment on or make changes to this bug.