Changeset 33540 in vbox for trunk/src/VBox/HostServices
- Timestamp:
- Oct 28, 2010 9:27:05 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 67140
- Location:
- trunk/src/VBox/HostServices
- Files:
-
- 25 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/GuestControl/gctrl.cpp
r31847 r33540 58 58 * 59 59 * @todo Respect spaces when quoting for arguments, e.g. "c:\\program files\\". 60 * @todo Handle empty ("") arg guments.60 * @todo Handle empty ("") arguments. 61 61 */ 62 62 int gctrlPrepareExecArgv(char *pszArgs, void **ppvList, uint32_t *pcbList, uint32_t *pcArgs) -
trunk/src/VBox/HostServices/GuestControl/service.cpp
r33247 r33540 42 42 * to return until a new command is available). 43 43 * 44 * If a client needs to inform the host that something happen d, it can send a44 * If a client needs to inform the host that something happened, it can send a 45 45 * message to a low level HGCM callback registered in Main. This callback contains 46 46 * the actual data as well as the context ID to let the host do the next necessary … … 81 81 * Structure for holding all clients with their 82 82 * generated host contexts. This is necessary for 83 * maint ing the relationship between a client and its context IDs.83 * maintaining the relationship between a client and its context IDs. 84 84 */ 85 85 struct ClientContexts … … 90 90 std::list< uint32_t > mContextList; 91 91 92 /** The normal con tructor. */92 /** The normal constructor. */ 93 93 ClientContexts(uint32_t aClientID) 94 94 : mClientID(aClientID) {} … … 113 113 uint32_t mNumParms; 114 114 115 /** The standard con tructor. */115 /** The standard constructor. */ 116 116 ClientWaiter() : mClientID(0), mHandle(0), mParms(NULL), mNumParms(0) {} 117 /** The normal con tructor. */117 /** The normal constructor. */ 118 118 ClientWaiter(uint32_t aClientID, VBOXHGCMCALLHANDLE aHandle, 119 119 VBOXHGCMSVCPARM aParms[], uint32_t cParms) … … 136 136 VBOXGUESTCTRPARAMBUFFER mParmBuf; 137 137 138 /** The standard con tructor. */138 /** The standard constructor. */ 139 139 HostCmd() : mContextID(0) {} 140 140 }; … … 737 737 { 738 738 /* 739 * The guest asks the host for the next mess sage to process.739 * The guest asks the host for the next message to process. 740 740 */ 741 741 case GUEST_GET_HOST_MSG: … … 879 879 { 880 880 std::auto_ptr<Service> apService; 881 /* No exceptions may prop ogate outside. */881 /* No exceptions may propagate outside. */ 882 882 try { 883 883 apService = std::auto_ptr<Service>(new Service(ptable->pHelpers)); -
trunk/src/VBox/HostServices/GuestProperties/service.cpp
r30681 r33540 135 135 /** The standard constructor */ 136 136 GuestCall() : mFunction(0) {} 137 /** The normal con tructor */137 /** The normal constructor */ 138 138 GuestCall(VBOXHGCMCALLHANDLE aHandle, uint32_t aFunction, 139 139 VBOXHGCMSVCPARM aParms[], int aRc) … … 1288 1288 { 1289 1289 std::auto_ptr<Service> apService; 1290 /* No exceptions may prop ogate outside. */1290 /* No exceptions may propagate outside. */ 1291 1291 try { 1292 1292 apService = std::auto_ptr<Service>(new Service(ptable->pHelpers)); -
trunk/src/VBox/HostServices/GuestProperties/testcase/tstGuestPropSvc.cpp
r29394 r33540 601 601 /** What size should the value/flags array be? */ 602 602 uint32_t cchValue; 603 /** Should this pro eprty exist? */603 /** Should this property exist? */ 604 604 bool exists; 605 605 /** Do we expect a particular timestamp? */ … … 779 779 } 780 780 781 /** Param ters for the asynchronous guest notification call */781 /** Parameters for the asynchronous guest notification call */ 782 782 struct asyncNotification_ 783 783 { -
trunk/src/VBox/HostServices/SharedClipboard/VBoxClipboard-win.cpp
r32333 r33540 413 413 414 414 /* Do nothing. The clipboard formats will be unavailable now, because the 415 * windows is to be destroyed and therefore the guest side bec ames inactive.415 * windows is to be destroyed and therefore the guest side becomes inactive. 416 416 */ 417 417 if (OpenClipboard (hwnd)) … … 626 626 pClient->pCtx->pClient = pClient; 627 627 628 /* Sync hthe host clipboard content with the client. */628 /* Sync the host clipboard content with the client. */ 629 629 vboxClipboardSync (pClient); 630 630 … … 634 634 int vboxClipboardSync (VBOXCLIPBOARDCLIENTDATA *pClient) 635 635 { 636 /* Sync hthe host clipboard content with the client. */636 /* Sync the host clipboard content with the client. */ 637 637 vboxClipboardChanged (pClient->pCtx); 638 638 -
trunk/src/VBox/HostServices/SharedClipboard/darwin.cpp
r28800 r33540 211 211 if (u32Formats == 0) 212 212 { 213 /* This is just an automatism, not a genuine an ouncement */213 /* This is just an automatism, not a genuine announcement */ 214 214 return; 215 215 } -
trunk/src/VBox/HostServices/SharedClipboard/service.cpp
r28800 r33540 22 22 * The shared clipboard host service provides a proxy between the host's 23 23 * clipboard and a similar proxy running on a guest. The service is split 24 * into a platform-independ ant core and platform-specific backends. The24 * into a platform-independent core and platform-specific backends. The 25 25 * service defines two communication protocols - one to communicate with the 26 26 * clipboard service running on the guest, and one to communicate with the … … 250 250 if (pClient->fAsync) 251 251 { 252 /* The client waits for a respon ce. */252 /* The client waits for a response. */ 253 253 bool fMessageReturned = vboxSvcClipboardReturnMsg (pClient, pClient->async.paParms); 254 254 … … 258 258 if (fMessageReturned) 259 259 { 260 /* There is a respon ce. */260 /* There is a response. */ 261 261 pClient->fAsync = false; 262 262 } -
trunk/src/VBox/HostServices/SharedClipboard/x11-clipboard.cpp
r28800 r33540 342 342 * 343 343 * @param pCtx Pointer to the host clipboard structure 344 * @param u32Format The format in which the data should be transfer ed344 * @param u32Format The format in which the data should be transferred 345 345 * @param ppv On success and if pcb > 0, this will point to a buffer 346 346 * to be freed with RTMemFree containing the data read. -
trunk/src/VBox/HostServices/SharedFolders/service.cpp
r33439 r33540 54 54 * 55 55 * Guest may use any of these mappings. Full path information 56 * about an object on a mapping consists of the root i ndentifier and56 * about an object on a mapping consists of the root identifier and 57 57 * a full path of object. 58 58 * -
trunk/src/VBox/HostServices/SharedFolders/testcase/tstShflSizes.cpp
r28800 r33540 65 65 * The host VMMDev device takes care about this. 66 66 * 67 * Therefore this testcase verifies whether structure sizes are correct for the curre bt ARCH_BITS.67 * Therefore this testcase verifies whether structure sizes are correct for the current ARCH_BITS. 68 68 */ 69 69 # if ARCH_BITS == 64 -
trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp
r33439 r33540 313 313 #ifdef RT_OS_DARWIN 314 314 /** @todo This belongs in rtPathToNative or in the windows shared folder file system driver... 315 * The question is simply whether the NFD normalization is actually applied on a (virt aul) file315 * The question is simply whether the NFD normalization is actually applied on a (virtual) file 316 316 * system level in darwin, or just by the user mode application libs. */ 317 317 SHFLSTRING *pPathParameter = pPath; … … 605 605 * @returns iprt status code 606 606 * @param fShflFlags shared folder create flags 607 * @param fMode file att ibutes607 * @param fMode file attributes 608 608 * @retval pfOpen iprt create flags 609 609 */ … … 1597 1597 #ifdef RT_OS_DARWIN 1598 1598 /** @todo This belongs in rtPathToNative or in the windows shared folder file system driver... 1599 * The question is simply whether the NFD normalization is actually applied on a (virt aul) file1599 * The question is simply whether the NFD normalization is actually applied on a (virtual) file 1600 1600 * system level in darwin, or just by the user mode application libs. */ 1601 1601 { -
trunk/src/VBox/HostServices/SharedOpenGL/crserver/crservice.cpp
r33319 r33540 204 204 LogRel(("SHARED_CROPENGL: unsupported client version %d.%d\n", minor, major)); 205 205 206 /*MS's opengl32 tr yes to load our ICD around 30 times on failure...this is to prevent unnecessary spam*/206 /*MS's opengl32 tries to load our ICD around 30 times on failure...this is to prevent unnecessary spam*/ 207 207 static int shown = 0; 208 208 -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_clip.c
r15532 r33540 157 157 /* 158 158 * First, compute normals for the clip poly. This 159 * breaks for multiple (3+) adjacent colinear vertic ies159 * breaks for multiple (3+) adjacent colinear vertices 160 160 */ 161 161 clip_normals = (double *)crAlloc(nclip_to_vert*2*sizeof(double)); … … 307 307 } 308 308 309 /* can't sub ract something from nothing! */309 /* can't subtract something from nothing! */ 310 310 if (got_intr) 311 311 *head = intr; … … 382 382 /* 383 383 * Here we generate all valid bitmaps to represent union/difference 384 * co nbinations. Each bitmap is N elements long, where N is the384 * combinations. Each bitmap is N elements long, where N is the 385 385 * number of polys [quads] that we are testing for overlap 386 386 */ … … 451 451 * In the map, 1 == union, 0 == difference 452 452 * 453 * (*res)[a] is the head of a poly list for all the polys that conver 453 * (*res)[a] is the head of a poly list for all the polys that convert 454 454 * regions of overlap between a+1 polys ((*res)[0] == NULL) 455 455 */ -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_getteximage.c
r32240 r33540 25 25 GLvoid *pbo_offset; 26 26 27 /*pixels are actual y a pointer to location of 8byte network pointer in hgcm buffer28 regar less of guest/host bitness we're using only 4lower bytes as there're no27 /*pixels are actually a pointer to location of 8byte network pointer in hgcm buffer 28 regardless of guest/host bitness we're using only 4lower bytes as there're no 29 29 pbo>4gb (yet?) 30 30 */ -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_glsl.c
r31808 r33540 2 2 3 3 /** @file 4 * VBox OpenGL: GLSL related fu cntions4 * VBox OpenGL: GLSL related functions 5 5 */ 6 6 -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_lists.c
r32255 r33540 23 23 * By zeroing the 'shared_display_lists' configuration option, we can tell 24 24 * the server to make list K be unique for all N clients. We do this by 25 * translating K into a new, unique ID depend ant on which client we're25 * translating K into a new, unique ID dependent on which client we're 26 26 * talking to (curClient->number). 27 27 * -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_main.c
r33319 r33540 677 677 g_hackVBoxServerSaveLoadCallsLeft--; 678 678 679 /* Do nothing until lwe're being called last time */679 /* Do nothing until we're being called last time */ 680 680 if (g_hackVBoxServerSaveLoadCallsLeft>0) 681 681 { … … 795 795 g_hackVBoxServerSaveLoadCallsLeft--; 796 796 797 /* Do nothing until lwe're being called last time */797 /* Do nothing until we're being called last time */ 798 798 if (g_hackVBoxServerSaveLoadCallsLeft>0) 799 799 { -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_projmatrix.c
r27889 r33540 21 21 22 22 /* 23 * Determine which view and projection matrices to use when in stere mode.23 * Determine which view and projection matrices to use when in stereo mode. 24 24 * Return 0 = left eye, 1 = right eye. 25 25 */ … … 142 142 * If you're not using Cg, you may have to tell Chromium which program 143 143 * parameters contain the projection matrix. 144 * In this case, look at the OpenGL appli ation's vertex program code to144 * In this case, look at the OpenGL application's vertex program code to 145 145 * determine which program parameters contain the projection matrix. 146 146 * Then set the crserver's 'vertprog_projection_param' config option to -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_readpixels.c
r27983 r33540 36 36 GLvoid *pbo_offset; 37 37 38 /*pixels are actual y a pointer to location of 8byte network pointer in hgcm buffer39 regar less of guest/host bitness we're using only 4lower bytes as there're no38 /*pixels are actually a pointer to location of 8byte network pointer in hgcm buffer 39 regardless of guest/host bitness we're using only 4lower bytes as there're no 40 40 pbo>4gb (yet?) 41 41 */ -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_viewport.c
r27889 r33540 147 147 p.y2 = (GLfloat) (extent->clippedImagewindow.y2 - vpy) / vph; 148 148 149 /* XXX not sure this clamping is really nee ed anymore149 /* XXX not sure this clamping is really need anymore 150 150 */ 151 151 if (p.x1 < 0.0) { -
trunk/src/VBox/HostServices/SharedOpenGL/render/renderspu_agl.c
r28279 r33540 781 781 window->y + window->height); 782 782 SectRgn(render_spu.hRootVisibleRegion, rgn, rgn); 783 /* Because the clipping is done in the coo dinate space of the OpenGL783 /* Because the clipping is done in the coordinate space of the OpenGL 784 784 * window we have to remove the x/y position from the newly created 785 785 * region. */ -
trunk/src/VBox/HostServices/SharedOpenGL/render/renderspu_cocoa.c
r30126 r33540 119 119 #endif /* __LP64__ */ 120 120 121 /*pParentWin is unused in the call, o verwise it might hold incorrect value if for ex. last reparent call was for121 /*pParentWin is unused in the call, otherwise it might hold incorrect value if for ex. last reparent call was for 122 122 a different screen*/ 123 123 cocoaViewSetPosition(pWinInfo->window, pParentWin, x, y); -
trunk/src/VBox/HostServices/SharedOpenGL/render/renderspu_cocoa_helper.m
r30126 r33540 861 861 glFramebufferRenderbufferEXT(GL_FRAMEBUFFER_EXT, GL_STENCIL_ATTACHMENT_EXT, GL_RENDERBUFFER_EXT, m_FBODepthStencilPackedId); 862 862 863 /* Make sure the FBO was created succes fully. */863 /* Make sure the FBO was created successfully. */ 864 864 if (GL_FRAMEBUFFER_COMPLETE_EXT != glCheckFramebufferStatusEXT(GL_FRAMEBUFFER_EXT)) 865 865 DEBUG_MSG(("Framebuffer Object creation or update failed!\n")); … … 894 894 glFramebufferTexture2DEXT(GL_FRAMEBUFFER_EXT, GL_COLOR_ATTACHMENT0_EXT, GL_TEXTURE_RECTANGLE_ARB, m_FBOThumbTexId, 0); 895 895 896 /* Make sure the FBO was created succes fully. */896 /* Make sure the FBO was created successfully. */ 897 897 if (GL_FRAMEBUFFER_COMPLETE_EXT != glCheckFramebufferStatusEXT(GL_FRAMEBUFFER_EXT)) 898 898 DEBUG_MSG(("Framebuffer Thumb Object creation or update failed!\n")); -
trunk/src/VBox/HostServices/SharedOpenGL/render/renderspu_glx.c
r32161 r33540 388 388 GLX_DOUBLEBUFFER, &db); 389 389 if ((visAttribs & CR_DOUBLE_BIT) == 0 && db) { 390 /* omit fbconfig with un eeded DB */390 /* omit fbconfig with unneeded DB */ 391 391 continue; 392 392 } -
trunk/src/VBox/HostServices/SharedOpenGL/render/renderspu_init.c
r29930 r33540 219 219 render_spu.currentBufferName = 1; 220 220 render_spu.uiDockUpdateTS = 0; 221 /* Create a mutex for sync ronizing events from the main Qt thread & this221 /* Create a mutex for synchronizing events from the main Qt thread & this 222 222 thread */ 223 223 RTSemFastMutexCreate(&render_spu.syncMutex); … … 285 285 * So we do them here for now. 286 286 * Grrr, NVIDIA driver uses EXT for GetExtensionsStringEXT, 287 * but ARB for others. Need furth ur testing here....287 * but ARB for others. Need further testing here.... 288 288 */ 289 289 render_spu.ws.wglGetExtensionsStringEXT =
Note:
See TracChangeset
for help on using the changeset viewer.