mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
[OPENGL32] Fix wglDescribePixelFormat
This commit is contained in:
parent
8a0495063b
commit
9cc37704f5
1 changed files with 11 additions and 4 deletions
|
@ -19,7 +19,7 @@ LIST_ENTRY ContextListHead;
|
|||
/* FIXME: suboptimal */
|
||||
static
|
||||
struct wgl_dc_data*
|
||||
get_dc_data(HDC hdc)
|
||||
get_dc_data_ex(HDC hdc, INT format, UINT size, PIXELFORMATDESCRIPTOR *descr)
|
||||
{
|
||||
HWND hwnd = NULL;
|
||||
struct wgl_dc_data* data;
|
||||
|
@ -76,7 +76,7 @@ get_dc_data(HDC hdc)
|
|||
data->icd_data = IntGetIcdData(hdc);
|
||||
/* Get the number of available formats for this DC once and for all */
|
||||
if(data->icd_data)
|
||||
data->nb_icd_formats = data->icd_data->DrvDescribePixelFormat(hdc, 0, 0, NULL);
|
||||
data->nb_icd_formats = data->icd_data->DrvDescribePixelFormat(hdc, format, size, descr);
|
||||
else
|
||||
data->nb_icd_formats = 0;
|
||||
TRACE("ICD %S has %u formats for HDC %x.\n", data->icd_data ? data->icd_data->DriverName : NULL, data->nb_icd_formats, hdc);
|
||||
|
@ -87,6 +87,13 @@ get_dc_data(HDC hdc)
|
|||
return data;
|
||||
}
|
||||
|
||||
static
|
||||
struct wgl_dc_data*
|
||||
get_dc_data(HDC hdc)
|
||||
{
|
||||
return get_dc_data_ex(hdc, 0, 0, NULL);
|
||||
}
|
||||
|
||||
void release_dc_data(struct wgl_dc_data* dc_data)
|
||||
{
|
||||
(void)dc_data;
|
||||
|
@ -115,7 +122,7 @@ struct wgl_context* get_context(HGLRC hglrc)
|
|||
|
||||
INT WINAPI wglDescribePixelFormat(HDC hdc, INT format, UINT size, PIXELFORMATDESCRIPTOR *descr )
|
||||
{
|
||||
struct wgl_dc_data* dc_data = get_dc_data(hdc);
|
||||
struct wgl_dc_data* dc_data = get_dc_data_ex(hdc, format, size, descr);
|
||||
INT ret;
|
||||
|
||||
if(!dc_data)
|
||||
|
@ -131,7 +138,7 @@ INT WINAPI wglDescribePixelFormat(HDC hdc, INT format, UINT size, PIXELFORMATDES
|
|||
release_dc_data(dc_data);
|
||||
return ret;
|
||||
}
|
||||
if((format == 0) || (format > ret) || (size != sizeof(*descr)))
|
||||
if((format <= 0) || (format > ret) || (size < sizeof(*descr)))
|
||||
{
|
||||
release_dc_data(dc_data);
|
||||
SetLastError(ERROR_INVALID_PARAMETER);
|
||||
|
|
Loading…
Reference in a new issue