<?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>tema Re: Re:[Bug Report - IGS] -  Access violation exception (0xC0000005) en Graphics</title>
    <link>https://community.intel.com/t5/Graphics/Access-violation-when-call-SetPixelFormat/m-p/1757120#M153138</link>
    <description>&lt;OL&gt;&lt;LI&gt;Have you tested any older graphics driver versions on the same system?&lt;BR /&gt;Yes.&lt;/LI&gt;&lt;LI&gt;If so, did you perform a driver rollback, and did the issue change afterward?&lt;BR /&gt;&amp;gt; If so, did you perform a driver rollback&lt;BR /&gt;Yes.&lt;BR /&gt;I tried driver rollback.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; and did the issue change afterward?&lt;BR /&gt;No.&lt;BR /&gt;The issue occurs.&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;&lt;LI&gt;Which driver version(s) have worked properly on this system without experiencing the issue?&lt;BR /&gt;32.0.101.6130.&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;&lt;LI&gt;Have you performed a clean installation of the graphics driver using Display Driver Uninstaller (DDU)?&lt;BR /&gt;No.&lt;/LI&gt;&lt;/OL&gt;</description>
    <pubDate>Thu, 20 Aug 2026 02:11:55 GMT</pubDate>
    <dc:creator>Yuya_Fukazawa_bn7</dc:creator>
    <dc:date>2026-08-20T02:11:55Z</dc:date>
    <item>
      <title>Access violation when call SetPixelFormat</title>
      <link>https://community.intel.com/t5/Graphics/Access-violation-when-call-SetPixelFormat/m-p/1754760#M152712</link>
      <description>&lt;LI-CODE lang="cpp"&gt;static void InitPixelFormat(HDC hDC)
{
	PIXELFORMATDESCRIPTOR pixelFormatDescriptor{};
	pixelFormatDescriptor.nSize      = sizeof(PIXELFORMATDESCRIPTOR);
	pixelFormatDescriptor.nVersion   = 1;
	pixelFormatDescriptor.dwFlags    = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL | PFD_DOUBLEBUFFER;
	pixelFormatDescriptor.iPixelType = PFD_TYPE_RGBA;
	pixelFormatDescriptor.cColorBits = 24;
	pixelFormatDescriptor.iLayerType = PFD_MAIN_PLANE;

	int pixelFormat = ::ChoosePixelFormat(hDC, &amp;amp;pixelFormatDescriptor);
	ThrowIfFailed(pixelFormat != 0);

	BOOL result = ::SetPixelFormat(hDC, pixelFormat, &amp;amp;pixelFormatDescriptor);
	ThrowIfFailed(result != FALSE);
}

static void CreateWindowAndSetPixelFormat()
{
	HWND hWindow = MyCreateWindow(1, 1);

	HDC hDC = ::GetDC(hWindow);
	ThrowIfFailed(hDC != NULL);

	InitPixelFormat(hDC);

	::ReleaseDC    (hWindow, hDC);
	::DestroyWindow(hWindow);
}

