https://bugs.freedesktop.org/show_bug.cgi?id=92020
Bug ID: 92020
Summary: wglCreatePbufferARB handle attrib error
Product: Mesa
Version: 11.0
Hardware: x86 (IA32)
OS: Windows (All)
Status: NEW
Severity: normal
Priority: medium
Component: EGL
Assignee: [email protected]
Reporter: [email protected]
QA Contact: [email protected]
HPBUFFERARB WINAPI
wglCreatePbufferARB(HDC hCurrentDC,
int iPixelFormat,
int iWidth,
int iHeight,
const int *piAttribList)
{
//......
for (piAttrib = piAttribList; *piAttrib; piAttrib++) {
switch (*piAttrib) {
case WGL_PBUFFER_LARGEST_ARB:
piAttrib++;
useLargest = *piAttrib;
break;
default:
SetLastError(ERROR_INVALID_DATA);
return 0;// <-- delete this
}
}
//.....
}
--
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.
_______________________________________________
mesa-dev mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-dev