<?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 Re: Issue with OpenGL code on Intel HD 4000 card (Windows 8) in Graphics</title>
    <link>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190983#M404</link>
    <description>&lt;P&gt;Hello Alastair, we are still waiting for a response on this, you may alternatively check through &lt;A href="http://software.intel.com/en-us/forum"&gt;http://software.intel.com/en-us/forum&lt;/A&gt; Forums | Intel® Developer Zone which is the actual channel of support for these concerns&lt;/P&gt;</description>
    <pubDate>Tue, 23 Jul 2013 18:34:23 GMT</pubDate>
    <dc:creator>DArce</dc:creator>
    <dc:date>2013-07-23T18:34:23Z</dc:date>
    <item>
      <title>Issue with OpenGL code on Intel HD 4000 card (Windows 8)</title>
      <link>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190979#M400</link>
      <description>&lt;P&gt;I have some OpenGL code that seems to work fine on every setup bar Intel HD 4000 on Windows 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have reproduced an example showing the problem (can be compiled using Visual C++)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On a working system it looks like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://i39.tinypic.com/118zhvn.png[/IMG]"&gt;http://i39.tinypic.com/118zhvn.png[/IMG]&lt;/A&gt; &lt;A href="http://i39.tinypic.com/118zhvn.png"&gt;http://i39.tinypic.com/118zhvn.png&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On  Intel HD 4000 on Windows 8&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://i42.tinypic.com/2ez1qh3.png[/IMG]"&gt;http://i42.tinypic.com/2ez1qh3.png[/IMG]&lt;/A&gt; &lt;A href="http://i42.tinypic.com/2ez1qh3.png"&gt;http://i42.tinypic.com/2ez1qh3.png&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am assuming this is a driver issue (have tried the latest drivers but no joy) although can't rule out an issue with the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# include &lt;/P&gt;&lt;P&gt;# include &lt;/P&gt;&lt;P&gt;# include &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Function Declarations&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);&lt;/P&gt;&lt;P&gt;void EnableOpenGL(HWND hWnd, HDC * hDC, HGLRC * hRC);&lt;/P&gt;&lt;P&gt;void DisableOpenGL(HWND hWnd, HDC hDC, HGLRC hRC);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// WinMain&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,&lt;/P&gt;&lt;P&gt;  LPSTR lpCmdLine, int iCmdShow)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;  WNDCLASS wc;&lt;/P&gt;&lt;P&gt;  HWND hWnd;&lt;/P&gt;&lt;P&gt;  HDC hDC;&lt;/P&gt;&lt;P&gt;  HGLRC hRC;&lt;/P&gt;&lt;P&gt;  MSG msg;&lt;/P&gt;&lt;P&gt;  BOOL quit = FALSE;&lt;/P&gt;&lt;P&gt;  float theta = 0.0f;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  // register window class&lt;/P&gt;&lt;P&gt;  wc.style = CS_OWNDC;&lt;/P&gt;&lt;P&gt;  wc.lpfnWndProc = WndProc;&lt;/P&gt;&lt;P&gt;  wc.cbClsExtra = 0;&lt;/P&gt;&lt;P&gt;  wc.cbWndExtra = 0;&lt;/P&gt;&lt;P&gt;  wc.hInstance = hInstance;&lt;/P&gt;&lt;P&gt;  wc.hIcon = LoadIcon(NULL, IDI_APPLICATION);&lt;/P&gt;&lt;P&gt;  wc.hCursor = LoadCursor(NULL, IDC_ARROW);&lt;/P&gt;&lt;P&gt;  wc.hbrBackground = (HBRUSH) GetStockObject(BLACK_BRUSH);&lt;/P&gt;&lt;P&gt;  wc.lpszMenuName = NULL;&lt;/P&gt;&lt;P&gt;  wc.lpszClassName = "GLSample";&lt;/P&gt;&lt;P&gt;  RegisterClass(&amp;amp;wc);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  // create main window&lt;/P&gt;&lt;P&gt;  hWnd = CreateWindow(&lt;/P&gt;&lt;P&gt;  "GLSample", "OpenGL Sample",&lt;/P&gt;&lt;P&gt;  WS_CAPTION | WS_POPUPWINDOW | WS_VISIBLE,&lt;/P&gt;&lt;P&gt;  0, 0, 512, 512,&lt;/P&gt;&lt;P&gt;  NULL, NULL, hInstance, NULL);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  // enable OpenGL for the window&lt;/P&gt;&lt;P&gt;  EnableOpenGL(hWnd, &amp;amp;hDC, &amp;amp;hRC);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  // program main loop&lt;/P&gt;&lt;P&gt;  while (!quit)&lt;/P&gt;&lt;P&gt;  {&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  // check for messages&lt;/P&gt;&lt;P&gt;  if (PeekMessage(&amp;amp;msg, NULL, 0, 0, PM_REMOVE))&lt;/P&gt;&lt;P&gt;  {&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  // handle or dispatch messages&lt;/P&gt;&lt;P&gt;  if (msg.message == WM_QUIT)&lt;/P&gt;&lt;P&gt;  {&lt;/P&gt;&lt;P&gt;  quit = TRUE;&lt;/P&gt;&lt;P&gt;  }&lt;/P&gt;&lt;P&gt;  else&lt;/P&gt;&lt;P&gt;  {&lt;/P&gt;&lt;P&gt;  TranslateMessage(&amp;amp;msg);&lt;/P&gt;&lt;P&gt;  DispatchMessage(&amp;amp;msg);&lt;/P&gt;&lt;P&gt;  }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  }&lt;/P&gt;&lt;P&gt;  else&lt;/P&gt;&lt;P&gt;  {&lt;/P&gt;&lt;P&gt;  glLoadIdentity();&lt;/P&gt;&lt;P&gt;  gluOrtho2D(-1.5938962727771744, 1.5938962727771744, -1.5707963267948966, 1.5707963267948966);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  glBegin(GL_LINE_LOOP);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.093332, -0.388151);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.092969, -0.388418);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.093067, -0.389266);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.092257, -0.389503);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.091499, -0.389893);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.090951, -0.390575);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.090157, -0.390978);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.089468, -0.391521);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.088742, -0.392055);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.087883, -0.392249);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.087084, -0.392626);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.086413, -0.393203);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.086254, -0.393989);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.086176, -0.394827);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.085459, -0.395254);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.085169, -0.395996);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.084897, -0.396781);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.084354, -0.397474);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.083956, -0.398172);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.083321, -0.398783);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.082729, -0.399405);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.082467, -0.400180);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.082225, -0.400995);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.081717, -0.401707);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.081027, -0.402269);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.080291, -0.402681);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.079516, -0.403059);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.078943, -0.403656);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.078322, -0.404300);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.077667, -0.404873);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.077484, -0.405731);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.076762, -0.406152);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.075884, -0.406375);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.075022, -0.406608);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.074493, -0.407311);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.073843, -0.407932);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.073323, -0.408644);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.072456, -0.408786);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.071758, -0.409285);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.070857, -0.409484);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.070075, -0.409861);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.069489, -0.410512);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.068698, -0.410995);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.067836, -0.411107);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.067201, -0.411728);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.066532, -0.412285);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.066634, -0.413133);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.066101, -0.413807);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.065469, -0.414428);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.065068, -0.415170);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.064413, -0.415767);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.063483, -0.415732);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.062698, -0.416106);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.062019, -0.416678);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.061062, -0.416697);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.060094, -0.416654);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.059338, -0.417027);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.058474, -0.417017);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.057568, -0.417294);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.057204, -0.418026);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.056303, -0.418113);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.055507, -0.418516);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.054678, -0.418734);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.053737, -0.418715);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.052943, -0.419190);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.052074, -0.419547);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.051119, -0.419520);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.050170, -0.419607);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.049325, -0.419460);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.048452, -0.419198);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.047541, -0.419239);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.046582, -0.419825);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.045594, -0.420411);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.044648, -0.420998);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.043674, -0.421584);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.042728, -0.422171);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.041757, -0.422757);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.040797, -0.423344);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.039834, -0.423930);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.038864, -0.424513);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.037980, -0.425037);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.037424, -0.425686);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.036745, -0.426171);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.036153, -0.426806);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.035561, -0.427445);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.034792, -0.427867);&lt;/P&gt;&lt;P&gt;  glVertex2d(-1.033982, -0.428285);&lt;/P&gt;&amp;lt;p...</description>
      <pubDate>Wed, 17 Jul 2013 16:02:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190979#M400</guid>
      <dc:creator>ATayl6</dc:creator>
      <dc:date>2013-07-17T16:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OpenGL code on Intel HD 4000 card (Windows 8)</title>
      <link>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190980#M401</link>
      <description>&lt;P&gt;Let me check what would be the appropriate channel of support for this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While I do so, could you please indicate what is the driver versions you have tested with? &lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2013 18:12:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190980#M401</guid>
      <dc:creator>DArce</dc:creator>
      <dc:date>2013-07-18T18:12:43Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OpenGL code on Intel HD 4000 card (Windows 8)</title>
      <link>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190981#M402</link>
      <description>&lt;P&gt;Thanks for your offer of help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have tested with a variety of drivers including the latest as downloaded from&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.intel.com/p/en_US/support/detect"&gt;http://www.intel.com/p/en_US/support/detect&lt;/A&gt; &lt;A href="http://www.intel.com/p/en_US/support/detect"&gt;http://www.intel.com/p/en_US/support/detect&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This issue is being reported by a number of our customers. The only common factor is Windows 8 and that graphics card.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note it isn't a Windows 8 issue in general as all works fine on other PCs with different graphics cards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2013 08:40:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190981#M402</guid>
      <dc:creator>ATayl6</dc:creator>
      <dc:date>2013-07-19T08:40:17Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OpenGL code on Intel HD 4000 card (Windows 8)</title>
      <link>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190982#M403</link>
      <description>&lt;P&gt;@Diego_Intel Any update on this? We are keen to find a solution to this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alastair&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2013 13:14:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190982#M403</guid>
      <dc:creator>ATayl6</dc:creator>
      <dc:date>2013-07-23T13:14:10Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OpenGL code on Intel HD 4000 card (Windows 8)</title>
      <link>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190983#M404</link>
      <description>&lt;P&gt;Hello Alastair, we are still waiting for a response on this, you may alternatively check through &lt;A href="http://software.intel.com/en-us/forum"&gt;http://software.intel.com/en-us/forum&lt;/A&gt; Forums | Intel® Developer Zone which is the actual channel of support for these concerns&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2013 18:34:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190983#M404</guid>
      <dc:creator>DArce</dc:creator>
      <dc:date>2013-07-23T18:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OpenGL code on Intel HD 4000 card (Windows 8)</title>
      <link>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190984#M405</link>
      <description>&lt;P&gt;We have just had a report of the same drawing issues with a PC with a Intel HD 4000 card but running Windows 7.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help on this matter would be much appreciated as it's now a number of clients experiencing this problem.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2013 21:21:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190984#M405</guid>
      <dc:creator>ATayl6</dc:creator>
      <dc:date>2013-08-05T21:21:57Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OpenGL code on Intel HD 4000 card (Windows 8)</title>
      <link>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190985#M406</link>
      <description>&lt;P&gt;We have been able to replicate the issue and now we are working on implementing this fix on a future driver release.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you may know, we may not provide an estimated time for this to happen.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Aug 2013 16:02:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190985#M406</guid>
      <dc:creator>DArce</dc:creator>
      <dc:date>2013-08-06T16:02:55Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OpenGL code on Intel HD 4000 card (Windows 8)</title>
      <link>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190986#M407</link>
      <description>&lt;P&gt;@&lt;B&gt; Diego_Intel&lt;/B&gt; Thank you for the update. Will I be notified when the fix is available?&lt;/P&gt;</description>
      <pubDate>Tue, 06 Aug 2013 16:13:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190986#M407</guid>
      <dc:creator>ATayl6</dc:creator>
      <dc:date>2013-08-06T16:13:19Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OpenGL code on Intel HD 4000 card (Windows 8)</title>
      <link>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190987#M408</link>
      <description>&lt;P&gt;Yes, we will let you know when the fix is available in our web site.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Aug 2013 16:57:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190987#M408</guid>
      <dc:creator>DArce</dc:creator>
      <dc:date>2013-08-06T16:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OpenGL code on Intel HD 4000 card (Windows 8)</title>
      <link>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190988#M409</link>
      <description>&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also have an issue with my Surface Pro and a program called Sketchup Make. If I role back my drivers it work but when windows updates my drivers again the program breaks. &lt;/P&gt;</description>
      <pubDate>Thu, 29 Aug 2013 15:30:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190988#M409</guid>
      <dc:creator>SDunl</dc:creator>
      <dc:date>2013-08-29T15:30:39Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OpenGL code on Intel HD 4000 card (Windows 8)</title>
      <link>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190989#M410</link>
      <description>&lt;P&gt;SDunlop, a fix for the issue being discussed here is to be available in a future driver release. If your issue is related to this same topic, then please wait for this fix to be available. If your concern is related to a different software/problem, then please create a separate thread and provide full system configuration (device models, driver/application versions and steps to reproduce the issue)&lt;/P&gt;</description>
      <pubDate>Thu, 29 Aug 2013 17:09:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190989#M410</guid>
      <dc:creator>DArce</dc:creator>
      <dc:date>2013-08-29T17:09:10Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OpenGL code on Intel HD 4000 card (Windows 8)</title>
      <link>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190990#M411</link>
      <description>&lt;P&gt;Hello Diego,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;I believe this is the same issue and I just wanted to provide some additional information and resource related information so that the engineering/development team have enough information to properly test the new drivers before releasing them. Obviously I would much rather see a driver release that fixes all OpenGL related issues in one driver rather than having to continuously update.</description>
      <pubDate>Thu, 29 Aug 2013 17:15:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190990#M411</guid>
      <dc:creator>SDunl</dc:creator>
      <dc:date>2013-08-29T17:15:18Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OpenGL code on Intel HD 4000 card (Windows 8)</title>
      <link>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190991#M412</link>
      <description>&lt;P&gt;Alright. Thank you for your feedback, you may test this when the new driver is released. As a side note, I would like to let you know that I played a little bit with Sketchup Make using Microsoft* Windows* 8, with drivers version &lt;/P&gt;&lt;P&gt;9.18.10.&lt;B&gt;3165 &lt;/B&gt;with Intel® HD Graphics 4000 and it worked fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://downloadcenter.intel.com/SearchResult.aspx?lang=eng&amp;amp;keyword=3165"&gt;https://downloadcenter.intel.com/SearchResult.aspx?lang=eng&amp;amp;keyword=3165&lt;/A&gt; 9.18.10.3165 Download Center&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if your issue still persists, then please open a new thread with your full information on your system configuration, dxdiag report and steps and/or a file to reproduce your issue.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Aug 2013 20:57:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190991#M412</guid>
      <dc:creator>DArce</dc:creator>
      <dc:date>2013-08-30T20:57:07Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OpenGL code on Intel HD 4000 card (Windows 8)</title>
      <link>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190992#M413</link>
      <description>&lt;P&gt;I would like to let you know that the issue has been investigated and replicated, and a fix will be available in a future driver release. However there is no estimated date for this to be released at this moment. &lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2013 18:29:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190992#M413</guid>
      <dc:creator>DArce</dc:creator>
      <dc:date>2013-09-24T18:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OpenGL code on Intel HD 4000 card (Windows 8)</title>
      <link>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190993#M414</link>
      <description>&lt;P&gt;Is there any update available yet as it's been 4 months since I raised this issue and we are keen to pass on a solution to our customers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2013 12:49:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190993#M414</guid>
      <dc:creator>ATayl6</dc:creator>
      <dc:date>2013-11-19T12:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OpenGL code on Intel HD 4000 card (Windows 8)</title>
      <link>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190994#M415</link>
      <description>&lt;P&gt;We were notified that the fix would be available on a future driver release however no ETA is available for this.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2013 18:49:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190994#M415</guid>
      <dc:creator>DArce</dc:creator>
      <dc:date>2013-11-20T18:49:03Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OpenGL code on Intel HD 4000 card (Windows 8)</title>
      <link>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190995#M416</link>
      <description>&lt;P&gt;Thanks for your patient; I have received information from engineering team that this issue has been fixed with driver version 10.18.10.3345&lt;/P&gt;&lt;P&gt;Please test the version above and let me know about your findings:&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;A href="https://downloadcenter.intel.com/SearchResult.aspx?lang=eng&amp;amp;ProductFamily=Graphics&amp;amp;ProductLine=Laptop+graphics+drivers&amp;amp;ProductProduct=3rd+Generation+Intel%C2%AE+Core%E2%84%A2+Processors+with+Intel%C2%AE+HD+Graphics+4000&amp;amp;ProdId=3712&amp;amp;LineId=1101&amp;amp;FamilyId=39"&gt;https://downloadcenter.intel.com/SearchResult.aspx?lang=eng&amp;amp;ProductFamily=Graphics&amp;amp;ProductLine=Laptop+graphics+drivers&amp;amp;ProductProduct=3rd+Generation+Intel%C2%AE+Core%E2%84%A2+Processors+with+Intel%C2%AE+HD+Graphics+4000&amp;amp;ProdId=3712&amp;amp;LineId=1101&amp;amp;FamilyId=39&lt;/A&gt; &lt;A href="https://downloadcenter.intel.com/SearchResult.aspx?lang=eng&amp;amp;ProductFamily=Graphics&amp;amp;ProductLine=Laptop+graphics+drivers&amp;amp;ProductProduct=3rd+Generation+Intel%C2%AE+Core%E2%84%A2+Processors+with+Intel%C2%AE+HD+Graphics+4000&amp;amp;ProdId=3712&amp;amp;LineId=1101&amp;amp;FamilyId=39"&gt;https://downloadcenter.intel.com/SearchResult.aspx?lang=eng&amp;amp;ProductFamily=Graphics&amp;amp;ProductLine=Laptop+graphics+drivers&amp;amp;ProductProduct=3rd+Generation+Intel%C2%AE+Core%E2%84%A2+Processors+with+Intel%C2%AE+HD+Graphics+4000&amp;amp;ProdId=3712&amp;amp;LineId=1101&amp;amp;FamilyId=39&lt;/A&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Allan.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2014 14:08:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Issue-with-OpenGL-code-on-Intel-HD-4000-card-Windows-8/m-p/190995#M416</guid>
      <dc:creator>Allan_J_Intel1</dc:creator>
      <dc:date>2014-01-08T14:08:23Z</dc:date>
    </item>
  </channel>
</rss>

