diff options
author | José Fonseca <jfonseca@vmware.com> | 2009-05-14 15:32:10 +0100 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2009-06-01 18:23:20 -0700 |
commit | e358a69ca2c6f20ce57b178b14f0aa8e6fc1e804 (patch) | |
tree | 69899998a0071db7f8d7b297524e76ae53827df4 /src/wgl/wglinfo.c | |
parent | a1415bab8c748df647aad000ff65397b08181c84 (diff) | |
download | mesa-demos-e358a69ca2c6f20ce57b178b14f0aa8e6fc1e804.zip mesa-demos-e358a69ca2c6f20ce57b178b14f0aa8e6fc1e804.tar.xz |
progs/wgl: Small cleanup to wglinfo.
Diffstat (limited to 'src/wgl/wglinfo.c')
-rw-r--r-- | src/wgl/wglinfo.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/wgl/wglinfo.c b/src/wgl/wglinfo.c index 43a216d..864372c 100644 --- a/src/wgl/wglinfo.c +++ b/src/wgl/wglinfo.c @@ -348,7 +348,6 @@ print_screen_info(HDC _hdc, GLboolean limits) HWND win; HGLRC ctx; int visinfo; - int width = 100, height = 100; HDC hdc; PIXELFORMATDESCRIPTOR pfd; @@ -367,15 +366,15 @@ print_screen_info(HDC _hdc, GLboolean limits) WS_CLIPSIBLINGS | WS_CLIPCHILDREN, CW_USEDEFAULT, CW_USEDEFAULT, - width, - height, + CW_USEDEFAULT, + CW_USEDEFAULT, NULL, NULL, wc.hInstance, NULL); if (!win) { fprintf(stderr, "Couldn't create window"); - exit(1); + return; } hdc = GetDC(win); @@ -476,7 +475,7 @@ print_visual_attribs_verbose(int iPixelFormat, LPPIXELFORMATDESCRIPTOR ppfd) ppfd->dwFlags & PFD_DRAW_TO_WINDOW ? 1 : 0); printf(" bufferSize=%d level=%d renderType=%s doubleBuffer=%d stereo=%d\n", 0 /* ppfd->bufferSize */, 0 /* ppfd->level */, - visual_render_type_name(ppfd->dwFlags), + visual_render_type_name(ppfd->iPixelType), ppfd->dwFlags & PFD_DOUBLEBUFFER ? 1 : 0, ppfd->dwFlags & PFD_STEREO ? 1 : 0); printf(" rgba: cRedBits=%d cGreenBits=%d cBlueBits=%d cAlphaBits=%d\n", |