int main(void)
{
	std::thread thread(CreateWindowAndSetPixelFormat);
	thread.join();

	CreateWindowAndSetPixelFormat();    // 0xC0000005 (Access violation) in igxelpicd64.dll when call SetPixelFormat

	return 0;
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When call SetPixelFormat after the thread that called SetPixelFormat has terminated,&lt;BR /&gt;an exception (0xC0000005, Access violation) occurs in igxelpicd64.dll.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Isn't this a driver bug?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I have attached some files.&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;SSUScanInfo.txt .. Intel System Support Utility output.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;SetPixelFormatTest .. Visual Studio Solution (Reproduction environment)&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Fri, 24 Jul 2026 03:07:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Access-violation-when-call-SetPixelFormat/m-p/1754760#M152712</guid>
      <dc:creator>Yuya_Fukazawa_bn7</dc:creator>
      <dc:date>2026-07-24T03:07:45Z</dc:date>
    </item>
    <item>
      <title>Re:[Bug Report - IGS] -  Access violation exception (0xC0000005)</title>
      <link>https://community.intel.com/t5/Graphics/Access-violation-when-call-SetPixelFormat/m-p/1755760#M152816</link>
      <description>&lt;P&gt;Hello 祐哉 深澤,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Greetings from Intel Customer Support.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thank you for providing the detailed bug report, reproduction steps, and attached files. We appreciate the effort you have taken to investigate and document the issue.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;To further analyze the reported &lt;STRONG&gt;0xC0000005 Access Violation exception in igxelpicd64.dll when calling SetPixelFormat&lt;/STRONG&gt;, we would appreciate the following additional information:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Issue Reproduction Details &lt;/STRONG&gt;Does the issue occur consistently every time the provided sample application is executed?&lt;/LI&gt;&lt;LI&gt;Does the issue occur only when using multiple threads, or can it also be reproduced in a single-threaded application?&lt;/LI&gt;&lt;LI&gt;Does the issue occur with a clean project created from scratch, or only with the provided reproduction sample?&lt;/LI&gt;&lt;LI&gt;Are there any specific OpenGL versions or configurations required to reproduce the issue?&lt;/LI&gt;&lt;LI&gt;Does the issue occur with the latest Intel graphics driver available?&lt;/LI&gt;&lt;LI&gt;Have you tested with a previous driver version, and if so, does the behavior change?&lt;/LI&gt;&lt;LI&gt;Does the issue occur on other systems with the same Intel graphics hardware?&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Once we receive the requested details, we will continue investigating the behavior and determine the next steps.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thank you for your cooperation and support. We look forward to your response.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Jennifer B.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Intel Customer Support&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Aug 2026 23:46:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Access-violation-when-call-SetPixelFormat/m-p/1755760#M152816</guid>
      <dc:creator>Bailio_Intel</dc:creator>
      <dc:date>2026-08-05T23:46:04Z</dc:date>
    </item>
    <item>
      <title>Re: Re:[Bug Report - IGS] -  Access violation exception (0xC0000005)</title>
      <link>https://community.intel.com/t5/Graphics/Access-violation-when-call-SetPixelFormat/m-p/1755811#M152848</link>
      <description>&lt;UL&gt;&lt;LI&gt;Issue Reproduction Details Does the issue occur consistently every time the provided sample application is executed?&lt;BR /&gt;Yes.&lt;/LI&gt;&lt;LI&gt;Does the issue occur only when using multiple threads, or can it also be reproduced in a single-threaded application?&lt;BR /&gt;Only when using multiple threads.&lt;/LI&gt;&lt;LI&gt;Does the issue occur with a clean project created from scratch, or only with the provided reproduction sample?&lt;BR /&gt;The issue occur with a clean project created from scratch.&lt;BR /&gt;(The issue&amp;nbsp;originally occurred in a different application.&amp;nbsp;I created the provided reproduction sample from scratch.)&lt;/LI&gt;&lt;LI&gt;Are there any specific OpenGL versions or configurations required to reproduce the issue?&lt;BR /&gt;No.&lt;BR /&gt;In the provided reproduction sample, an OpenGL context has not been created.&lt;/LI&gt;&lt;LI&gt;Does the issue occur with the latest Intel graphics driver available?&lt;BR /&gt;Yes.&amp;nbsp;(Driver version "32.0.101.7088" is latest)&lt;/LI&gt;&lt;LI&gt;Have you tested with a previous driver version, and if so, does the behavior change?&lt;BR /&gt;I have observed crashes caused by call SetPixelFormat in driver version 32.0.101.6297 and later.&lt;BR /&gt;But&amp;nbsp;I don't know the issue occur with the provided reproduction sample&amp;nbsp;using old version driver.&lt;/LI&gt;&lt;LI&gt;Does the issue occur on other systems with the same Intel graphics hardware?&lt;BR /&gt;I don't know.&lt;BR /&gt;However, the issue does not occur on another PC（VEN_8086&amp;amp;DEV_A7A0, Driver version "31.0.101.5333"）&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Thu, 06 Aug 2026 05:07:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Access-violation-when-call-SetPixelFormat/m-p/1755811#M152848</guid>
      <dc:creator>Yuya_Fukazawa_bn7</dc:creator>
      <dc:date>2026-08-06T05:07:14Z</dc:date>
    </item>
    <item>
      <title>Re:[Bug Report - IGS] -  Access violation exception (0xC0000005)</title>
      <link>https://community.intel.com/t5/Graphics/Access-violation-when-call-SetPixelFormat/m-p/1755893#M152863</link>
      <description>&lt;P&gt;Hello 祐哉 深澤,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thank you for response, and we will now coordinate this with the team.  Please wait for our update.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Jennifer B.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Intel Customer Support&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 06 Aug 2026 23:32:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Access-violation-when-call-SetPixelFormat/m-p/1755893#M152863</guid>
      <dc:creator>Bailio_Intel</dc:creator>
      <dc:date>2026-08-06T23:32:38Z</dc:date>
    </item>
    <item>
      <title>Re:[Bug Report - IGS] -  Access violation exception (0xC0000005)</title>
      <link>https://community.intel.com/t5/Graphics/Access-violation-when-call-SetPixelFormat/m-p/1756169#M152917</link>
      <description>&lt;P&gt;Hi &lt;STRONG&gt;Yuya_Fukazawa_bn7,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thank you for your continued cooperation while I work to investigate this issue.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Before we proceed further, I would like to set your expectations regarding software support for your Intel Processor Graphics.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;As of September 19, 2025, Intel moved &lt;A href="https://www.intel.com/content/www/us/en/support/articles/000101986/graphics.html" rel="noopener noreferrer" target="_blank"&gt;&lt;STRONG&gt;11th through 14th Generation Intel® Processor Graphics&lt;/STRONG&gt;&lt;/A&gt;&lt;STRONG&gt;,&lt;/STRONG&gt; along with related Intel Atom®, Pentium®, and Celeron® processor graphics, to a &lt;STRONG&gt;legacy software support model&lt;/STRONG&gt;. Under this model, Intel will provide software support for affected products primarily for &lt;STRONG&gt;critical fixes and security vulnerabilities&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Going forward, software updates for these products will move to a &lt;STRONG&gt;quarterly release cadence&lt;/STRONG&gt;, with additional critical releases provided as needed. Only critical fixes and security vulnerabilities will be addressed in quarterly driver releases.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;With this in mind, please let me know if you would still like to continue troubleshooting the issue. If so, I would like to gather some additional information to help us isolate the cause:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Have you tested any &lt;STRONG&gt;older graphics driver versions&lt;/STRONG&gt; on the same system?&lt;/LI&gt;&lt;LI&gt;If so, did you perform a &lt;STRONG&gt;driver rollback&lt;/STRONG&gt;, and did the issue change afterward?&lt;/LI&gt;&lt;LI&gt;On this same system, which &lt;STRONG&gt;driver version(s) have worked properly&lt;/STRONG&gt; without experiencing the issue?&lt;/LI&gt;&lt;LI&gt;Have you performed a &lt;STRONG&gt;clean installation of the graphics driver using Display Driver Uninstaller (DDU)&lt;/STRONG&gt;?&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Your answers to these questions will help us determine whether the issue is specific to a particular driver version or if further troubleshooting is warranted.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thank you, and I look forward to your response.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Bueno S.&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 10 Aug 2026 16:35:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Access-violation-when-call-SetPixelFormat/m-p/1756169#M152917</guid>
      <dc:creator>BuenoS_Intel</dc:creator>
      <dc:date>2026-08-10T16:35:59Z</dc:date>
    </item>
    <item>
      <title>Re:[Bug Report - IGS] -  Access violation exception (0xC0000005)</title>
      <link>https://community.intel.com/t5/Graphics/Access-violation-when-call-SetPixelFormat/m-p/1756521#M153001</link>
      <description>&lt;P&gt;Hi &lt;STRONG&gt;Yuya_Fukazawa_bn7,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I’m following up on my previous email regarding the graphics issue and the additional information requested.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;As mentioned, Intel has moved 11th through 14th Generation Intel® Processor Graphics, along with related Intel Atom®, Pentium®, and Celeron® processor graphics, to a legacy software support model. As a result, driver updates for these products will primarily focus on critical fixes and security vulnerabilities and will follow a quarterly release cadence.&lt;/P&gt;&lt;P&gt;To help us determine the next steps, could you please provide an update on the following?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Have you tested any older graphics driver versions on the same system?&lt;/LI&gt;&lt;LI&gt;If so, did you perform a driver rollback, and did the issue change afterward?&lt;/LI&gt;&lt;LI&gt;Which driver version(s) have worked properly on this system without experiencing the issue?&lt;/LI&gt;&lt;LI&gt;Have you performed a clean installation of the graphics driver using Display Driver Uninstaller (DDU)?&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Please let me know when you have a chance. This information will help us further isolate the cause and determine whether additional troubleshooting would be worthwhile.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thank you, and I look forward to your response.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Jennifer B.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Aug 2026 21:09:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Access-violation-when-call-SetPixelFormat/m-p/1756521#M153001</guid>
      <dc:creator>Bailio_Intel</dc:creator>
      <dc:date>2026-08-13T21:09:55Z</dc:date>
    </item>
    <item>
      <title>Re:[Bug Report - IGS] -  Access violation exception (0xC0000005)</title>
      <link>https://community.intel.com/t5/Graphics/Access-violation-when-call-SetPixelFormat/m-p/1757056#M153128</link>
      <description>&lt;P&gt;Hello 祐哉 深澤,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Greetings! We hope all is well with you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As we haven’t received a response, we’ll be temporarily closing your case for now.  &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Wishing you a great day, and please continue to stay safe!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Jennifer B.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Intel Customer Support&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 19 Aug 2026 17:13:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Access-violation-when-call-SetPixelFormat/m-p/1757056#M153128</guid>
      <dc:creator>Bailio_Intel</dc:creator>
      <dc:date>2026-08-19T17:13:45Z</dc:date>
    </item>
    <item>
      <title>Re: Re:[Bug Report - IGS] -  Access violation exception (0xC0000005)</title>
      <link>https://community.intel.com/t5/Graphics/Access-violation-when-call-SetPixelFormat/m-p/1757120#M153138</link>
      <description>&lt;OL&gt;&lt;LI&gt;Have you tested any older graphics driver versions on the same system?&lt;BR /&gt;Yes.&lt;/LI&gt;&lt;LI&gt;If so, did you perform a driver rollback, and did the issue change afterward?&lt;BR /&gt;&amp;gt; If so, did you perform a driver rollback&lt;BR /&gt;Yes.&lt;BR /&gt;I tried driver rollback.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; and did the issue change afterward?&lt;BR /&gt;No.&lt;BR /&gt;The issue occurs.&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;&lt;LI&gt;Which driver version(s) have worked properly on this system without experiencing the issue?&lt;BR /&gt;32.0.101.6130.&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;&lt;LI&gt;Have you performed a clean installation of the graphics driver using Display Driver Uninstaller (DDU)?&lt;BR /&gt;No.&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Thu, 20 Aug 2026 02:11:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Access-violation-when-call-SetPixelFormat/m-p/1757120#M153138</guid>
      <dc:creator>Yuya_Fukazawa_bn7</dc:creator>
      <dc:date>2026-08-20T02:11:55Z</dc:date>
    </item>
  </channel>
</rss>

