RESOLVED DUPLICATE of bug 220896 Bug 233817
ETC1S compressed textures don't have alpha channel information
https://bugs.webkit.org/show_bug.cgi?id=233817
Summary ETC1S compressed textures don't have alpha channel information
Felix Herbst
Reported 2021-12-03 08:57:59 PST
Created attachment 445862 [details] Test file that exhibits the broken behaviour It seems that when compressing textures with e.g. toktx to etc1s and loading those, the resulting GPU texture doesn't have alpha information on Safari 15 (works in 14, works in other browsers). https://glitch.com/edit/#!/sponge-lemon-vulture See https://github.com/google/model-viewer/issues/3024 for screenshots of the issue.
Attachments
Test file that exhibits the broken behaviour (396.19 KB, application/octet-stream)
2021-12-03 08:57 PST, Felix Herbst
no flags
Don McCurdy
Comment 1 2021-12-03 12:18:28 PST
This issue isn't a WebKit bug technically, although certain updates to WebKit would dramatically improve the situation. Basis Universal ETC1S is a transmission format, and must be transcoded to something GPU-compatible on the client. In this case three.js detects that the device doesn't support ETC2 (has alpha) and so it transcodes to ETC1 (no alpha). ETC1/2 are more efficient and direct as a transcode target for ETC1S than alternatives, but lack of alpha is obviously a problem in this case. On the three.js side we should probably choose DXT as the transcode target instead, or decode to uncompressed RGBA. That said – it would be really excellent to see Safari support the better GPU compressed texture formats that the M1 chip is capable of using! Some references: - https://github.com/KhronosGroup/3D-Formats-Guidelines/issues/17 - https://github.com/KhronosGroup/3D-Formats-Guidelines/blob/main/KTXDeveloperGuideWebGL.md#platform-support-table
Kenneth Russell
Comment 2 2021-12-03 12:47:58 PST
Can you please
Kenneth Russell
Comment 3 2021-12-03 12:51:37 PST
(oops, didn't mean to publish that incomplete comment) Could you please explain what compressed texture formats seem to be missing support in Safari? To the best of my recollection, during the ANGLE port and WebGL 2.0 upgrade, we exposed all texture formats. On what hardware is this happening? What is the destination compressed texture format used during transcoding, and what's the desired destination format? On macOS 11.6.1 (I haven't taken the macOS 12 upgrade yet), Chrome, Safari, and Safari Technology Preview render: https://glitch.com/edit/#!/sponge-lemon-vulture identically. There's no issue with the transparency of the hexagonal geometry.
Kenneth Russell
Comment 4 2021-12-03 12:52:21 PST
Also: tested on dual-GPU 2017 MacBook Pro, dual Intel HD 630 / AMD Radeon Pro 560 GPUs.
Don McCurdy
Comment 5 2021-12-03 13:09:07 PST
Testing on: - Safari and Safari Technical Preview - macOS Monterey 12.0.1 - Apple M1 Pro chip If you visit this demo and set a breakpoint on line 70 (`animate()`) then run ... ``` console.log( loader.workerConfig ); ``` ... I see the following: ``` astcSupported: false bptcSupported: false dxtSupported: true etc1Supported: true etc2Supported: false pvrtcSupported: false ``` So I only seem to have a choice of ETC1 and DXT on this device. In Firefox and Chrome on the same device (without flags), only DXT is supported. Technically that leads to a better result here, because it forces three.js to choose DXT instead of ETC1 as the transcode target. Full list of extensions on this device, from the WebGL 2 tab on webglreport.com: ``` OES_texture_float_linear EXT_texture_filter_anisotropic WEBGL_compressed_texture_etc1 WEBGL_compressed_texture_s3tc WEBGL_compressed_texture_s3tc_srgb WEBGL_lose_context WEBGL_debug_shaders WEBGL_debug_renderer_info EXT_color_buffer_float EXT_color_buffer_half_float EXT_float_blend KHR_parallel_shader_compile WEBGL_multi_draw ```
Don McCurdy
Comment 6 2021-12-03 13:11:32 PST
More specifically: Safari Technical Preview, Release 135 (Safari 15.4, WebKit 17613.1.7.3).
Kenneth Russell
Comment 7 2021-12-03 13:13:56 PST
Kyle or Kimmo, do either of you have this hardware and can you figure out why ANGLE isn't advertising the GL_ANGLE_compressed_texture_etc extension?
Kenneth Russell
Comment 8 2021-12-03 13:36:10 PST
Good news - after discussion on Slack with Alexey Knyazev (who wrote this portion of the code) and Kyle, it seems clear that the coming ANGLE roll in Bug 220896 will fix this. This is working correctly in Chromium on top of ANGLE's Metal backend. Blocking on the other bug.
Alexey Knyazev
Comment 9 2021-12-03 13:47:25 PST
Chrome with ANGLE/Metal enabled via flags does support all compressed texture formats on M1 (confirmed by webglreport.com): EXT_texture_compression_bptc EXT_texture_compression_rgtc WEBGL_compressed_texture_astc WEBGL_compressed_texture_etc WEBGL_compressed_texture_etc1 WEBGL_compressed_texture_pvrtc WEBGL_compressed_texture_s3tc WEBGL_compressed_texture_s3tc_srgb
Don McCurdy
Comment 10 2021-12-04 12:14:17 PST
That's great news, thank you!
Radar WebKit Bug Importer
Comment 11 2021-12-10 08:58:20 PST
Kenneth Russell
Comment 12 2021-12-15 11:39:48 PST
Considering this a dupe of Bug 220896. Should be fixed in the next Safari release that contains that roll. Please test on Safari Technology Preview on an ongoing basis and reopen this bug if it doesn't appear fixed in the next couple of weeks. *** This bug has been marked as a duplicate of bug 220896 ***
Note You need to log in before you can comment on or make changes to this bug.