VirtualBox

Ignore:
Timestamp:
Aug 13, 2014 3:08:02 PM (11 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
95508
Message:

crOpenGL: fix white window on fullscreen enter

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/src/VBox

  • trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_presenter.cpp

    r52329 r52368  
    23592359
    23602360            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            }
    23652366        }
    23662367
     
    23822383            mFlags.fVisible = fVisible;
    23832384            if (mSpuWindow && mParentId)
     2385            {
     2386                if (fVisible)
     2387                    cr_server.head_spu->dispatch_table.WindowPosition(mSpuWindow, mxPos, myPos);
    23842388                cr_server.head_spu->dispatch_table.WindowShow(mSpuWindow, fVisible);
     2389            }
    23852390        }
    23862391
     
    26272632{
    26282633public:
    2629     CrFbDisplayWindow(CrFbWindow *pWindow, const RTRECT *pViewportRect) :
    2630         mpWindow(pWindow),
     2634    CrFbDisplayWindow(const RTRECT *pViewportRect, uint64_t parentId, uint64_t defaultParentId) :
     2635        mpWindow(NULL),
    26312636        mViewportRect(*pViewportRect),
    2632         mu32Screen(~0)
     2637        mu32Screen(~0),
     2638        mParentId(parentId),
     2639        mDefaultParentId(defaultParentId)
    26332640    {
    26342641        mFlags.u32Value = 0;
    2635         CRASSERT(pWindow);
    26362642    }
    26372643
     
    28322838    }
    28332839
     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
    28342857    virtual int reparent(uint64_t parentId)
    28352858    {
     
    28402863        }
    28412864
    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        }
    28472876
    28482877        return rc;
     
    29692998    }
    29702999
     3000    bool isActive()
     3001    {
     3002        HCR_FRAMEBUFFER hFb = getFramebuffer();
     3003        return hFb && CrFbIsEnabled(hFb);
     3004    }
     3005
    29713006    int windowDimensionsSync(bool fForceCleanup = false)
    29723007    {
    29733008        int rc = VINF_SUCCESS;
    29743009
    2975         HCR_FRAMEBUFFER hFb = getFramebuffer();
    2976         if (!fForceCleanup && hFb && CrFbIsEnabled(hFb))
     3010//        HCR_FRAMEBUFFER hFb = getFramebuffer();
     3011        if (!fForceCleanup && isActive())
    29773012        {
    29783013            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            }
    29793024
    29803025            rc = mpWindow->SetPosition(pRect->xLeft - mViewportRect.xLeft, pRect->yTop - mViewportRect.yTop);
     
    30043049        {
    30053050            rc = mpWindow->SetVisible(false);
     3051            if (!RT_SUCCESS(rc))
     3052            {
     3053                WARN(("err"));
     3054                return rc;
     3055            }
     3056
     3057            rc = mpWindow->Reparent(mDefaultParentId);
    30063058            if (!RT_SUCCESS(rc))
    30073059            {
     
    30923144    CR_FBDISPWINDOW_FLAGS mFlags;
    30933145    uint32_t mu32Screen;
     3146    uint64_t mParentId;
     3147    uint64_t mDefaultParentId;
    30943148};
    30953149
     
    30973151{
    30983152public:
    3099     CrFbDisplayWindowRootVr(CrFbWindow *pWindow, const RTRECT *pViewportRect) :
    3100         CrFbDisplayWindow(pWindow, pViewportRect)
     3153    CrFbDisplayWindowRootVr(const RTRECT *pViewportRect, uint64_t parentId, uint64_t defaultParentId) :
     3154        CrFbDisplayWindow(pViewportRect, parentId, defaultParentId)
    31013155    {
    31023156        CrVrScrCompositorInit(&mCompositor, NULL);
     
    41144168    }
    41154169
    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];
    41174215    if (pDpInfo->pDpWin)
    41184216    {
     
    41214219        {
    41224220            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);
    41274226        if (RT_SUCCESS(rc))
    41284227        {
     
    41354234    }
    41364235
    4137     return VINF_SUCCESS;
     4236end:
     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;
    41384252}
    41394253
     
    43164430        }
    43174431        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);
    43214435        pDpInfo->pDpWin = pDpInfo->pDpWinRootVr;
     4436        pDpInfo->pDpWinRootVr->windowAttach(pWin);
    43224437    }
    43234438}
     
    43394454    {
    43404455        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);
    43444460    }
    43454461}
  • trunk/src/VBox/HostServices/SharedOpenGL/render/renderspu.c

    r51975 r52368  
    758758        visible = !!flag;
    759759       
    760         if (window->visible != visible)
     760//        if (window->visible != visible)
    761761        {
    762762            renderspu_SystemShowWindow( window, visible );
  • trunk/src/VBox/HostServices/SharedOpenGL/render/renderspu_cocoa_helper.m

    r51975 r52368  
    376376- (void)makeCurrentFBO;
    377377- (void)swapFBO;
     378- (void)vboxSubmitVisible:(GLboolean)fVisible;
     379- (void)vboxSetVisibleUI;
     380- (void)vboxSetHiddenUI;
    378381- (void)vboxTryDraw;
    379382- (void)vboxTryDrawUI;
     
    11791182    /* issue to the gui thread */
    11801183    [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];
    11811202}
    11821203
     
    18531874    NSAutoreleasePool *pPool = [[NSAutoreleasePool alloc] init];
    18541875
    1855     [pView setHidden: fShowIt==GL_TRUE?NO:YES];
     1876    [pView vboxSubmitVisible:fShowIt];
    18561877
    18571878    [pPool release];
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette