diff options
| author | callum <none@none> | 2012-01-27 13:18:27 -0800 | 
|---|---|---|
| committer | callum <none@none> | 2012-01-27 13:18:27 -0800 | 
| commit | 987463d9248d7fab9534ff7a9f303c6db42da7a9 (patch) | |
| tree | 94d9e81267de4efc92f041d077325dbd5c62df22 /indra/llwindow | |
| parent | ae952f2d45265baa4780de6d4a54e27b5e21ece5 (diff) | |
EXP-1765 POSSIBLE_FIX crash on startup at LLWindowWin32::switchContext(...)
Diffstat (limited to 'indra/llwindow')
| -rw-r--r-- | indra/llwindow/llwindowwin32.cpp | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/indra/llwindow/llwindowwin32.cpp b/indra/llwindow/llwindowwin32.cpp index 228fbefd19..67d1a168e6 100644 --- a/indra/llwindow/llwindowwin32.cpp +++ b/indra/llwindow/llwindowwin32.cpp @@ -1065,6 +1065,8 @@ BOOL LLWindowWin32::switchContext(BOOL fullscreen, const LLCoordScreen &size, BO  		return FALSE;  	} +	LL_INFOS("Window") << "Device context retrieved." << llendl ; +  	if (!(pixel_format = ChoosePixelFormat(mhDC, &pfd)))  	{  		close(); @@ -1073,6 +1075,8 @@ BOOL LLWindowWin32::switchContext(BOOL fullscreen, const LLCoordScreen &size, BO  		return FALSE;  	} +	LL_INFOS("Window") << "Pixel format chosen." << llendl ; +  	// Verify what pixel format we actually received.  	if (!DescribePixelFormat(mhDC, pixel_format, sizeof(PIXELFORMATDESCRIPTOR),  		&pfd)) | 
