VirtualBox

Changeset 47158 in vbox


Ignore:
Timestamp:
Jul 15, 2013 12:37:15 PM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
87260
Message:

VRDP,Main,SharedOpenGL: enable 3d redirection if a RDP client connects

Location:
trunk/src/VBox
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostServices/SharedOpenGL/crserver/crservice.cpp

    r46783 r47158  
    12431243                else /* Execute the function. */
    12441244                {
    1245                     rc = crVBoxServerSetOffscreenRendering(GL_TRUE);
    1246 
    1247                     if (RT_SUCCESS(rc))
     1245                    if (pOutputRedirect->H3DORBegin != NULL)
    12481246                    {
    1249                         CROutputRedirect outputRedirect;
    1250                         outputRedirect.pvContext = pOutputRedirect->pvContext;
    1251                         outputRedirect.CRORBegin = pOutputRedirect->H3DORBegin;
    1252                         outputRedirect.CRORGeometry = pOutputRedirect->H3DORGeometry;
    1253                         outputRedirect.CRORVisibleRegion = pOutputRedirect->H3DORVisibleRegion;
    1254                         outputRedirect.CRORFrame = pOutputRedirect->H3DORFrame;
    1255                         outputRedirect.CROREnd = pOutputRedirect->H3DOREnd;
    1256                         outputRedirect.CRORContextProperty = pOutputRedirect->H3DORContextProperty;
    1257                         rc = crVBoxServerOutputRedirectSet(&outputRedirect);
     1247                        rc = crVBoxServerSetOffscreenRendering(GL_TRUE);
     1248
     1249                        if (RT_SUCCESS(rc))
     1250                        {
     1251                            CROutputRedirect outputRedirect;
     1252                            outputRedirect.pvContext = pOutputRedirect->pvContext;
     1253                            outputRedirect.CRORBegin = pOutputRedirect->H3DORBegin;
     1254                            outputRedirect.CRORGeometry = pOutputRedirect->H3DORGeometry;
     1255                            outputRedirect.CRORVisibleRegion = pOutputRedirect->H3DORVisibleRegion;
     1256                            outputRedirect.CRORFrame = pOutputRedirect->H3DORFrame;
     1257                            outputRedirect.CROREnd = pOutputRedirect->H3DOREnd;
     1258                            outputRedirect.CRORContextProperty = pOutputRedirect->H3DORContextProperty;
     1259                            rc = crVBoxServerOutputRedirectSet(&outputRedirect);
     1260                        }
     1261                    }
     1262                    else
     1263                    {
     1264                        /* Redirection is disabled. */
     1265                        crVBoxServerSetOffscreenRendering(GL_FALSE);
     1266                        crVBoxServerOutputRedirectSet(NULL);
    12581267                    }
    12591268                }
  • trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_main.c

    r47116 r47158  
    29412941}
    29422942
     2943static void crVBoxServerOutputRedirectCB(unsigned long key, void *data1, void *data2)
     2944{
     2945    CRMuralInfo *mural = (CRMuralInfo*) data1;
     2946
     2947    crServerSetupOutputRedirect(mural);
     2948}
     2949
    29432950DECLEXPORT(int32_t) crVBoxServerOutputRedirectSet(const CROutputRedirect *pCallbacks)
    29442951{
     
    29542961    }
    29552962
    2956     // @todo dynamically intercept already existing output:
    2957     // crHashtableWalk(cr_server.muralTable, crVBoxServerOutputRedirectCB, NULL);
     2963    /* dynamically intercept already existing output */
     2964    crHashtableWalk(cr_server.muralTable, crVBoxServerOutputRedirectCB, NULL);
    29582965
    29592966    return VINF_SUCCESS;
  • trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_muralfbo.c

    r47116 r47158  
    103103            cr_server.outputRedirect.CRORVisibleRegion(mural->pvOutputRedirectInstance,
    104104                                                       mural->cVisibleRects, (RTRECT *)mural->pVisibleRects);
     105
     106            crServerPresentFBO(mural);
    105107        }
    106108    }
  • trunk/src/VBox/Main/include/ConsoleVRDPServer.h

    r46097 r47158  
    248248    uint32_t volatile mu32AudioInputClientId;
    249249
     250    int32_t volatile mcClients;
     251
    250252    static DECLCALLBACK(void) H3DORBegin(const void *pvContext, void **ppvInstance,
    251253                                         const char *pszFormat);
     
    260262                                                   void *pvBuffer, uint32_t cbBuffer, uint32_t *pcbOut);
    261263
    262     void remote3DRedirect(void);
     264    void remote3DRedirect(bool fEnable);
    263265
    264266    /*
  • trunk/src/VBox/Main/src-client/ConsoleVRDPServer.cpp

    r47117 r47158  
    926926
    927927    server->mConsole->VRDPClientConnect(u32ClientId);
     928
     929    /* Should the server report usage of an interface for each client?
     930     * Similar to Intercept.
     931     */
     932    int c = ASMAtomicIncS32(&server->mcClients);
     933    if (c == 1)
     934    {
     935        /* Features which should be enabled only if there is a client. */
     936        server->remote3DRedirect(true);
     937    }
    928938}
    929939
     
    948958            AssertFailed();
    949959        }
     960    }
     961
     962    int c = ASMAtomicDecS32(&server->mcClients);
     963    if (c == 0)
     964    {
     965        /* Features which should be enabled only if there is a client. */
     966        server->remote3DRedirect(false);
    950967    }
    951968}
     
    13721389
    13731390    mu32AudioInputClientId = 0;
     1391    mcClients = 0;
    13741392
    13751393    /*
     
    19962014}
    19972015
    1998 void ConsoleVRDPServer::remote3DRedirect(void)
     2016void ConsoleVRDPServer::remote3DRedirect(bool fEnable)
    19992017{
    20002018    if (!m_fInterfaceImage)
     
    20042022    }
    20052023
    2006     /* Check if 3D redirection has been enabled. */
     2024    /* Check if 3D redirection has been enabled. It is enabled by default. */
    20072025    com::Bstr bstr;
    20082026    HRESULT hrc = mConsole->getVRDEServer()->GetVRDEProperty(Bstr("H3DRedirect/Enabled").raw(), bstr.asOutParam());
    20092027
    2010     if (hrc != S_OK)
    2011     {
    2012         bstr = "";
    2013     }
    2014 
    2015     com::Utf8Str value = bstr;
    2016 
    2017     bool fEnabled =    RTStrICmp(value.c_str(), "true") == 0
    2018                     || RTStrICmp(value.c_str(), "1") == 0;
    2019 
    2020     if (!fEnabled)
     2028    com::Utf8Str value = hrc == S_OK? bstr: "";
     2029
     2030    bool fAllowed =    RTStrICmp(value.c_str(), "true") == 0
     2031                    || RTStrICmp(value.c_str(), "1") == 0
     2032                    || value.c_str()[0] == 0;
     2033
     2034    if (!fAllowed && fEnable)
    20212035    {
    20222036        return;
     
    20352049    };
    20362050
     2051    if (!fEnable)
     2052    {
     2053        /* This will tell the service to disable rediection. */
     2054        RT_ZERO(outputRedirect);
     2055    }
     2056
    20372057    VBOXHGCMSVCPARM parm;
    20382058
     
    20602080    }
    20612081
    2062     LogRel(("VRDE: Enabled 3D redirect.\n"));
     2082    LogRel(("VRDE: %s 3D redirect.\n", fEnable? "Enabled": "Disabled"));
    20632083
    20642084    return;
     
    27462766    {
    27472767        mpEntryPoints->VRDEEnableConnections(mhServer, true);
    2748 
    2749         /* Redirect 3D output if it is enabled. */
    2750         remote3DRedirect();
    27512768
    27522769        /* Setup the generic TSMF channel. */
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