Changeset 47158 in vbox
- Timestamp:
- Jul 15, 2013 12:37:15 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 87260
- Location:
- trunk/src/VBox
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/crserver/crservice.cpp
r46783 r47158 1243 1243 else /* Execute the function. */ 1244 1244 { 1245 rc = crVBoxServerSetOffscreenRendering(GL_TRUE); 1246 1247 if (RT_SUCCESS(rc)) 1245 if (pOutputRedirect->H3DORBegin != NULL) 1248 1246 { 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); 1258 1267 } 1259 1268 } -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_main.c
r47116 r47158 2941 2941 } 2942 2942 2943 static void crVBoxServerOutputRedirectCB(unsigned long key, void *data1, void *data2) 2944 { 2945 CRMuralInfo *mural = (CRMuralInfo*) data1; 2946 2947 crServerSetupOutputRedirect(mural); 2948 } 2949 2943 2950 DECLEXPORT(int32_t) crVBoxServerOutputRedirectSet(const CROutputRedirect *pCallbacks) 2944 2951 { … … 2954 2961 } 2955 2962 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); 2958 2965 2959 2966 return VINF_SUCCESS; -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_muralfbo.c
r47116 r47158 103 103 cr_server.outputRedirect.CRORVisibleRegion(mural->pvOutputRedirectInstance, 104 104 mural->cVisibleRects, (RTRECT *)mural->pVisibleRects); 105 106 crServerPresentFBO(mural); 105 107 } 106 108 } -
trunk/src/VBox/Main/include/ConsoleVRDPServer.h
r46097 r47158 248 248 uint32_t volatile mu32AudioInputClientId; 249 249 250 int32_t volatile mcClients; 251 250 252 static DECLCALLBACK(void) H3DORBegin(const void *pvContext, void **ppvInstance, 251 253 const char *pszFormat); … … 260 262 void *pvBuffer, uint32_t cbBuffer, uint32_t *pcbOut); 261 263 262 void remote3DRedirect( void);264 void remote3DRedirect(bool fEnable); 263 265 264 266 /* -
trunk/src/VBox/Main/src-client/ConsoleVRDPServer.cpp
r47117 r47158 926 926 927 927 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 } 928 938 } 929 939 … … 948 958 AssertFailed(); 949 959 } 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); 950 967 } 951 968 } … … 1372 1389 1373 1390 mu32AudioInputClientId = 0; 1391 mcClients = 0; 1374 1392 1375 1393 /* … … 1996 2014 } 1997 2015 1998 void ConsoleVRDPServer::remote3DRedirect( void)2016 void ConsoleVRDPServer::remote3DRedirect(bool fEnable) 1999 2017 { 2000 2018 if (!m_fInterfaceImage) … … 2004 2022 } 2005 2023 2006 /* Check if 3D redirection has been enabled. */2024 /* Check if 3D redirection has been enabled. It is enabled by default. */ 2007 2025 com::Bstr bstr; 2008 2026 HRESULT hrc = mConsole->getVRDEServer()->GetVRDEProperty(Bstr("H3DRedirect/Enabled").raw(), bstr.asOutParam()); 2009 2027 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) 2021 2035 { 2022 2036 return; … … 2035 2049 }; 2036 2050 2051 if (!fEnable) 2052 { 2053 /* This will tell the service to disable rediection. */ 2054 RT_ZERO(outputRedirect); 2055 } 2056 2037 2057 VBOXHGCMSVCPARM parm; 2038 2058 … … 2060 2080 } 2061 2081 2062 LogRel(("VRDE: Enabled 3D redirect.\n"));2082 LogRel(("VRDE: %s 3D redirect.\n", fEnable? "Enabled": "Disabled")); 2063 2083 2064 2084 return; … … 2746 2766 { 2747 2767 mpEntryPoints->VRDEEnableConnections(mhServer, true); 2748 2749 /* Redirect 3D output if it is enabled. */2750 remote3DRedirect();2751 2768 2752 2769 /* Setup the generic TSMF channel. */
Note:
See TracChangeset
for help on using the changeset viewer.