VirtualBox

source: vbox/trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibVideo.cpp@ 8455

Last change on this file since 8455 was 8425, checked in by vboxsync, 17 years ago

Frontends/VirtualBox3/4, Main, Devices/VMMDev, Frontends/VBoxBFE, Additions/common, Additions/x11: reverted r30152, r30085, r30074 and r30072

  • Property svn:eol-style set to native
File size: 7.7 KB
Line 
1/* $Id$ */
2/** @file
3 * VBoxGuestR3Lib - Ring-3 Support Library for VirtualBox guest additions, Video.
4 */
5
6/*
7 * Copyright (C) 2007 Sun Microsystems, Inc.
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22
23/*******************************************************************************
24* Header Files *
25*******************************************************************************/
26#include <iprt/string.h>
27#include <iprt/mem.h>
28#include <iprt/assert.h>
29#include <VBox/log.h>
30
31#include "VBGLR3Internal.h"
32
33
34/**
35 * Enable or disable video acceleration.
36 *
37 * @returns VBox status code.
38 *
39 * @param fEnable Pass zero to disable, any other value to enable.
40 */
41VBGLR3DECL(int) VbglR3VideoAccelEnable(bool fEnable)
42{
43 VMMDevVideoAccelEnable Req;
44 vmmdevInitRequest(&Req.header, VMMDevReq_VideoAccelEnable);
45 Req.u32Enable = fEnable;
46 Req.cbRingBuffer = VBVA_RING_BUFFER_SIZE;
47 Req.fu32Status = 0;
48 return vbglR3GRPerform(&Req.header);
49}
50
51
52/**
53 * Flush the video buffer.
54 *
55 * @returns VBox status code.
56 */
57VBGLR3DECL(int) VbglR3VideoAccelFlush(void)
58{
59 VMMDevVideoAccelFlush Req;
60 vmmdevInitRequest(&Req.header, VMMDevReq_VideoAccelFlush);
61 return vbglR3GRPerform(&Req.header);
62}
63
64
65/**
66 * Send mouse pointer shape information to the host.
67 *
68 * @returns VBox status code.
69 *
70 * @param fFlags Mouse pointer flags.
71 * @param xHot X coordinate of hot spot.
72 * @param yHot Y coordinate of hot spot.
73 * @param cx Pointer width.
74 * @param cy Pointer height.
75 * @param pvImg Pointer to the image data (can be NULL).
76 * @param cbImg Size of the image data pointed to by pvImg.
77 */
78VBGLR3DECL(int) VbglR3SetPointerShape(uint32_t fFlags, uint32_t xHot, uint32_t yHot, uint32_t cx, uint32_t cy, const void *pvImg, size_t cbImg)
79{
80 VMMDevReqMousePointer *pReq;
81 int rc = vbglR3GRAlloc((VMMDevRequestHeader **)&pReq, RT_OFFSETOF(VMMDevReqMousePointer, pointerData) + cbImg, VMMDevReq_SetPointerShape);
82 if (RT_SUCCESS(rc))
83 {
84 pReq->fFlags = fFlags;
85 pReq->xHot = xHot;
86 pReq->yHot = yHot;
87 pReq->width = cx;
88 pReq->height = cy;
89 if (pvImg)
90 memcpy(pReq->pointerData, pvImg, cbImg);
91
92 rc = vbglR3GRPerform(&pReq->header);
93 vbglR3GRFree(&pReq->header);
94 if (RT_SUCCESS(rc))
95 rc = pReq->header.rc;
96 }
97 return rc;
98}
99
100
101/**
102 * Send mouse pointer shape information to the host.
103 * This version of the function accepts a request for clients that
104 * already allocate and manipulate the request structure directly.
105 *
106 * @returns VBox status code.
107 *
108 * @param pReq Pointer to the VMMDevReqMousePointer structure.
109 */
110VBGLR3DECL(int) VbglR3SetPointerShapeReq(VMMDevReqMousePointer *pReq)
111{
112 int rc = vbglR3GRPerform(&pReq->header);
113 if (RT_SUCCESS(rc))
114 rc = pReq->header.rc;
115 return rc;
116}
117
118
119/**
120 * Query the last display change request.
121 *
122 * @returns iprt status value
123 * @param pcx Where to store the horizontal pixel resolution (0 = do not change).
124 * @param pcy Where to store the vertical pixel resolution (0 = do not change).
125 * @param pcBits Where to store the bits per pixel (0 = do not change).
126 * @param iDisplay Where to store the display number the request was for - 0 for the
127 * primary display, 1 for the first secondary, etc.
128 */
129VBGLR3DECL(int) VbglR3GetLastDisplayChangeRequest(uint32_t *pcx, uint32_t *pcy, uint32_t *pcBits, uint32_t *piDisplay)
130{
131 VMMDevDisplayChangeRequest2 Req = { { 0 } };
132
133#ifndef VBOX_VBGLR3_XFREE86
134 AssertPtrReturn(pcx, VERR_INVALID_PARAMETER);
135 AssertPtrReturn(pcy, VERR_INVALID_PARAMETER);
136 AssertPtrReturn(pcBits, VERR_INVALID_PARAMETER);
137 AssertPtrReturn(piDisplay, VERR_INVALID_PARAMETER);
138#endif
139vmmdevInitRequest(&Req.header, VMMDevReq_GetDisplayChangeRequest2);
140 int rc = vbglR3GRPerform(&Req.header);
141 if (RT_SUCCESS(rc))
142 rc = Req.header.rc;
143 if (RT_SUCCESS(rc))
144 {
145 *pcx = Req.xres;
146 *pcy = Req.yres;
147 *pcBits = Req.bpp;
148 *piDisplay = Req.display;
149 }
150 return rc;
151}
152
153/**
154 * Wait for a display change request event from the host. These events must have been
155 * activated previously using VbglR3CtlFilterMask.
156 *
157 * @returns IPRT status value
158 * @param pcx On success, where to return the requested display width.
159 * 0 means no change.
160 * @param pcy On success, where to return the requested display height.
161 * 0 means no change.
162 * @param pcBits On success, where to return the requested bits per pixel.
163 * 0 means no change.
164 * @param piDisplay On success, where to return the index of the display to be changed.
165 */
166VBGLR3DECL(int) VbglR3DisplayChangeWaitEvent(uint32_t *pcx, uint32_t *pcy, uint32_t *pcBits, uint32_t *piDisplay)
167{
168 VBoxGuestWaitEventInfo waitEvent;
169 int rc;
170
171#ifndef VBOX_VBGLR3_XFREE86
172 AssertPtrReturn(pcx, VERR_INVALID_PARAMETER);
173 AssertPtrReturn(pcy, VERR_INVALID_PARAMETER);
174 AssertPtrReturn(pcBits, VERR_INVALID_PARAMETER);
175 AssertPtrReturn(piDisplay, VERR_INVALID_PARAMETER);
176#endif
177 waitEvent.u32TimeoutIn = RT_INDEFINITE_WAIT;
178 waitEvent.u32EventMaskIn = VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST;
179 waitEvent.u32Result = VBOXGUEST_WAITEVENT_ERROR;
180 waitEvent.u32EventFlagsOut = 0;
181 rc = vbglR3DoIOCtl(VBOXGUEST_IOCTL_WAITEVENT, &waitEvent, sizeof(waitEvent));
182 if (RT_SUCCESS(rc))
183 {
184 /* did we get the right event? */
185 if (waitEvent.u32EventFlagsOut & VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST)
186 {
187 VMMDevDisplayChangeRequest2 Req = { { 0 } };
188 vmmdevInitRequest(&Req.header, VMMDevReq_GetDisplayChangeRequest2);
189 Req.eventAck = VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST;
190 int rc = vbglR3GRPerform(&Req.header);
191 if (RT_SUCCESS(rc))
192 rc = Req.header.rc;
193 if (RT_SUCCESS(rc))
194 {
195 *pcx = Req.xres;
196 *pcy = Req.yres;
197 *pcBits = Req.bpp;
198 *piDisplay = Req.display;
199 }
200 }
201 else
202 rc = VERR_TRY_AGAIN;
203 }
204 return rc;
205}
206
207/**
208 * Query the host as to whether it likes a specific video mode.
209 *
210 * @returns the result of the query
211 * @param cx the width of the mode being queried
212 * @param cy the height of the mode being queried
213 * @param cBits the bpp of the mode being queried
214 */
215VBGLR3DECL(bool) VbglR3HostLikesVideoMode(uint32_t cx, uint32_t cy, uint32_t cBits)
216{
217 bool fRc = false;
218 int rc;
219 VMMDevVideoModeSupportedRequest req;
220
221 vmmdevInitRequest(&req.header, VMMDevReq_VideoModeSupported);
222 req.width = cx;
223 req.height = cy;
224 req.bpp = cBits;
225 req.fSupported = false;
226 rc = vbglR3GRPerform(&req.header);
227 if (RT_SUCCESS(rc) && RT_SUCCESS(req.header.rc))
228 fRc = req.fSupported;
229 else
230 LogRelFunc(("error querying video mode supported status from VMMDev."
231 "rc = %Vrc, VMMDev rc = %Vrc\n", rc, req.header.rc));
232 return fRc;
233}
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette