This commit is contained in:
Camilla Berglund 2011-03-04 21:53:34 +01:00
parent f511fa0228
commit 9b70cec954
2 changed files with 4 additions and 1 deletions

View File

@ -303,6 +303,7 @@ version of GLFW.</p>
<li>[Win32] Removed explicit support for versions of Windows older than Windows XP</li> <li>[Win32] Removed explicit support for versions of Windows older than Windows XP</li>
<li>[Win32] Bugfix: Window activation and iconification did not work as expected</li> <li>[Win32] Bugfix: Window activation and iconification did not work as expected</li>
<li>[Win32] Bugfix: Software rasterizer pixel formats were not discarded by the WGL_ARB_pixel_format code path</li> <li>[Win32] Bugfix: Software rasterizer pixel formats were not discarded by the WGL_ARB_pixel_format code path</li>
<li>[Win32] Bugfix: The array for WGL context attributes was too small and could overflow</li>
</ul> </ul>
<h3>v2.7</h3> <h3>v2.7</h3>
@ -897,6 +898,8 @@ their skills. Special thanks go out to:</p>
<li>TTK-Bandit, for submitting a number of input patches adding many missing <li>TTK-Bandit, for submitting a number of input patches adding many missing
keys to the Win32 and X11 ports</li> keys to the Win32 and X11 ports</li>
<li>yuriks, for reporting a bug in Win32 context creation</li>
<li>All the unmentioned and anonymous contributors in the GLFW community, for <li>All the unmentioned and anonymous contributors in the GLFW community, for
bug reports, patches, feedback and encouragement</li> bug reports, patches, feedback and encouragement</li>

View File

@ -323,7 +323,7 @@ static GLboolean createContext(_GLFWwindow* window,
int pixelFormat) int pixelFormat)
{ {
PIXELFORMATDESCRIPTOR pfd; PIXELFORMATDESCRIPTOR pfd;
int i = 0, attribs[7]; int i = 0, attribs[9];
HGLRC share = NULL; HGLRC share = NULL;
if (wndconfig->share) if (wndconfig->share)