Changeset 45148 in vbox for trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_window.c
- Timestamp:
- Mar 22, 2013 9:28:29 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 84467
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_window.c
r45132 r45148 466 466 467 467 /* 1. tell renderspu to stop using the current compositor (see above comment) */ 468 crServerVBoxCompositionDisable (mural);468 crServerVBoxCompositionDisableEnter(mural); 469 469 470 470 /* 2. do necessary modifications (see above comment) */ … … 495 495 mural->height = height; 496 496 497 mural->fDataPresented = GL_FALSE; 498 497 499 if (cr_server.currentMural == mural) 498 500 { … … 564 566 /* uncomment when needed */ 565 567 /* NOTE: !!! we have mural->fHasPresentationData set to GL_FALSE above, so crServerVBoxCompositionReenable will have no effect in any way 566 crServerVBoxCompositionReenable(mural); 568 567 569 */ 570 crServerVBoxCompositionDisableLeave(mural, GL_FALSE); 568 571 } 569 572 } … … 615 618 616 619 /* 1. tell renderspu to stop using the current compositor (see above comment) */ 617 crServerVBoxCompositionDisable (mural);620 crServerVBoxCompositionDisableEnter(mural); 618 621 619 622 /* 2. do necessary modifications (see above comment) */ … … 663 666 664 667 /* 3. re-set the compositor (see above comment) */ 665 crServerVBoxComposition Reenable(mural, fForcePresent);668 crServerVBoxCompositionDisableLeave(mural, fForcePresent); 666 669 } 667 670 } … … 690 693 691 694 /* 1. tell renderspu to stop using the current compositor (see above comment) */ 692 crServerVBoxCompositionDisable (mural);695 crServerVBoxCompositionDisableEnter(mural); 693 696 694 697 /* 2. do necessary modifications (see above comment) */ … … 769 772 770 773 /* 3. re-set the compositor (see above comment) */ 771 crServerVBoxComposition Reenable(mural, fForcePresent);774 crServerVBoxCompositionDisableLeave(mural, fForcePresent); 772 775 } 773 776
Note:
See TracChangeset
for help on using the changeset viewer.