VirtualBox

source: vbox/trunk/src/VBox/Main/FramebufferImpl.cpp@ 5999

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

The Giant CDDL Dual-License Header Change.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.0 KB
Line 
1/** @file
2 *
3 * VirtualBox COM class implementation
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
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
18#include "FramebufferImpl.h"
19#include <iprt/semaphore.h>
20
21// constructor / destructor
22/////////////////////////////////////////////////////////////////////////////
23
24InternalFramebuffer::InternalFramebuffer()
25{
26 mData = NULL;
27 RTSemMutexCreate(&mMutex);
28}
29
30InternalFramebuffer::~InternalFramebuffer()
31{
32 RTSemMutexDestroy(mMutex);
33 if (mData)
34 delete mData;
35}
36
37// public methods only for internal purposes
38/////////////////////////////////////////////////////////////////////////////
39
40HRESULT InternalFramebuffer::init(ULONG width, ULONG height, ULONG depth)
41{
42 mWidth = width;
43 mHeight = height;
44 mBitsPerPixel = depth;
45 mBytesPerLine = ((width * depth + 31) / 32) * 4;
46 mData = new uint8_t [mBytesPerLine * height];
47 memset (mData, 0, mBytesPerLine * height);
48
49 return S_OK;
50}
51
52// IFramebuffer properties
53/////////////////////////////////////////////////////////////////////////////
54
55STDMETHODIMP InternalFramebuffer::COMGETTER(Address) (BYTE **address)
56{
57 if (!address)
58 return E_POINTER;
59 *address = mData;
60 return S_OK;
61}
62
63STDMETHODIMP InternalFramebuffer::COMGETTER(Width) (ULONG *width)
64{
65 if (!width)
66 return E_POINTER;
67 *width = mWidth;
68 return S_OK;
69}
70
71STDMETHODIMP InternalFramebuffer::COMGETTER(Height) (ULONG *height)
72{
73 if (!height)
74 return E_POINTER;
75 *height = mHeight;
76 return S_OK;
77}
78
79STDMETHODIMP InternalFramebuffer::COMGETTER(BitsPerPixel) (ULONG *bitsPerPixel)
80{
81 if (!bitsPerPixel)
82 return E_POINTER;
83 *bitsPerPixel = mBitsPerPixel;
84 return S_OK;
85}
86
87STDMETHODIMP InternalFramebuffer::COMGETTER(BytesPerLine) (ULONG *bytesPerLine)
88{
89 if (!bytesPerLine)
90 return E_POINTER;
91 *bytesPerLine = mBytesPerLine;
92 return S_OK;
93}
94
95STDMETHODIMP InternalFramebuffer::COMGETTER(PixelFormat) (ULONG *pixelFormat)
96{
97 if (!pixelFormat)
98 return E_POINTER;
99 *pixelFormat = FramebufferPixelFormat_FOURCC_RGB;
100 return S_OK;
101}
102
103STDMETHODIMP InternalFramebuffer::COMGETTER(UsesGuestVRAM) (BOOL *usesGuestVRAM)
104{
105 if (!usesGuestVRAM)
106 return E_POINTER;
107 *usesGuestVRAM = FALSE;
108 return S_OK;
109}
110
111STDMETHODIMP InternalFramebuffer::COMGETTER(HeightReduction) (ULONG *heightReduction)
112{
113 if (!heightReduction)
114 return E_POINTER;
115 /* no reduction */
116 *heightReduction = 0;
117 return S_OK;
118}
119
120STDMETHODIMP InternalFramebuffer::COMGETTER(Overlay) (IFramebufferOverlay **aOverlay)
121{
122 if (!aOverlay)
123 return E_POINTER;
124 /* no overlay */
125 *aOverlay = 0;
126 return S_OK;
127}
128
129
130// IFramebuffer methods
131/////////////////////////////////////////////////////////////////////////////
132
133STDMETHODIMP InternalFramebuffer::Lock()
134{
135 RTSemMutexRequest(mMutex, RT_INDEFINITE_WAIT);
136 return S_OK;
137}
138
139STDMETHODIMP InternalFramebuffer::Unlock()
140{
141 RTSemMutexRelease(mMutex);
142 return S_OK;
143}
144
145STDMETHODIMP InternalFramebuffer::NotifyUpdate(ULONG x, ULONG y,
146 ULONG w, ULONG h,
147 BOOL *finished)
148{
149 if (!finished)
150 return E_POINTER;
151 // no need for the caller to wait
152 *finished = true;
153 return S_OK;
154}
155
156STDMETHODIMP
157InternalFramebuffer::RequestResize(ULONG iScreenId, ULONG pixelFormat, BYTE *vram,
158 ULONG bpp, ULONG bpl, ULONG w, ULONG h,
159 BOOL *finished)
160{
161 NOREF (bpp);
162 NOREF (bpl);
163
164 if (!finished)
165 return E_POINTER;
166 // no need for the caller to wait
167 *finished = true;
168
169 // allocate a new buffer
170 delete mData;
171 mWidth = w;
172 mHeight = h;
173 mBytesPerLine = ((w * mBitsPerPixel + 31) / 32) * 4;
174 mData = new uint8_t [mBytesPerLine * h];
175 memset (mData, 0, mBytesPerLine * h);
176
177 return S_OK;
178}
179
180STDMETHODIMP InternalFramebuffer::OperationSupported(FramebufferAccelerationOperation_T operation,
181 BOOL *supported)
182{
183 if (!supported)
184 return E_POINTER;
185 /* no acceleration please, we're a slow fallback implementation! */
186 *supported = false;
187 return S_OK;
188}
189
190STDMETHODIMP InternalFramebuffer::VideoModeSupported(ULONG width, ULONG height, ULONG bpp,
191 BOOL *supported)
192{
193 if (!supported)
194 return E_POINTER;
195 /* whatever you want! */
196 *supported = true;
197 return S_OK;
198}
199
200STDMETHODIMP InternalFramebuffer::SolidFill(ULONG x, ULONG y, ULONG width, ULONG height,
201 ULONG color, BOOL *handled)
202{
203 if (!handled)
204 return E_POINTER;
205 /* eek, what do you expect from us?! */
206 *handled = false;
207 return S_OK;
208}
209
210STDMETHODIMP InternalFramebuffer::CopyScreenBits(ULONG xDst, ULONG yDst, ULONG xSrc, ULONG ySrc,
211 ULONG width, ULONG height, BOOL *handled)
212{
213 if (!handled)
214 return E_POINTER;
215 /* eek, what do you expect from us?! */
216 *handled = false;
217 return S_OK;
218}
219
220STDMETHODIMP InternalFramebuffer::GetVisibleRegion(BYTE *aRectangles, ULONG aCount,
221 ULONG *aCountCopied)
222{
223 PRTRECT rects = (PRTRECT)aRectangles;
224
225 if (!rects)
226 return E_POINTER;
227
228 /// @todo
229
230 NOREF(rects);
231 NOREF(aCount);
232 NOREF(aCountCopied);
233
234 return S_OK;
235}
236
237STDMETHODIMP InternalFramebuffer::SetVisibleRegion(BYTE *aRectangles, ULONG aCount)
238{
239 PRTRECT rects = (PRTRECT)aRectangles;
240
241 if (!rects)
242 return E_POINTER;
243
244 /// @todo
245
246 NOREF(rects);
247 NOREF(aCount);
248
249 return S_OK;
250}
Note: See TracBrowser for help on using the repository browser.

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