Changeset 52368 in vbox for trunk/src/VBox/HostServices/SharedOpenGL
- Timestamp:
- Aug 13, 2014 3:08:02 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 95508
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/VBox-4.3 merged: 95507
- Property svn:mergeinfo changed
-
trunk/src/VBox
- Property svn:mergeinfo changed
/branches/VBox-4.3/src/VBox merged: 95507
- Property svn:mergeinfo changed
-
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_presenter.cpp
r52329 r52368 2359 2359 2360 2360 if (parentId) 2361 cr_server.head_spu->dispatch_table.WindowPosition(mSpuWindow, mxPos, myPos); 2362 2363 if (!oldParentId && parentId && mFlags.fVisible) 2364 cr_server.head_spu->dispatch_table.WindowShow(mSpuWindow, true); 2361 { 2362 if (mFlags.fVisible) 2363 cr_server.head_spu->dispatch_table.WindowPosition(mSpuWindow, mxPos, myPos); 2364 cr_server.head_spu->dispatch_table.WindowShow(mSpuWindow, mFlags.fVisible); 2365 } 2365 2366 } 2366 2367 … … 2382 2383 mFlags.fVisible = fVisible; 2383 2384 if (mSpuWindow && mParentId) 2385 { 2386 if (fVisible) 2387 cr_server.head_spu->dispatch_table.WindowPosition(mSpuWindow, mxPos, myPos); 2384 2388 cr_server.head_spu->dispatch_table.WindowShow(mSpuWindow, fVisible); 2389 } 2385 2390 } 2386 2391 … … 2627 2632 { 2628 2633 public: 2629 CrFbDisplayWindow( CrFbWindow *pWindow, const RTRECT *pViewportRect) :2630 mpWindow( pWindow),2634 CrFbDisplayWindow(const RTRECT *pViewportRect, uint64_t parentId, uint64_t defaultParentId) : 2635 mpWindow(NULL), 2631 2636 mViewportRect(*pViewportRect), 2632 mu32Screen(~0) 2637 mu32Screen(~0), 2638 mParentId(parentId), 2639 mDefaultParentId(defaultParentId) 2633 2640 { 2634 2641 mFlags.u32Value = 0; 2635 CRASSERT(pWindow);2636 2642 } 2637 2643 … … 2832 2838 } 2833 2839 2840 virtual int setDefaultParent(uint64_t parentId) 2841 { 2842 mDefaultParentId = parentId; 2843 2844 if (!isActive()) 2845 { 2846 int rc = mpWindow->Reparent(parentId); 2847 if (!RT_SUCCESS(rc)) 2848 { 2849 WARN(("window reparent failed")); 2850 return rc; 2851 } 2852 } 2853 2854 return VINF_SUCCESS; 2855 } 2856 2834 2857 virtual int reparent(uint64_t parentId) 2835 2858 { … … 2840 2863 } 2841 2864 2842 int rc = mpWindow->Reparent(parentId); 2843 if (!RT_SUCCESS(rc)) 2844 WARN(("window reparent failed")); 2845 2846 mFlags.fNeForce = 1; 2865 mParentId = parentId; 2866 int rc = VINF_SUCCESS; 2867 2868 if (isActive()) 2869 { 2870 rc = mpWindow->Reparent(parentId); 2871 if (!RT_SUCCESS(rc)) 2872 WARN(("window reparent failed")); 2873 2874 mFlags.fNeForce = 1; 2875 } 2847 2876 2848 2877 return rc; … … 2969 2998 } 2970 2999 3000 bool isActive() 3001 { 3002 HCR_FRAMEBUFFER hFb = getFramebuffer(); 3003 return hFb && CrFbIsEnabled(hFb); 3004 } 3005 2971 3006 int windowDimensionsSync(bool fForceCleanup = false) 2972 3007 { 2973 3008 int rc = VINF_SUCCESS; 2974 3009 2975 HCR_FRAMEBUFFER hFb = getFramebuffer();2976 if (!fForceCleanup && hFb && CrFbIsEnabled(hFb))3010 // HCR_FRAMEBUFFER hFb = getFramebuffer(); 3011 if (!fForceCleanup && isActive()) 2977 3012 { 2978 3013 const RTRECT* pRect = getRect(); 3014 3015 if (mpWindow->GetParentId() != mParentId) 3016 { 3017 rc = mpWindow->Reparent(mParentId); 3018 if (!RT_SUCCESS(rc)) 3019 { 3020 WARN(("err")); 3021 return rc; 3022 } 3023 } 2979 3024 2980 3025 rc = mpWindow->SetPosition(pRect->xLeft - mViewportRect.xLeft, pRect->yTop - mViewportRect.yTop); … … 3004 3049 { 3005 3050 rc = mpWindow->SetVisible(false); 3051 if (!RT_SUCCESS(rc)) 3052 { 3053 WARN(("err")); 3054 return rc; 3055 } 3056 3057 rc = mpWindow->Reparent(mDefaultParentId); 3006 3058 if (!RT_SUCCESS(rc)) 3007 3059 { … … 3092 3144 CR_FBDISPWINDOW_FLAGS mFlags; 3093 3145 uint32_t mu32Screen; 3146 uint64_t mParentId; 3147 uint64_t mDefaultParentId; 3094 3148 }; 3095 3149 … … 3097 3151 { 3098 3152 public: 3099 CrFbDisplayWindowRootVr( CrFbWindow *pWindow, const RTRECT *pViewportRect) :3100 CrFbDisplayWindow(p Window, pViewportRect)3153 CrFbDisplayWindowRootVr(const RTRECT *pViewportRect, uint64_t parentId, uint64_t defaultParentId) : 3154 CrFbDisplayWindow(pViewportRect, parentId, defaultParentId) 3101 3155 { 3102 3156 CrVrScrCompositorInit(&mCompositor, NULL); … … 4114 4168 } 4115 4169 4116 CR_FBDISPLAY_INFO *pDpInfo = &g_CrPresenter.aDisplayInfos[idScreen]; 4170 int rc = VINF_SUCCESS; 4171 CR_FBDISPLAY_INFO *pDpInfo; 4172 bool fDefaultParentChange = (idScreen == 0); 4173 if (fDefaultParentChange) 4174 { 4175 for (int i = 0; i < cr_server.screenCount; ++i) 4176 { 4177 pDpInfo = &g_CrPresenter.aDisplayInfos[i]; 4178 if (pDpInfo->pDpWin) 4179 { 4180 HCR_FRAMEBUFFER hFb = pDpInfo->iFb >= 0 ? CrPMgrFbGet(pDpInfo->iFb) : NULL; 4181 rc = pDpInfo->pDpWin->UpdateBegin(hFb); 4182 if (RT_SUCCESS(rc)) 4183 { 4184 rc = pDpInfo->pDpWin->setDefaultParent(cr_server.screen[idScreen].winID); 4185 if (RT_FAILURE(rc)) 4186 { 4187 WARN(("setDefaultParent failed %d", rc)); 4188 pDpInfo->pDpWin->UpdateEnd(hFb); 4189 } 4190 } 4191 else 4192 WARN(("UpdateBegin failed %d", rc)); 4193 4194 if (RT_FAILURE(rc)) 4195 { 4196 WARN(("err")); 4197 for (int j = 0; j < i - 1; ++j) 4198 { 4199 pDpInfo = &g_CrPresenter.aDisplayInfos[j]; 4200 if (pDpInfo->pDpWin) 4201 { 4202 HCR_FRAMEBUFFER hFb = pDpInfo->iFb >= 0 ? CrPMgrFbGet(pDpInfo->iFb) : NULL; 4203 pDpInfo->pDpWin->UpdateEnd(hFb); 4204 } 4205 } 4206 4207 Assert(RT_FAILURE(rc)); 4208 return rc; 4209 } 4210 } 4211 } 4212 } 4213 4214 pDpInfo = &g_CrPresenter.aDisplayInfos[idScreen]; 4117 4215 if (pDpInfo->pDpWin) 4118 4216 { … … 4121 4219 { 4122 4220 WARN(("trying to update viewport while framebuffer is being updated")); 4123 return VERR_INVALID_STATE; 4124 } 4125 4126 int rc = pDpInfo->pDpWin->UpdateBegin(hFb); 4221 rc = VERR_INVALID_STATE; 4222 goto end; 4223 } 4224 4225 rc = pDpInfo->pDpWin->UpdateBegin(hFb); 4127 4226 if (RT_SUCCESS(rc)) 4128 4227 { … … 4135 4234 } 4136 4235 4137 return VINF_SUCCESS; 4236 end: 4237 4238 if (fDefaultParentChange) 4239 { 4240 for (int i = 0; i < cr_server.screenCount; ++i) 4241 { 4242 pDpInfo = &g_CrPresenter.aDisplayInfos[i]; 4243 if (pDpInfo->pDpWin) 4244 { 4245 HCR_FRAMEBUFFER hFb = pDpInfo->iFb >= 0 ? CrPMgrFbGet(pDpInfo->iFb) : NULL; 4246 pDpInfo->pDpWin->UpdateEnd(hFb); 4247 } 4248 } 4249 } 4250 4251 return rc; 4138 4252 } 4139 4253 … … 4316 4430 } 4317 4431 else 4318 pWin = new CrFbWindow( cr_server.screen[pDpInfo->u32Id].winID);4319 4320 pDpInfo->pDpWinRootVr = new CrFbDisplayWindowRootVr( pWin, &cr_server.screenVieport[pDpInfo->u32Id].Rect);4432 pWin = new CrFbWindow(0); 4433 4434 pDpInfo->pDpWinRootVr = new CrFbDisplayWindowRootVr(&cr_server.screenVieport[pDpInfo->u32Id].Rect, cr_server.screen[pDpInfo->u32Id].winID, cr_server.screen[0].winID); 4321 4435 pDpInfo->pDpWin = pDpInfo->pDpWinRootVr; 4436 pDpInfo->pDpWinRootVr->windowAttach(pWin); 4322 4437 } 4323 4438 } … … 4339 4454 { 4340 4455 if (!pWin) 4341 pWin = new CrFbWindow(cr_server.screen[pDpInfo->u32Id].winID); 4342 4343 pDpInfo->pDpWin = new CrFbDisplayWindow(pWin, &cr_server.screenVieport[pDpInfo->u32Id].Rect); 4456 pWin = new CrFbWindow(0); 4457 4458 pDpInfo->pDpWin = new CrFbDisplayWindow(&cr_server.screenVieport[pDpInfo->u32Id].Rect, cr_server.screen[pDpInfo->u32Id].winID, cr_server.screen[0].winID); 4459 pDpInfo->pDpWin->windowAttach(pWin); 4344 4460 } 4345 4461 } -
trunk/src/VBox/HostServices/SharedOpenGL/render/renderspu.c
r51975 r52368 758 758 visible = !!flag; 759 759 760 if (window->visible != visible)760 // if (window->visible != visible) 761 761 { 762 762 renderspu_SystemShowWindow( window, visible ); -
trunk/src/VBox/HostServices/SharedOpenGL/render/renderspu_cocoa_helper.m
r51975 r52368 376 376 - (void)makeCurrentFBO; 377 377 - (void)swapFBO; 378 - (void)vboxSubmitVisible:(GLboolean)fVisible; 379 - (void)vboxSetVisibleUI; 380 - (void)vboxSetHiddenUI; 378 381 - (void)vboxTryDraw; 379 382 - (void)vboxTryDrawUI; … … 1179 1182 /* issue to the gui thread */ 1180 1183 [self setNeedsDisplay:YES]; 1184 } 1185 1186 - (void)vboxSubmitVisible:(GLboolean)fVisible 1187 { 1188 if (fVisible) 1189 [self performSelectorOnMainThread:@selector(vboxSetVisibleUI) withObject:nil waitUntilDone:NO]; 1190 else 1191 [self performSelectorOnMainThread:@selector(vboxSetHiddenUI) withObject:nil waitUntilDone:NO]; 1192 } 1193 1194 - (void)vboxSetVisibleUI 1195 { 1196 [self setHidden: NO]; 1197 } 1198 1199 - (void)vboxSetHiddenUI 1200 { 1201 [self setHidden: YES]; 1181 1202 } 1182 1203 … … 1853 1874 NSAutoreleasePool *pPool = [[NSAutoreleasePool alloc] init]; 1854 1875 1855 [pView setHidden: fShowIt==GL_TRUE?NO:YES];1876 [pView vboxSubmitVisible:fShowIt]; 1856 1877 1857 1878 [pPool release];
Note:
See TracChangeset
for help on using the changeset viewer.