WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
Bug 231468
Query EGL_BIND_TO_TEXTURE_TARGET_ANGLE to determine 2D/rectangular texture usage
https://bugs.webkit.org/show_bug.cgi?id=231468
Summary
Query EGL_BIND_TO_TEXTURE_TARGET_ANGLE to determine 2D/rectangular texture usage
Kenneth Russell
Reported
2021-10-08 18:21:12 PDT
WebKit should query EGL_BIND_TO_TEXTURE_TARGET_ANGLE via eglGetConfigAttrib in order to determine whether to bind its IOSurfaces to 2D or rectangular textures, instead of hardcoding platform knowledge in GraphicsContextGLOpenGL::drawingBufferTextureTarget, GraphicsContextGLOpenGL::drawingBufferTextureTargetQuery, createPbufferAndAttachIOSurface, and other places. This will allow ANGLE's Metal backend to drop support for binding IOSurfaces to rectangular textures. OpenGL on macOS only supported the rectangular texture path, but Metal allows IOSurfaces to be bound to ordinary 2D textures. The support for rectangular textures that was added to ANGLE's Metal backend in WebKit's fork was incomplete, and broke a lot of unit and end-to-end tests. It's been removed upstream in ANGLE. Rolling upstream ANGLE back into WebKit is predicated on removing usage of rectangular textures with the Metal backend.
Attachments
Patch
(12.72 KB, patch)
2021-10-14 13:07 PDT
,
Kyle Piddington
no flags
Details
Formatted Diff
Diff
Patch
(10.58 KB, patch)
2021-10-15 12:08 PDT
,
Kyle Piddington
no flags
Details
Formatted Diff
Diff
Patch
(10.30 KB, patch)
2021-10-18 17:11 PDT
,
Kyle Piddington
no flags
Details
Formatted Diff
Diff
Patch for landing
(10.30 KB, patch)
2021-10-19 00:09 PDT
,
Kyle Piddington
no flags
Details
Formatted Diff
Diff
Show Obsolete
(3)
View All
Add attachment
proposed patch, testcase, etc.
Kyle Piddington
Comment 1
2021-10-14 11:00:35 PDT
Taking this one into my queue :)
Kyle Piddington
Comment 2
2021-10-14 13:07:23 PDT
Created
attachment 441265
[details]
Patch
Kenneth Russell
Comment 3
2021-10-14 15:24:14 PDT
Comment on
attachment 441265
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=441265&action=review
Good work overall. Please rebase and let's see green EWS runs before approving.
> Source/WebCore/ChangeLog:6 > + Refactor GrraphicsContextGLCocoa to hold a reference to
Grr -> Gr :) But: GraphicsContextGLOpenGLCocoa Also, please indent to match.
> Source/WebCore/platform/graphics/cocoa/GraphicsContextGLOpenGLCocoa.mm:473 > + EGL_GetConfigAttrib(m_displayObj, m_configObj, EGL_BIND_TO_TEXTURE_TARGET_ANGLE, &m_drawingBufferTextureTarget);
Are we guaranteed to only call this when m_displayObj and m_configObj are valid? If there's any confusion then let's consider doing this upon display initialization and have any asserts possible about not calling this on a destroyed GraphicsContextGLOpenGL.
Kyle Piddington
Comment 4
2021-10-15 12:08:30 PDT
Created
attachment 441412
[details]
Patch
Kenneth Russell
Comment 5
2021-10-15 16:45:33 PDT
Comment on
attachment 441412
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=441412&action=review
Looks good to me. Couple of small comments about the asserts. r+
> Source/WebCore/platform/graphics/cocoa/GraphicsContextGLOpenGLCocoa.mm:471 > + ASSERT(!"Invalid enum returned from EGL_GetConfigAttrib");
This is the first I've seen this trick used to incorporate a message. Consider ASSERT_WITH_MESSAGE(false, ...).
> Source/WebCore/platform/graphics/cocoa/GraphicsContextGLOpenGLCocoa.mm:484 > + ASSERT(!"Invalid drawing target");
Same here.
> Source/WebCore/platform/graphics/cocoa/GraphicsContextGLOpenGLCocoa.mm:497 > + assert(!"Invalid drawing target");
Please use WebKit's ASSERT macro.
Radar WebKit Bug Importer
Comment 6
2021-10-15 18:22:15 PDT
<
rdar://problem/84324684
>
Kyle Piddington
Comment 7
2021-10-18 17:11:07 PDT
Created
attachment 441660
[details]
Patch
Kenneth Russell
Comment 8
2021-10-18 17:19:36 PDT
Comment on
attachment 441660
[details]
Patch Still looks good. r+ again
Kyle Piddington
Comment 9
2021-10-19 00:09:02 PDT
Created
attachment 441693
[details]
Patch for landing
EWS
Comment 10
2021-10-19 01:06:51 PDT
Committed
r284438
(
243200@main
): <
https://commits.webkit.org/243200@main
> All reviewed patches have been landed. Closing bug and clearing flags on
attachment 441693
[details]
.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug