Changeset 62782 in vbox for trunk/src/VBox/HostServices/SharedOpenGL
- Timestamp:
- Jul 31, 2016 10:50:29 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109369
- Location:
- trunk/src/VBox/HostServices/SharedOpenGL
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/crserver/crservice.cpp
r62679 r62782 1 1 /* $Id$ */ 2 3 2 /** @file 4 * VBox crOpenGL :Host service entry points.3 * VBox crOpenGL - Host service entry points. 5 4 */ 6 5 … … 33 32 #include <VBox/log.h> 34 33 #include <VBox/com/array.h> 34 #if 0 35 35 #include <VBox/com/ErrorInfo.h> 36 36 #include <VBox/com/VirtualBox.h> … … 1595 1595 } 1596 1596 #endif 1597 #endif -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_clip.c
r33540 r62782 11 11 12 12 #include <math.h> 13 13 14 #include "cr_server.h" 14 15 #include "cr_mem.h" -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_main.c
r56970 r62782 2568 2568 int i; 2569 2569 2570 if (sCount >CR_MAX_GUEST_MONITORS)2570 if (sCount > CR_MAX_GUEST_MONITORS) 2571 2571 return VERR_INVALID_PARAMETER; 2572 2572 2573 2573 /*Shouldn't happen yet, but to be safe in future*/ 2574 for (i =0; i<cr_server.screenCount; ++i)2574 for (i = 0; i < cr_server.screenCount; /*++i - unreachable code*/) 2575 2575 { 2576 2576 if (MAPPED(SCREEN(i))) … … 3573 3573 return -1; 3574 3574 } 3575 3576 WARN(("internal error")); 3577 return -1; 3575 /* not reached */ 3578 3576 } 3579 3577 … … 3916 3914 3917 3915 3918 static DECLCALLBACK(bool) crVBoxServerHasData( )3916 static DECLCALLBACK(bool) crVBoxServerHasData(void) 3919 3917 { 3920 3918 HCR_FRAMEBUFFER hFb = CrPMgrFbGetFirstEnabled();
Note:
See TracChangeset
for help on using the changeset viewer.