Changeset 48719 in vbox
- Timestamp:
- Sep 26, 2013 3:33:58 PM (11 years ago)
- Location:
- trunk/src/VBox/HostServices/SharedOpenGL/crserverlib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server.h
r48615 r48719 147 147 void crServerWindowSetIsVisible(CRMuralInfo *pMural, GLboolean fIsVisible); 148 148 void crServerWindowCheckIsVisible(CRMuralInfo *pMural); 149 150 int crVBoxServerUpdateMuralRootVisibleRegion(CRMuralInfo *pMI); 149 151 150 152 #define CR_SERVER_REDIR_F_NONE 0x00 … … 404 406 int crServerVBoxParseNumerics(const char *pszStr, const int defaultVal); 405 407 406 408 void CrDpRootUpdate(PCR_DISPLAY pDisplay); 407 409 void CrDpEnter(PCR_DISPLAY pDisplay); 408 410 void CrDpLeave(PCR_DISPLAY pDisplay); -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_main.c
r48635 r48719 2832 2832 } 2833 2833 2834 staticint crVBoxServerUpdateMuralRootVisibleRegion(CRMuralInfo *pMI)2834 int crVBoxServerUpdateMuralRootVisibleRegion(CRMuralInfo *pMI) 2835 2835 { 2836 2836 GLboolean fForcePresent; … … 2885 2885 { 2886 2886 int32_t rc = VINF_SUCCESS; 2887 int i; 2887 2888 2888 2889 /* non-zero rects pointer indicate rects are present and switched on … … 2912 2913 2913 2914 crHashtableWalk(cr_server.muralTable, crVBoxServerSetRootVisibleRegionCB, NULL); 2914 2915 #if 0 2916 for (i = 0; i < cr_server.screenCount; ++i) 2917 { 2918 PCR_DISPLAY pDisplay = crServerDisplayGetInitialized((uint32_t)i); 2919 if (!pDisplay) 2920 continue; 2921 2922 CrDpRootUpdate(pDisplay); 2923 } 2924 #endif 2915 2925 return VINF_SUCCESS; 2916 2926 } -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_presenter.cpp
r47628 r48719 316 316 } 317 317 318 void CrDpRootUpdate(PCR_DISPLAY pDisplay) 319 { 320 crVBoxServerUpdateMuralRootVisibleRegion(&pDisplay->Mural); 321 } 322 323 318 324 typedef struct CR_DEM_ENTRY_INFO 319 325 {
Note:
See TracChangeset
for help on using the changeset viewer.