From: José Fonseca Date: Wed, 8 Feb 2012 15:46:28 +0000 (+0000) Subject: st/wgl: Fix argument of stw_pixelformat_get_info(). X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6beed86ab8970b57aad8442a3e6bf6410fff13ec;p=mesa.git st/wgl: Fix argument of stw_pixelformat_get_info(). stw_pixelformat_get_info takes zero based index, not a 1 based pixel format number. --- diff --git a/src/gallium/state_trackers/wgl/stw_ext_pbuffer.c b/src/gallium/state_trackers/wgl/stw_ext_pbuffer.c index 252d07a90cc..a2224fba2bc 100644 --- a/src/gallium/state_trackers/wgl/stw_ext_pbuffer.c +++ b/src/gallium/state_trackers/wgl/stw_ext_pbuffer.c @@ -82,7 +82,7 @@ wglCreatePbufferARB(HDC _hDC, HWND hWnd; HDC hDC; - info = stw_pixelformat_get_info(iPixelFormat); + info = stw_pixelformat_get_info(iPixelFormat - 1); if (!info) { SetLastError(ERROR_INVALID_PIXEL_FORMAT); return 0;