<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Android 15: i.MX8MP: WebGL rendering issue in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Android-15-i-MX8MP-WebGL-rendering-issue/m-p/2207131#M242249</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/34846"&gt;@Bio_TICFSL&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;in a &lt;A href="https://community.nxp.com/t5/i-MX-Processors/imx8mp-android-WebGL-Aquarium-rendering-issue/m-p/2064430" target="_self"&gt;previous post&lt;/A&gt;, I can read about a known&amp;nbsp;&lt;SPAN&gt;WebGL rendering issue on Android 15.0.0 v1.0.0.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Is there any new release fixing this ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If yes, can you share the actual fix ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Pier&lt;/P&gt;</description>
    <pubDate>Tue, 18 Nov 2025 23:15:01 GMT</pubDate>
    <dc:creator>pierluigi_p</dc:creator>
    <dc:date>2025-11-18T23:15:01Z</dc:date>
    <item>
      <title>Android 15: i.MX8MP: WebGL rendering issue</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Android-15-i-MX8MP-WebGL-rendering-issue/m-p/2207131#M242249</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/34846"&gt;@Bio_TICFSL&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;in a &lt;A href="https://community.nxp.com/t5/i-MX-Processors/imx8mp-android-WebGL-Aquarium-rendering-issue/m-p/2064430" target="_self"&gt;previous post&lt;/A&gt;, I can read about a known&amp;nbsp;&lt;SPAN&gt;WebGL rendering issue on Android 15.0.0 v1.0.0.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Is there any new release fixing this ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If yes, can you share the actual fix ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Pier&lt;/P&gt;</description>
      <pubDate>Tue, 18 Nov 2025 23:15:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Android-15-i-MX8MP-WebGL-rendering-issue/m-p/2207131#M242249</guid>
      <dc:creator>pierluigi_p</dc:creator>
      <dc:date>2025-11-18T23:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: Android 15: i.MX8MP: WebGL rendering issue</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Android-15-i-MX8MP-WebGL-rendering-issue/m-p/2212631#M242282</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regarding the WebGL rendering issue on Android 15.0.0 v1.0.0 for i.MX8MP that you mentioned, there is currently no new release that specifically fixes this issue.&lt;BR /&gt;&lt;BR /&gt;This WebGL rendering problem appears to be related to security features in Android's WebView implementation that restrict WebGL access based on application package naming. The issue occurs because WebGL functionality is only available when application package IDs contain the word "chromium" but fails with other naming conventions.&lt;BR /&gt;&lt;BR /&gt;While we don't have a new release addressing this issue yet, the following workaround can be implemented in your application code before initializing the WebView:&lt;BR /&gt;&lt;BR /&gt;```java&lt;BR /&gt;if (Build.VERSION.SDK_INT &amp;gt;= Build.VERSION_CODES.O) {&lt;BR /&gt;WebView.setWebContentsDebuggingEnabled(true);&lt;BR /&gt;}&lt;BR /&gt;WebSettings webSettings = webView.getSettings();&lt;BR /&gt;webSettings.setJavaScriptEnabled(true);&lt;BR /&gt;webView.setWebChromeClient(new WebChromeClient());&lt;BR /&gt;webSettings.setAllowFileAccessFromFileURLs(true);&lt;BR /&gt;webSettings.setAllowUniversalAccessFromFileURLs(true);&lt;BR /&gt;// Add this line to enable WebGL for all applications&lt;BR /&gt;webSettings.setMediaPlaybackRequiresUserGesture(false);&lt;BR /&gt;```&lt;BR /&gt;&lt;BR /&gt;This configuration bypasses the package name restriction, allowing WebGL to function properly in applications with non-chromium package names.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Nov 2025 16:54:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Android-15-i-MX8MP-WebGL-rendering-issue/m-p/2212631#M242282</guid>
      <dc:creator>Bio_TICFSL</dc:creator>
      <dc:date>2025-11-19T16:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: Android 15: i.MX8MP: WebGL rendering issue</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Android-15-i-MX8MP-WebGL-rendering-issue/m-p/2212783#M242283</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/34846"&gt;@Bio_TICFSL&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Nov 2025 17:06:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Android-15-i-MX8MP-WebGL-rendering-issue/m-p/2212783#M242283</guid>
      <dc:creator>pierluigi_p</dc:creator>
      <dc:date>2025-11-19T17:06:31Z</dc:date>
    </item>
  </channel>
</rss>

