From: David L. P. <pa...@gm...> - 2008-06-27 15:19:14
|
Chromium folks-- I've modified renderspu_wgl.c to allow support for the 'borderless' option in the Render SPU. I've added the following code: Changed line 384 from: >> window_style = ( render_spu.fullscreen ? WS_POPUP : WS_CAPTION ); to: >> window_style = ( render_spu.fullscreen || render_spu.borderless ? WS_POPUP : WS_CAPTION ); and added the following code at line 428 or there abouts: >> else if( render_spu.borderless ) >> { >> window_style &= ~WS_OVERLAPPEDWINDOW; >> window->x = render_spu.defaultX; >> window->y = render_spu.defaultY; >> window_plus_caption_width = window->width; >> window_plus_caption_height = window->height; >> crDebug( "Render SPU: Window borderless enabled."); >> } It seems to work with my system. --Dave -- David L. Page Knoxville, Tennessee dav...@ie... |