Changeset 45527 in vbox for trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_window.c
- Timestamp:
- Apr 12, 2013 4:51:01 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_window.c
r45251 r45527 130 130 { 131 131 /* do visible rects only ig they differ from the default */ 132 cr_server.head_spu->dispatch_table.WindowVisibleRegion(mural->spuWindow, cRects, pRects);132 cr_server.head_spu->dispatch_table.WindowVisibleRegion(mural->spuWindow, cRects, (const GLint*)pRects); 133 133 } 134 134 } … … 558 558 cr_server.head_spu->dispatch_table.WindowSize(mural->spuWindow, width, height); 559 559 560 cr_server.head_spu->dispatch_table.WindowVisibleRegion(mural->spuWindow, cRects, pRects);560 cr_server.head_spu->dispatch_table.WindowVisibleRegion(mural->spuWindow, cRects, (const GLint*)pRects); 561 561 562 562 if (mural->pvOutputRedirectInstance) … … 661 661 if (RT_SUCCESS(rc)) 662 662 { 663 cr_server.head_spu->dispatch_table.WindowVisibleRegion(mural->spuWindow, cRects, pRects);663 cr_server.head_spu->dispatch_table.WindowVisibleRegion(mural->spuWindow, cRects, (const GLint*)pRects); 664 664 } 665 665 else … … 771 771 } 772 772 773 cr_server.head_spu->dispatch_table.WindowVisibleRegion(mural->spuWindow, cRealRects, pRealRects);773 cr_server.head_spu->dispatch_table.WindowVisibleRegion(mural->spuWindow, cRealRects, (const GLint*)pRealRects); 774 774 775 775 if (mural->pvOutputRedirectInstance)
Note:
See TracChangeset
for help on using the changeset viewer.