sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description: Header file for S60 display posting API
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifndef __POSTING_SURFACE_H__
|
sl@0
|
23 |
#define __POSTING_SURFACE_H__
|
sl@0
|
24 |
|
sl@0
|
25 |
//- Include Files ----------------------------------------------------------
|
sl@0
|
26 |
|
sl@0
|
27 |
#include <e32base.h>
|
sl@0
|
28 |
#include <e32cmn.h>
|
sl@0
|
29 |
#include <gdi.h>
|
sl@0
|
30 |
|
sl@0
|
31 |
//- Namespace ---------------------------------------------------------------
|
sl@0
|
32 |
|
sl@0
|
33 |
//- Constants ---------------------------------------------------------------
|
sl@0
|
34 |
|
sl@0
|
35 |
///Little endian bit mask
|
sl@0
|
36 |
const TUint KPostFormatLE = 0x01000000;
|
sl@0
|
37 |
///Big endian bit mask
|
sl@0
|
38 |
const TUint KPostFormatBE = 0x02000000;
|
sl@0
|
39 |
///Color range 0-255 bit mask
|
sl@0
|
40 |
const TUint KPostColorRange0 = 0x00000010;
|
sl@0
|
41 |
///Color range 16-235 bit mask
|
sl@0
|
42 |
const TUint KPostColorRange1 = 0x00000020;
|
sl@0
|
43 |
///ITU-R BT.709-5 standard bit mask
|
sl@0
|
44 |
const TUint KPost709 = 0x00000100;
|
sl@0
|
45 |
///ITU-R BT.601-5 standard bit mask
|
sl@0
|
46 |
const TUint KPost601 = 0x00000200;
|
sl@0
|
47 |
///Posting RGB format RGB565 bit mask
|
sl@0
|
48 |
const TUint KPostRGB565 = 0x00000001;
|
sl@0
|
49 |
///Posting RGB format RGB888 (24bit) bit mask
|
sl@0
|
50 |
const TUint KPostRGB888 = 0x00000002;
|
sl@0
|
51 |
///Posting RGB format RGBx888 (32bit) bit mask
|
sl@0
|
52 |
const TUint KPostRGBx888 = 0x00000004;
|
sl@0
|
53 |
///Posting YUV 420 Planar format
|
sl@0
|
54 |
const TUint KPostYUV420Planar= 0x00001000;
|
sl@0
|
55 |
///Platform specific
|
sl@0
|
56 |
const TUint KPostPlatformDependent = 0x10000000;
|
sl@0
|
57 |
|
sl@0
|
58 |
//- Forward Declarations ----------------------------------------------------
|
sl@0
|
59 |
|
sl@0
|
60 |
class CPostingSurface;
|
sl@0
|
61 |
class TPostingBuff;
|
sl@0
|
62 |
|
sl@0
|
63 |
//- Class Definitions -------------------------------------------------------
|
sl@0
|
64 |
/**
|
sl@0
|
65 |
* CPostingSurface
|
sl@0
|
66 |
*
|
sl@0
|
67 |
* Contains core data structures and member functions in the display posting API
|
sl@0
|
68 |
*/
|
sl@0
|
69 |
class CPostingSurface : public CBase
|
sl@0
|
70 |
{
|
sl@0
|
71 |
public:
|
sl@0
|
72 |
|
sl@0
|
73 |
/**
|
sl@0
|
74 |
* TPostingFormat
|
sl@0
|
75 |
*
|
sl@0
|
76 |
* Specifies the data format. Also sampling pattern, data layout and YUV-RGB conversion coefficients for YUV data.
|
sl@0
|
77 |
*/
|
sl@0
|
78 |
enum TPostingFormat
|
sl@0
|
79 |
{
|
sl@0
|
80 |
EFormatInvalidValue = 0x00000000, //Initialisation value, do not use
|
sl@0
|
81 |
ERgb16bit565Le = KPostRGB565 | KPostFormatLE,
|
sl@0
|
82 |
ERgb24bit888Le = KPostRGB888 | KPostFormatLE,
|
sl@0
|
83 |
ERgb32bit888Le = KPostRGBx888 | KPostFormatLE,
|
sl@0
|
84 |
EYuv422LeBt709Range0 = KPost709 | KPostFormatLE | KPostColorRange0,
|
sl@0
|
85 |
EYuv422LeBt709Range1 = KPost709 | KPostFormatLE | KPostColorRange1,
|
sl@0
|
86 |
EYuv422BeBt709Range0 = KPost709 | KPostFormatBE | KPostColorRange0,
|
sl@0
|
87 |
EYuv422BeBt709Range1 = KPost709 | KPostFormatBE | KPostColorRange1,
|
sl@0
|
88 |
EYuv422LeBt601Range0 = KPost601 | KPostFormatLE | KPostColorRange0,
|
sl@0
|
89 |
EYuv422LeBt601Range1 = KPost601 | KPostFormatLE | KPostColorRange1,
|
sl@0
|
90 |
EYuv422BeBt601Range0 = KPost601 | KPostFormatBE | KPostColorRange0,
|
sl@0
|
91 |
EYuv422BeBt601Range1 = KPost601 | KPostFormatBE | KPostColorRange1,
|
sl@0
|
92 |
EYuv420PlanarBt709Range0 = KPost709 | KPostYUV420Planar | KPostColorRange0,
|
sl@0
|
93 |
EYuv420PlanarBt709Range1 = KPost709 | KPostYUV420Planar | KPostColorRange1,
|
sl@0
|
94 |
EYuv420PlanarBt601Range0 = KPost601 | KPostYUV420Planar | KPostColorRange0,
|
sl@0
|
95 |
EYuv420PlanarBt601Range1 = KPost601 | KPostYUV420Planar | KPostColorRange1,
|
sl@0
|
96 |
EYuvPlatformDependent = KPostPlatformDependent,
|
sl@0
|
97 |
};
|
sl@0
|
98 |
|
sl@0
|
99 |
|
sl@0
|
100 |
/**
|
sl@0
|
101 |
* TRotationType
|
sl@0
|
102 |
*
|
sl@0
|
103 |
* Rotation types as defined in [MDF Video Common Elements]
|
sl@0
|
104 |
*/
|
sl@0
|
105 |
enum TRotationType
|
sl@0
|
106 |
{
|
sl@0
|
107 |
ENoRotation = 0x00000000, //0Deg
|
sl@0
|
108 |
ERotate90ClockWise = 0x00000001, //90Deg
|
sl@0
|
109 |
ERotate180 = 0x00000002, //180Deg
|
sl@0
|
110 |
ERotate90AntiClockWise = 0x00000004, //270Deg
|
sl@0
|
111 |
};
|
sl@0
|
112 |
|
sl@0
|
113 |
|
sl@0
|
114 |
/**
|
sl@0
|
115 |
* TPostingBuffering
|
sl@0
|
116 |
*
|
sl@0
|
117 |
* Bitmask value describing how the display posting is done and how the frames should be handled.
|
sl@0
|
118 |
*/
|
sl@0
|
119 |
enum TPostingBuffering
|
sl@0
|
120 |
{
|
sl@0
|
121 |
EBufferingInvalid = 0x00000000, //Initialisation value, do not use
|
sl@0
|
122 |
ESingleBuffering = 0x00000004,
|
sl@0
|
123 |
EDoubleBuffering = 0x00000001,
|
sl@0
|
124 |
ETripleBuffering = 0x00000002,
|
sl@0
|
125 |
EProgressiveFrames = 0x00000010,
|
sl@0
|
126 |
EInterlacedFrames = 0x00000020,
|
sl@0
|
127 |
EDisAllowFrameSkip = 0x00000100,
|
sl@0
|
128 |
EAllowFrameSkip = 0x00000200,
|
sl@0
|
129 |
EInternalBuffers = 0x00001000,
|
sl@0
|
130 |
EExternalBuffers = 0x00002000,
|
sl@0
|
131 |
};
|
sl@0
|
132 |
|
sl@0
|
133 |
|
sl@0
|
134 |
/**
|
sl@0
|
135 |
* TPostageUsageHint
|
sl@0
|
136 |
*
|
sl@0
|
137 |
* Tells the intended usage of the posting surface. The display driver uses these hints to prioritize the HW usage and route content.
|
sl@0
|
138 |
* Vendor specific meanings may be added to the end of the enum space.
|
sl@0
|
139 |
*/
|
sl@0
|
140 |
enum TPostingUsageHint
|
sl@0
|
141 |
{
|
sl@0
|
142 |
EUsageInvalid = 0x00000000, //Initialisation value, do not use
|
sl@0
|
143 |
EGeneric = 0x00000001,
|
sl@0
|
144 |
E3D = 0x00000002,
|
sl@0
|
145 |
EVideoPlayback = 0x00000004,
|
sl@0
|
146 |
EVideoCapture = 0x00000008,
|
sl@0
|
147 |
EViewfinder = 0x00000010,
|
sl@0
|
148 |
EStillImage = 0x00000011,
|
sl@0
|
149 |
EVendorSpecific = 0x80000000,
|
sl@0
|
150 |
};
|
sl@0
|
151 |
|
sl@0
|
152 |
/**
|
sl@0
|
153 |
* TPostingCapab
|
sl@0
|
154 |
*
|
sl@0
|
155 |
* Describes the Posting buffer size restrictions and posting processing capabilities.
|
sl@0
|
156 |
*/
|
sl@0
|
157 |
class TPostingCapab
|
sl@0
|
158 |
{
|
sl@0
|
159 |
public:
|
sl@0
|
160 |
|
sl@0
|
161 |
inline TPostingCapab();
|
sl@0
|
162 |
|
sl@0
|
163 |
public:
|
sl@0
|
164 |
/** Maximum buffer size in bytes */
|
sl@0
|
165 |
TUint iMaxSourceSize;
|
sl@0
|
166 |
|
sl@0
|
167 |
/** Hw limits for source size, normally cannot allocated whole this size */
|
sl@0
|
168 |
TSize iMaxPixelSize;
|
sl@0
|
169 |
|
sl@0
|
170 |
/** Bit mask of supported rotations */
|
sl@0
|
171 |
TUint iSupportedRotations;
|
sl@0
|
172 |
|
sl@0
|
173 |
/** ETrue when horizontal mirroring is supported */
|
sl@0
|
174 |
TBool iSupportsMirroring;
|
sl@0
|
175 |
|
sl@0
|
176 |
/** ETrue when rational scales is supported */
|
sl@0
|
177 |
TBool iSupportsScaling;
|
sl@0
|
178 |
|
sl@0
|
179 |
/** ETrue when brightness tuning is supported */
|
sl@0
|
180 |
TBool iSupportsBrightnessControl;
|
sl@0
|
181 |
|
sl@0
|
182 |
/** ETrue when contrast tuning is supported */
|
sl@0
|
183 |
TBool iSupportsContrastControl;
|
sl@0
|
184 |
|
sl@0
|
185 |
/** Bitmask (TPostingBuffering) */
|
sl@0
|
186 |
TUint iSupportedPostingBuffering;
|
sl@0
|
187 |
|
sl@0
|
188 |
/** Bitmask (TBufferType) */
|
sl@0
|
189 |
TUint iSupportedBufferTypes;
|
sl@0
|
190 |
};
|
sl@0
|
191 |
|
sl@0
|
192 |
enum TBufferType
|
sl@0
|
193 |
{
|
sl@0
|
194 |
EBufferTypeInvalid = 0x00000000, //Initialisation value, do not use
|
sl@0
|
195 |
EStandardBuffer = 0x00000001, //Direct address
|
sl@0
|
196 |
EChunkBuffer = 0x00000002,//RChunk handle
|
sl@0
|
197 |
EExternalBuffer = 0x00000004,//External buffers
|
sl@0
|
198 |
};
|
sl@0
|
199 |
|
sl@0
|
200 |
/**
|
sl@0
|
201 |
* TPostingSourceParams
|
sl@0
|
202 |
*
|
sl@0
|
203 |
* Describes the source content and buffering parameters. These values are fixed in the initialization phase.
|
sl@0
|
204 |
*/
|
sl@0
|
205 |
class TPostingSourceParams
|
sl@0
|
206 |
{
|
sl@0
|
207 |
public:
|
sl@0
|
208 |
inline TPostingSourceParams();
|
sl@0
|
209 |
|
sl@0
|
210 |
public:
|
sl@0
|
211 |
/** Buffering usage mode (TPostingBuffering) */
|
sl@0
|
212 |
TUint iPostingBuffering;
|
sl@0
|
213 |
|
sl@0
|
214 |
/** Indicates the type of buffer requested */
|
sl@0
|
215 |
TBufferType iBufferType;
|
sl@0
|
216 |
|
sl@0
|
217 |
/** Purpose of buffer (TPostingUsageHint) */
|
sl@0
|
218 |
TUint iPostingUsage;
|
sl@0
|
219 |
|
sl@0
|
220 |
/** Source resolution. Values must be even */
|
sl@0
|
221 |
TSize iSourceImageSize;
|
sl@0
|
222 |
|
sl@0
|
223 |
/** Source's pixel format */
|
sl@0
|
224 |
TPostingFormat iPostingFormat;
|
sl@0
|
225 |
|
sl@0
|
226 |
/** Source pixel aspect ratio (width), Scaling factor = Numerator/Denominator. Tv out only */
|
sl@0
|
227 |
TUint16 iPixelAspectRatioNum;
|
sl@0
|
228 |
|
sl@0
|
229 |
/** Source pixel aspect ratio (width) */
|
sl@0
|
230 |
TUint16 iPixelAspectRatioDenom;
|
sl@0
|
231 |
|
sl@0
|
232 |
/**
|
sl@0
|
233 |
* ETrue when copy protection enabled
|
sl@0
|
234 |
* indicates if the content has copy protection restrictions. true: Restricted
|
sl@0
|
235 |
*/
|
sl@0
|
236 |
TBool iContentCopyRestricted;
|
sl@0
|
237 |
};
|
sl@0
|
238 |
|
sl@0
|
239 |
|
sl@0
|
240 |
/**
|
sl@0
|
241 |
* TPostingParams
|
sl@0
|
242 |
*
|
sl@0
|
243 |
* Speficies window properties and required processing types for the posting buffer before it can be displayed on the screen.
|
sl@0
|
244 |
*/
|
sl@0
|
245 |
class TPostingParams
|
sl@0
|
246 |
{
|
sl@0
|
247 |
public:
|
sl@0
|
248 |
|
sl@0
|
249 |
inline TPostingParams();
|
sl@0
|
250 |
|
sl@0
|
251 |
public:
|
sl@0
|
252 |
/** Size and position of the rectangle on phone's display. Even. Ui-orientation parameters.
|
sl@0
|
253 |
* Does not affect Tv-out
|
sl@0
|
254 |
*/
|
sl@0
|
255 |
TRect iDisplayedRect;
|
sl@0
|
256 |
|
sl@0
|
257 |
/** Output size in pixels, defines scaling. Relative to iDisplayedRect and must not
|
sl@0
|
258 |
* exceed those boundaries
|
sl@0
|
259 |
*/
|
sl@0
|
260 |
TRect iScaleToRect;
|
sl@0
|
261 |
|
sl@0
|
262 |
/** Required cropping for the content before applying other processing. Even.
|
sl@0
|
263 |
* This is <= iSourceImageSize. This is Tv-out crop too
|
sl@0
|
264 |
*/
|
sl@0
|
265 |
TRect iInputCrop;
|
sl@0
|
266 |
|
sl@0
|
267 |
/** ETrue when horizontal mirroring. Does not affect Tv-out */
|
sl@0
|
268 |
TBool iMirror;
|
sl@0
|
269 |
/** Orientation of content compared to symbian videobuffer. Does not affect Tv-out */
|
sl@0
|
270 |
TRotationType iRotation;
|
sl@0
|
271 |
|
sl@0
|
272 |
/** Brightness value on screen, [-100,100]%, may be ignored by the driver */
|
sl@0
|
273 |
TInt16 iBrightness;
|
sl@0
|
274 |
|
sl@0
|
275 |
/** Contrast value on screen, [-100,100]% */
|
sl@0
|
276 |
TInt16 iContrast;
|
sl@0
|
277 |
|
sl@0
|
278 |
/** Defined background color. Give in same format what symbian videobuffer currently is */
|
sl@0
|
279 |
TRgb iBackGround;
|
sl@0
|
280 |
};
|
sl@0
|
281 |
|
sl@0
|
282 |
|
sl@0
|
283 |
/**
|
sl@0
|
284 |
* TPostingBuff
|
sl@0
|
285 |
*
|
sl@0
|
286 |
* Contains information about the posting buffer.
|
sl@0
|
287 |
*/
|
sl@0
|
288 |
class TPostingBuff
|
sl@0
|
289 |
{
|
sl@0
|
290 |
public:
|
sl@0
|
291 |
/** @return EBufferTypeInvalid or EChunkBuffer (iType) */
|
sl@0
|
292 |
IMPORT_C virtual TBufferType GetType();
|
sl@0
|
293 |
|
sl@0
|
294 |
/** @return Direct address of buffer (0,0) (iBuffer) */
|
sl@0
|
295 |
IMPORT_C virtual TAny* GetBuffer();
|
sl@0
|
296 |
|
sl@0
|
297 |
/** @return buffer size in pixels */
|
sl@0
|
298 |
IMPORT_C virtual TSize GetSize();
|
sl@0
|
299 |
|
sl@0
|
300 |
/** @return scanline length in bytes (width*bytes_per_pixel + some_offset) */
|
sl@0
|
301 |
IMPORT_C virtual TUint GetStride();
|
sl@0
|
302 |
|
sl@0
|
303 |
protected:
|
sl@0
|
304 |
/** Hidden constructor, user should never use this */
|
sl@0
|
305 |
IMPORT_C TPostingBuff();
|
sl@0
|
306 |
|
sl@0
|
307 |
protected:
|
sl@0
|
308 |
/** Type of this TPostingBuff */
|
sl@0
|
309 |
TBufferType iType;
|
sl@0
|
310 |
|
sl@0
|
311 |
/** Pointer to buffer */
|
sl@0
|
312 |
TAny* iBuffer;
|
sl@0
|
313 |
|
sl@0
|
314 |
/** Size of frame in pixels */
|
sl@0
|
315 |
TSize iSize;
|
sl@0
|
316 |
|
sl@0
|
317 |
/** Scanline length in bytes (width*bytes_per_pixel + some_offset) */
|
sl@0
|
318 |
TUint iStride;
|
sl@0
|
319 |
};
|
sl@0
|
320 |
|
sl@0
|
321 |
/**
|
sl@0
|
322 |
* TPostingBuffExt
|
sl@0
|
323 |
*
|
sl@0
|
324 |
* Extension for TPostingBuff class. Allows external buffers to be set.
|
sl@0
|
325 |
*/
|
sl@0
|
326 |
class TPostingBuffExt : public TPostingBuff
|
sl@0
|
327 |
{
|
sl@0
|
328 |
public:
|
sl@0
|
329 |
///Set pointer to external buffer
|
sl@0
|
330 |
IMPORT_C virtual void SetBuffer(TAny* aBuffer);
|
sl@0
|
331 |
///Set size of buffer in pixels
|
sl@0
|
332 |
IMPORT_C virtual void SetSize(TSize aSize);
|
sl@0
|
333 |
///Set scanline length in bytes
|
sl@0
|
334 |
IMPORT_C virtual void SetStride(TUint aStride);
|
sl@0
|
335 |
protected:
|
sl@0
|
336 |
///Hidden constructor, user should never use this
|
sl@0
|
337 |
IMPORT_C TPostingBuffExt();
|
sl@0
|
338 |
};
|
sl@0
|
339 |
|
sl@0
|
340 |
/**
|
sl@0
|
341 |
* TPostingBufferChunk
|
sl@0
|
342 |
*
|
sl@0
|
343 |
* the chunk buffer should be requested by the client if the client application must pass the buffer across a process boundary.
|
sl@0
|
344 |
*/
|
sl@0
|
345 |
class TPostingBufferChunk : public TPostingBuff
|
sl@0
|
346 |
{
|
sl@0
|
347 |
public:
|
sl@0
|
348 |
/** @return Handle to DChunk (iChunk) */
|
sl@0
|
349 |
IMPORT_C virtual RChunk GetChunk();
|
sl@0
|
350 |
|
sl@0
|
351 |
/** @return buffer start address offset in chunk, (iOffsetInChunk) */
|
sl@0
|
352 |
IMPORT_C virtual TUint GetOffsetInChunk();
|
sl@0
|
353 |
|
sl@0
|
354 |
protected:
|
sl@0
|
355 |
/** Hidden constructor */
|
sl@0
|
356 |
IMPORT_C TPostingBufferChunk();
|
sl@0
|
357 |
|
sl@0
|
358 |
protected:
|
sl@0
|
359 |
/** Handle to DChunk */
|
sl@0
|
360 |
RChunk iChunk;
|
sl@0
|
361 |
|
sl@0
|
362 |
/** Offset in chunk, to first pixel */
|
sl@0
|
363 |
TUint iOffsetInChunk;
|
sl@0
|
364 |
};
|
sl@0
|
365 |
|
sl@0
|
366 |
public:
|
sl@0
|
367 |
/** Object destructor */
|
sl@0
|
368 |
virtual ~CPostingSurface(){};
|
sl@0
|
369 |
|
sl@0
|
370 |
/**
|
sl@0
|
371 |
* Initialises API for given parameters, and reserving posting for user (limited amount).
|
sl@0
|
372 |
* If all success and aSource&aDest are filled correctly, posting is ready to use.
|
sl@0
|
373 |
* @param aSource Source buffer information.
|
sl@0
|
374 |
* @param aDest Destination parameters, @see CPostingSurface::SetPostingParameters
|
sl@0
|
375 |
* @return Leaves when failed, with standard symbian error code
|
sl@0
|
376 |
*/
|
sl@0
|
377 |
virtual void InitializeL(const TPostingSourceParams& aSource, const TPostingParams& aDest) = 0;
|
sl@0
|
378 |
|
sl@0
|
379 |
/**
|
sl@0
|
380 |
* Returns posting API provided properties to parameter
|
sl@0
|
381 |
* @param aCaps Supported features, filled by driver
|
sl@0
|
382 |
* @return KErrNone if success
|
sl@0
|
383 |
*/
|
sl@0
|
384 |
virtual void GetCapabilities(TPostingCapab& aCaps) = 0;
|
sl@0
|
385 |
|
sl@0
|
386 |
/**
|
sl@0
|
387 |
* Queries the underlying implementation about its capability to process proposed input format.
|
sl@0
|
388 |
* @param aFormat Format what to be asked.
|
sl@0
|
389 |
* @return ETrue when aFormat is supported, otherwise EFalse
|
sl@0
|
390 |
*/
|
sl@0
|
391 |
virtual TBool FormatSupported(TPostingFormat aFormat) = 0;
|
sl@0
|
392 |
|
sl@0
|
393 |
/**
|
sl@0
|
394 |
* Asynchronous freeing of reservation of posting.
|
sl@0
|
395 |
* @param aComplete -parameter is status of destroying, driver completes it when complete
|
sl@0
|
396 |
*/
|
sl@0
|
397 |
virtual void Destroy ( TRequestStatus& aComplete)= 0;
|
sl@0
|
398 |
|
sl@0
|
399 |
/**
|
sl@0
|
400 |
* Synchronic version of Destroy(TRequestStatus& aComplete),
|
sl@0
|
401 |
* Note, this method can take same time what previous version takes
|
sl@0
|
402 |
*/
|
sl@0
|
403 |
virtual void Destroy() = 0;
|
sl@0
|
404 |
|
sl@0
|
405 |
/**
|
sl@0
|
406 |
* Starts a wait for next free buffer
|
sl@0
|
407 |
* It is allowed for an application to wait and acquire
|
sl@0
|
408 |
* two or more buffers before actually posting the buffers.
|
sl@0
|
409 |
* However, only one wait for next free buffer can be active at the time (!).
|
sl@0
|
410 |
* @param aComplete Request to be complete when next buffer is available.
|
sl@0
|
411 |
* @return KErrNone if success
|
sl@0
|
412 |
*/
|
sl@0
|
413 |
virtual TInt WaitForNextBuffer(TRequestStatus& aComplete) = 0;
|
sl@0
|
414 |
|
sl@0
|
415 |
/**
|
sl@0
|
416 |
* Gets the next free buffer (must have been waited with WaitForNextBuffer()
|
sl@0
|
417 |
* for before calling this!).
|
sl@0
|
418 |
* @return Next available buffer settings for user
|
sl@0
|
419 |
*/
|
sl@0
|
420 |
virtual TPostingBuff* NextBuffer() = 0;
|
sl@0
|
421 |
|
sl@0
|
422 |
/** Cancels the wait for the next free buffer. Can be ingnored by driver */
|
sl@0
|
423 |
virtual TInt CancelBuffer() = 0;
|
sl@0
|
424 |
|
sl@0
|
425 |
/**
|
sl@0
|
426 |
* Posts buffer previously got from the API.
|
sl@0
|
427 |
* @param aBuffer Buffer object where driver to continues updating
|
sl@0
|
428 |
* @return KErrNone if success
|
sl@0
|
429 |
*/
|
sl@0
|
430 |
virtual TInt PostBuffer(TPostingBuff* aBuffer) = 0;
|
sl@0
|
431 |
|
sl@0
|
432 |
/**
|
sl@0
|
433 |
* This function can be used to change window
|
sl@0
|
434 |
* properties and required processing types for the posting
|
sl@0
|
435 |
* buffer before it can be displayed on the screen.
|
sl@0
|
436 |
* Perhaps some limititations of parameter change can exists, then this fails.
|
sl@0
|
437 |
* @param aParams New destination settings of Posting
|
sl@0
|
438 |
* @return KErrNone if success
|
sl@0
|
439 |
*/
|
sl@0
|
440 |
virtual TInt SetPostingParameters(const TPostingParams& aParams) = 0;
|
sl@0
|
441 |
|
sl@0
|
442 |
/**
|
sl@0
|
443 |
* This function can be used to directly pass the DSA-region
|
sl@0
|
444 |
* of the internal display down to this API if DSA-region is
|
sl@0
|
445 |
* clipped in some way. Some implementations may support none:
|
sl@0
|
446 |
* some may support only one or few clipping regions.
|
sl@0
|
447 |
* In those cases the return value can be KErrNotSupported.
|
sl@0
|
448 |
* If clipping region is supported, no image will be drawn outside
|
sl@0
|
449 |
* of the clipping region.
|
sl@0
|
450 |
* If iDisplayedRect is set to an empty region, then the posting is not
|
sl@0
|
451 |
* active for the internal display. However, if display posting is still done,
|
sl@0
|
452 |
* external display may get updated. Default: no clipping is done,
|
sl@0
|
453 |
* but internal display is enabled.
|
sl@0
|
454 |
* @param aClipRegion Rectangles of current DSA.
|
sl@0
|
455 |
* @return KErrNone if success
|
sl@0
|
456 |
*/
|
sl@0
|
457 |
virtual TInt SetClipRegion(const TRegion& aClipRegion) = 0;
|
sl@0
|
458 |
};
|
sl@0
|
459 |
|
sl@0
|
460 |
//- Inline Functions --------------------------------------------------------
|
sl@0
|
461 |
|
sl@0
|
462 |
#include "posting_surface.inl"
|
sl@0
|
463 |
|
sl@0
|
464 |
#endif //__POSTING_SURFACE_H__
|
sl@0
|
465 |
|
sl@0
|
466 |
// End of File
|