Changeset 71626 in vbox for trunk/include
- Timestamp:
- Apr 2, 2018 9:12:58 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 121653
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmifs.h
r71619 r71626 843 843 * @param pInterface Pointer to this interface. 844 844 * @param enmCmd The command type (don't re-read from pCmd). 845 * @param fGuestCmd Set if the command origins with the guest and 846 * pCmd must be considered volatile. 845 847 * @param pCmd Video HW Acceleration Command to be processed. 846 * @returns VINF_SUCCESS - command is completed, 847 * VINF_CALLBACK_RETURN - command will by asynchronously completed via complete callback 848 * VERR_INVALID_STATE - the command could not be processed (most likely because the framebuffer was disconnected) - the post should be retried later 849 * @thread The emulation thread. 850 */ 851 DECLR3CALLBACKMEMBER(int, pfnVHWACommandProcess,(PPDMIDISPLAYCONNECTOR pInterface, int enmCmd, 848 * @retval VINF_SUCCESS - command is completed, 849 * @retval VINF_CALLBACK_RETURN if command will by asynchronously completed via 850 * complete callback. 851 * @retval VERR_INVALID_STATE if the command could not be processed (most 852 * likely because the framebuffer was disconnected) - the post should 853 * be retried later. 854 * @thread EMT 855 */ 856 DECLR3CALLBACKMEMBER(int, pfnVHWACommandProcess,(PPDMIDISPLAYCONNECTOR pInterface, int enmCmd, bool fGuestCmd, 852 857 VBOXVHWACMD RT_UNTRUSTED_VOLATILE_GUEST *pCmd)); 853 858 … … 857 862 * @param pInterface Pointer to this interface. 858 863 * @param pCmd Video HW Acceleration Command to be processed. 859 * @thread The emulation thread.864 * @thread EMT 860 865 */ 861 866 DECLR3CALLBACKMEMBER(void, pfnCrHgsmiCommandProcess,(PPDMIDISPLAYCONNECTOR pInterface, … … 868 873 * @param pInterface Pointer to this interface. 869 874 * @param pCmd Video HW Acceleration Command to be processed. 870 * @thread The emulation thread.875 * @thread EMT 871 876 */ 872 877 DECLR3CALLBACKMEMBER(void, pfnCrHgsmiControlProcess,(PPDMIDISPLAYCONNECTOR pInterface, … … 882 887 * @param pfnCompletion Undocumented! 883 888 * @param pvCompletion Undocumented! 884 * @thread The emulation thread.889 * @thread EMT 885 890 */ 886 891 DECLR3CALLBACKMEMBER(int, pfnCrHgcmCtlSubmit,(PPDMIDISPLAYCONNECTOR pInterface, struct VBOXCRCMDCTL *pCmd, uint32_t cbCmd,
Note:
See TracChangeset
for help on using the changeset viewer.