os/kernelhwsrv/kernel/eka/include/dispchannel.inl
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of the License "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
 @file dispchannel.inl
sl@0
    18
 @publishedPartner
sl@0
    19
 @released
sl@0
    20
*/
sl@0
    21
sl@0
    22
#ifndef __DISPCHANNEL_INL__
sl@0
    23
#define __DISPCHANNEL_INL__
sl@0
    24
sl@0
    25
#include <dispchannel.h>
sl@0
    26
sl@0
    27
#ifndef __KERNEL_MODE__
sl@0
    28
sl@0
    29
/** Creates a connection to the DisplayChannel Driver logical device driver.
sl@0
    30
    This handle will need to be closed by calling Close()
sl@0
    31
    when the connection to the Display Driver is no longer required.
sl@0
    32
sl@0
    33
    @param aScreen  Identifies the screen this object will control
sl@0
    34
    @return KErrNone if successful, otherwise one of the system-wide error codes.
sl@0
    35
*/
sl@0
    36
inline TInt RDisplayChannel::Open(TUint aScreen)
sl@0
    37
	{
sl@0
    38
	TVersion versionAlwaysSupported(KDisplayChMajorVersionNumberAlwaysSupported,
sl@0
    39
                                    KDisplayChMinorVersionNumberAlwaysSupported,
sl@0
    40
                                    KDisplayChBuildVersionNumberAlwaysSupported);
sl@0
    41
	
sl@0
    42
    TInt r = DoCreate(Name(), versionAlwaysSupported, aScreen, NULL, NULL);
sl@0
    43
	return r;
sl@0
    44
	}
sl@0
    45
sl@0
    46
/** The connection is closed and the driver reverts back to legacy behaviour,
sl@0
    47
    i.e. Non-GCE mode where the legacy buffer is used as the screen output
sl@0
    48
*/
sl@0
    49
inline void RDisplayChannel::Close(void)
sl@0
    50
	{
sl@0
    51
  	RBusLogicalChannel::Close();
sl@0
    52
	}
sl@0
    53
sl@0
    54
/** Get the static details of the display-owned composition buffer(s).
sl@0
    55
    These are used with the address returned by GetCompositionBuffer()
sl@0
    56
    to describe the current composition buffer.
sl@0
    57
sl@0
    58
    The normal and flipped size information reflects the maximum direct access display resolution,
sl@0
    59
    rather than the current resolution. The offset between lines remains constant,
sl@0
    60
    regardless of current buffer format. See NextLineOffset() for specific buffer
sl@0
    61
    format details.
sl@0
    62
sl@0
    63
    The available rotations indicates all the possible rotations, across all
sl@0
    64
    resolutions, even if not all are supported in all cases.
sl@0
    65
sl@0
    66
    @see SetResolution
sl@0
    67
    @see SetBufferFormat
sl@0
    68
    @see NextLineOffset
sl@0
    69
sl@0
    70
    @param aInfo The static details of the composition buffer(s).
sl@0
    71
    @return KErrNone if successful, otherwise one of the system-wide error codes.
sl@0
    72
*/
sl@0
    73
inline TInt	RDisplayChannel::GetDisplayInfo(TDes8& aInfo)
sl@0
    74
	{
sl@0
    75
	return (DoControl(ECtrlGetDisplayInfo, &aInfo));
sl@0
    76
    }
sl@0
    77
sl@0
    78
/** Return the access details for a composition buffer, opening a new handle to the chunk containing
sl@0
    79
    the composition buffer.  Note that because all returned information is static, this function will
sl@0
    80
    normally only be called called once for each composition buffer when the RDisplayChannel is opened.
sl@0
    81
sl@0
    82
    @param aBufferIndex  The index of a composition buffer.
sl@0
    83
    @param aChunk A new open handle to chunk containing the composition buffer indexed by aBufferIndex.
sl@0
    84
    @param aChunkOffset The offset from the base address of aChunk to the composition buffer indexed by aBufferIndex.
sl@0
    85
    @return KErrNone if this command completed successfully, otherwise this is another of the system-wide error codes.
sl@0
    86
*/
sl@0
    87
inline TInt RDisplayChannel::GetCompositionBufferInfo(TUint aBufferIndex, RChunk& aChunk, TInt& aOffset)
sl@0
    88
	{
sl@0
    89
	TInt arg[2] = {0,0};
sl@0
    90
	(DoControl(ECtrlGetCompositionBufferInfo, &aBufferIndex, &arg));
sl@0
    91
    aChunk.SetHandle(arg[0]);
sl@0
    92
    aOffset = arg[1];
sl@0
    93
	return KErrNone;
sl@0
    94
	}
sl@0
    95
sl@0
    96
/** Request the driver to identify a driver-owned composition buffer for the user to render into.
sl@0
    97
    This may not be completed until the next display refresh if the system is implementing multi-buffering
sl@0
    98
    and there are no composition buffers available immediately.
sl@0
    99
sl@0
   100
    @param  aBufferIndex On completion of aStatus, contains the buffer index of driver-owned buffer suitable
sl@0
   101
    for client rendering.  The buffer access details can be retrieved by calling GetCompositionBufferInfo().
sl@0
   102
    The remaining buffer attributes are described by GetDisplayInfo()
sl@0
   103
    @param aStatus On completion, contains the status of the request. This is KErrNone if 
sl@0
   104
    the system is multi-buffered and an available buffer was returned.  
sl@0
   105
    This is KErrNone is the system is single-buffered and the primary buffer was returned.  
sl@0
   106
    Otherwise this is another of the system-wide error codes.
sl@0
   107
*/
sl@0
   108
inline void	RDisplayChannel::GetCompositionBuffer(TUint& aIndex, TRequestStatus& aStatus)
sl@0
   109
	{
sl@0
   110
	DoRequest(EReqGetCompositionBuffer, aStatus, (TAny*)&aIndex);
sl@0
   111
	}
sl@0
   112
sl@0
   113
/** Cancel the outstanding request to GetCompositionBuffer()
sl@0
   114
*/
sl@0
   115
inline void	RDisplayChannel::CancelGetCompositionBuffer(void)
sl@0
   116
	{
sl@0
   117
	DoCancel(1<<ECtrlCancelGetCompositionBuffer);
sl@0
   118
	}
sl@0
   119
sl@0
   120
/** Tells the driver to queue a request to show the composition buffer on screen at the next display refresh.
sl@0
   121
sl@0
   122
    @param aRegion The region changed by the client.  The driver may choose to optimise posting using this
sl@0
   123
    information or it may ignore it.  Up to KMaxRectangles rectangles can be specified.  If null, the whole buffer is used.
sl@0
   124
    @param aPostCount This is an identifier returned by the driver for this Post request on exiting the method
sl@0
   125
*/
sl@0
   126
inline TInt RDisplayChannel::PostCompositionBuffer(const TRegionFix<TDisplayInfo::KMaxRectangles>* aRegion, TPostCount& aCount)
sl@0
   127
	{
sl@0
   128
	return (DoControl(ECtrlPostCompositionBuffer, (TAny*)aRegion, &aCount));
sl@0
   129
	}
sl@0
   130
sl@0
   131
/** Request the driver to show the legacy buffer on screen at the next display refresh.
sl@0
   132
    @param aPostCount This is an identifier returned by the driver for this Post request on exiting the method.
sl@0
   133
    @return KErrNone if the request was queued successfully, otherwise this is another of the system-wide error codes.
sl@0
   134
*/
sl@0
   135
inline TInt	RDisplayChannel::PostLegacyBuffer(const TRegionFix<TDisplayInfo::KMaxRectangles>* aRegion, TPostCount& aCount)
sl@0
   136
	{
sl@0
   137
	return (DoControl(ECtrlPostLegacyBuffer, (TAny*)aRegion, &aCount));
sl@0
   138
	}
sl@0
   139
sl@0
   140
/** Register a user-provided buffer for use by the driver.  This enables the user to subsequently post the buffer. 
sl@0
   141
    The number of registered buffers will need to have a limit and this is set to KMaxUserBuffers.
sl@0
   142
sl@0
   143
    @param aBufferId Identifier to be used in the call to PostUserBuffer().
sl@0
   144
    @param aChunk Chunk containing memory to be used by the driver.
sl@0
   145
    @param aOffset Byte offset of the buffer from the chunk base.
sl@0
   146
    @return KErrNone if the buffer has successfully registered.  
sl@0
   147
    KErrTooBig if the number of registered buffers is at its limit when this call was made.  
sl@0
   148
    Otherwise this is another of the system-wide error codes.
sl@0
   149
*/
sl@0
   150
inline TInt RDisplayChannel::RegisterUserBuffer(TBufferId& aBufferId, const RChunk& aChunk, TInt aOffset)
sl@0
   151
	{
sl@0
   152
	TInt arg[2] = {aChunk.Handle(), aOffset};
sl@0
   153
	return (DoControl(ECtrlRegisterUserBuffer, arg, &aBufferId));
sl@0
   154
	}
sl@0
   155
sl@0
   156
/** Request the driver to show a buffer on screen at the next display refresh and notify the user when the buffer 
sl@0
   157
    is no longer being displayed or has been dropped. Note that if two successive calls are made to PostUserBuffer() 
sl@0
   158
    in between vertical sync pulses, the latest PostUserBuffer() call will supersede the previous call and will complete 
sl@0
   159
    any outstanding request status object for that call with KErrCancel
sl@0
   160
sl@0
   161
    @param aBufferId Identifier representing a buffer.  Generated by a previous call to RegisterUserBuffer().
sl@0
   162
    @param aStatus On completion the submitted buffer is no longer in use by the display hardware, unless the same 
sl@0
   163
    buffer is posted a second time before it has completed. aStatus contains the status of the request. This is KErrNone 
sl@0
   164
    if the request was executed successfully.  This is KErrCancel if this posting request was superseded by a more recent request.  
sl@0
   165
    This is KErrArgument if aBufferId is not a registered buffer. Otherwise this is another of the system-wide error codes.
sl@0
   166
    @param aRegion The region changed by the client.  The driver may choose to optimise posting using this information or it may ignore it.  
sl@0
   167
    Up to KMaxRectangles rectangles can be specified.  If null, the whole buffer is used.
sl@0
   168
    @param aPostCount This is an identifier returned by the driver for this Post request on exiting the method.
sl@0
   169
*/
sl@0
   170
inline void RDisplayChannel::PostUserBuffer(TBufferId aBufferId, TRequestStatus& aStatus, const TRegionFix<TDisplayInfo::KMaxRectangles>* aRegion, TPostCount& aCount)
sl@0
   171
	{
sl@0
   172
	TInt arg[2] = {aBufferId, reinterpret_cast<const TInt>(aRegion)};
sl@0
   173
	DoRequest(EReqPostUserBuffer, aStatus, arg, &aCount);
sl@0
   174
	}
sl@0
   175
sl@0
   176
/** Cancel the outstanding request to PostUserBuffer
sl@0
   177
*/
sl@0
   178
inline void RDisplayChannel::CancelPostUserBuffer(void)
sl@0
   179
	{
sl@0
   180
	DoCancel(1<<ECtrlCancelPostUserBuffer);
sl@0
   181
	}
sl@0
   182
sl@0
   183
/** Deregister a previously registered buffer.
sl@0
   184
sl@0
   185
    @param aBufferId Identifier for a previously registered buffer, generated by a call to RegisterUserBuffer().
sl@0
   186
    @return KErrNone if successful, KErrArgument if the token is not recognised, KErrInUse if the buffer is still in use,
sl@0
   187
*/
sl@0
   188
inline TInt RDisplayChannel::DeregisterUserBuffer(TBufferId aBufferId)
sl@0
   189
	{
sl@0
   190
	return (DoControl(ECtrlDeregisterUserBuffer, (TAny*)&aBufferId));
sl@0
   191
	}
sl@0
   192
sl@0
   193
/** This function allows the caller to be notified when a specified post either gets displayed or dropped.
sl@0
   194
    Completes when a specified post request either gets displayed or dropped.  
sl@0
   195
    Used to determine timing information for when a particular frame was displayed.
sl@0
   196
sl@0
   197
    @param aPostCount An identifier representing a particular post request obtained from PostUserBuffer().
sl@0
   198
    @param aStatus On completion, contains the status of the request. This is KErrNone if the post request was 
sl@0
   199
    valid and was either displayed or dropped.  If aPostCount is less than the current count then this will complete 
sl@0
   200
    immediately with KErrNone. Otherwise this is another of the system-wide error codes.
sl@0
   201
*/
sl@0
   202
inline void RDisplayChannel::WaitForPost(TPostCount aPostCount, TRequestStatus& aStatus)
sl@0
   203
	{
sl@0
   204
    DoRequest(EReqWaitForPost, aStatus, &aPostCount);
sl@0
   205
	}
sl@0
   206
sl@0
   207
/** Cancel the outstanding request to WaitForPost().
sl@0
   208
*/
sl@0
   209
inline void RDisplayChannel::CancelWaitForPost(void)
sl@0
   210
	{
sl@0
   211
	DoCancel(1<<ECtrlCancelWaitForPost);
sl@0
   212
	}
sl@0
   213
sl@0
   214
/** Ensures that the next post request will be displayed using the requested rotation.
sl@0
   215
sl@0
   216
    @param aRotation A specific rotation value.
sl@0
   217
    @param aDisplayConfigChanged Returns ETrue if the composition buffer is now using an alternative 
sl@0
   218
    (either Normal or Flipped) orientation following this call.
sl@0
   219
    @return KErrNone if rotation can be achieved.  KErrNotSupported if the requested rotation is not supported. 
sl@0
   220
    Otherwise this is another of the system-wide error codes.
sl@0
   221
*/
sl@0
   222
inline TInt RDisplayChannel::SetRotation(TDisplayRotation aRotation, TBool& aDisplayConfigChanged)
sl@0
   223
	{
sl@0
   224
	aDisplayConfigChanged = EFalse;
sl@0
   225
	return (DoControl(ECtrlSetRotation, &aRotation, &aDisplayConfigChanged));
sl@0
   226
	}
sl@0
   227
sl@0
   228
/** Return the current rotation setting of the display.
sl@0
   229
*/
sl@0
   230
inline RDisplayChannel::TDisplayRotation RDisplayChannel::CurrentRotation(void)
sl@0
   231
	{
sl@0
   232
    TDisplayRotation rotation = ERotationNormal;
sl@0
   233
    DoControl(ECtrlCurrentRotation, &rotation);
sl@0
   234
    return rotation;
sl@0
   235
	}
sl@0
   236
sl@0
   237
/** Asynchronous request for notification of when a display change occurs.
sl@0
   238
    The request is completed when the connectedness of the display changes, or when
sl@0
   239
    the set of available resolutions or pixel formats changes.
sl@0
   240
    
sl@0
   241
    If a failure occurs, it is passed back in the aStatus.
sl@0
   242
sl@0
   243
    @panic DISPCHAN KNotificationAlreadySet if a notification request is pending.
sl@0
   244
    @param aStatus    Completed on display change, or cancellation.
sl@0
   245
*/
sl@0
   246
inline void RDisplayChannel::NotifyOnDisplayChange(TRequestStatus& aStatus)
sl@0
   247
	{
sl@0
   248
	DoRequest(EReqWaitForDisplayConnect, aStatus);
sl@0
   249
	}
sl@0
   250
sl@0
   251
/** Cancels a pending request to notify on display change.
sl@0
   252
sl@0
   253
    If there is a pending notification request, the status value will be set to
sl@0
   254
    KErrCancelled and it will be completed. If there is no pending request for
sl@0
   255
    notification, the call will simply return.
sl@0
   256
*/
sl@0
   257
inline void RDisplayChannel::NotifyOnDisplayChangeCancel()
sl@0
   258
	{
sl@0
   259
	DoCancel(1<<ECtrlCancelWaitForDisplayConnect);
sl@0
   260
	}
sl@0
   261
sl@0
   262
/** Returns the number of display resolutions currently available.
sl@0
   263
sl@0
   264
    This is the maximum number of resolutions that can currently be retrieved using
sl@0
   265
    GetResolutions() and set using a combination of SetResolution() and
sl@0
   266
    SetRotation().
sl@0
   267
    When no display is connected, there shall be a single entry.
sl@0
   268
    
sl@0
   269
    @return The number of TResolution elements that can be retrieved using
sl@0
   270
    GetResolutions().
sl@0
   271
*/
sl@0
   272
inline TInt RDisplayChannel::NumberOfResolutions()  
sl@0
   273
	{
sl@0
   274
	return (DoControl(ECtrlNumberOfResolutions));
sl@0
   275
	}
sl@0
   276
sl@0
   277
/** Retrieves the resolutions that are currently available.
sl@0
   278
sl@0
   279
    If the given buffer is large enough to hold them all, the set of available
sl@0
   280
    resolutions shall be written to it as a contiguous sequence of TResolution
sl@0
   281
    elements. aCount shall be set to the number of TResolution elements written and
sl@0
   282
    the length of the buffer shall be set to the total number of bytes written.
sl@0
   283
sl@0
   284
    If a display can be disabled or become disconnected, the list shall include the
sl@0
   285
    size (0,0). If the display is connected but disabled, the list shall also
sl@0
   286
    include the other supported resolutions. If a display cannot be disconnected or
sl@0
   287
    disabled, the list shall not include (0,0).
sl@0
   288
sl@0
   289
    @return KErrNone on success, KErrOverflow if the buffer is not large enough, or
sl@0
   290
    KErrNotSupported if not supported by driver..
sl@0
   291
    @param aResolutions    Buffer to receive resolutions, as a contiguous sequence
sl@0
   292
    of TResolution elements.
sl@0
   293
    @param aCount    The number of TResolution elements written to the buffer.
sl@0
   294
*/
sl@0
   295
inline TInt RDisplayChannel::GetResolutions(TDes8& aResolutions, TInt& aCount)  
sl@0
   296
	{
sl@0
   297
	return (DoControl(ECtrlGetResolutions,&aResolutions,&aCount));
sl@0
   298
	}
sl@0
   299
sl@0
   300
/** Sets the display's new pixel resolution.
sl@0
   301
sl@0
   302
    The resolution shall be in terms of no rotation (ERotationNormal), but the
sl@0
   303
    actual display output will depend on the current Rotation() value.
sl@0
   304
sl@0
   305
    A successful call to this function may change any of the other attributes of
sl@0
   306
    the display channel. The change to the attributes happens immediately, but the
sl@0
   307
    change to the display output will only take place on the next buffer posting.
sl@0
   308
sl@0
   309
    It is recommended that the implementation tries to minimize changes to other
sl@0
   310
    attributes, if possible. For example, if the current rotation is set to
sl@0
   311
    ERotation90CW and the new resolution supports that rotation, it should remain
sl@0
   312
    as the current rotation. On the other hand, if the new resolution does not
sl@0
   313
    support that rotation, it must be changed to a supported one.
sl@0
   314
sl@0
   315
    If (0,0) is in the resolution list, passing a zero width and/or zero height
sl@0
   316
    resolution shall select it, and shall have the effect of disabling output.
sl@0
   317
sl@0
   318
    If either dimension of the given resolution is negative, KErrArgument shall be
sl@0
   319
    returned. If the parameter is valid, but not currently available,
sl@0
   320
    KErrNotSupported shall be returned.
sl@0
   321
sl@0
   322
    @see GetResolutions
sl@0
   323
    @capability WriteDeviceData Used to prevent arbitrary changes to the display
sl@0
   324
    resolution.
sl@0
   325
    @param aRes    The new display resolution.
sl@0
   326
    @return KErrNone on success. KErrNotSupported, KErrOutOfMemory or KErrArgument
sl@0
   327
    on failure.
sl@0
   328
*/
sl@0
   329
inline TInt RDisplayChannel::SetResolution(const TSize& aRes)
sl@0
   330
	{
sl@0
   331
	return (DoControl(ECtrlSetResolution,const_cast<TSize*>(&aRes)));
sl@0
   332
	}
sl@0
   333
sl@0
   334
/** Returns the current resolution.
sl@0
   335
sl@0
   336
    This is always in terms of the ERotationNormal rotation regardless of current
sl@0
   337
    and supported rotations. When the display is disconnected or disabled, this
sl@0
   338
    returns (0,0).
sl@0
   339
sl@0
   340
    If the current rotation is ERotation90CW or ERotation270CW, the width and
sl@0
   341
    height values must be swapped by the caller to get the apparent width and
sl@0
   342
    height.
sl@0
   343
sl@0
   344
    @param aSize    Receives the current resolution.
sl@0
   345
    @return KErrNone on success, KErrNotSupported if not supported by driver.
sl@0
   346
*/
sl@0
   347
inline TInt RDisplayChannel::GetResolution(TSize& aSize)  
sl@0
   348
	{
sl@0
   349
	return (DoControl(ECtrlGetResolution,&aSize));
sl@0
   350
	}
sl@0
   351
sl@0
   352
inline TInt RDisplayChannel::GetTwips(TSize& aTwips)
sl@0
   353
	{
sl@0
   354
	return (DoControl(ECtrlGetTwips,&aTwips));
sl@0
   355
	}
sl@0
   356
sl@0
   357
/** Returns the number of different buffer pixel formats that can be retrieved
sl@0
   358
    using GetPixelFormats().
sl@0
   359
sl@0
   360
    @return The number of pixel formats supported.
sl@0
   361
*/
sl@0
   362
inline TInt RDisplayChannel::NumberOfPixelFormats()  
sl@0
   363
	{
sl@0
   364
	return (DoControl(ECtrlNumberOfPixelFormats));
sl@0
   365
	}
sl@0
   366
sl@0
   367
/** Retrieves the buffer pixel formats that are supported.
sl@0
   368
sl@0
   369
    If aFormatsBuf is large enough to hold them all, the set of available pixel
sl@0
   370
    formats shall be written to it as a contiguous sequence of TPixelFormat
sl@0
   371
    elements. aCount shall be set to the number of TPixelFormat elements written
sl@0
   372
    and the length of the buffer shall be set to the total number of bytes written.
sl@0
   373
sl@0
   374
    Not all pixel formats may be valid in all circumstances.
sl@0
   375
sl@0
   376
    @see SetBufferFormat
sl@0
   377
sl@0
   378
    @param aFormatsBuf    Buffer to receive pixel formats, as a contiguous sequence
sl@0
   379
    of TUid elements.
sl@0
   380
    @param aCount    Receives the number of TUid elements written to the buffer.
sl@0
   381
    @return KErrNone on success, KErrOverflow if the buffer is too small to hold
sl@0
   382
    all the elements, or KErrNotSupported if not supported by driver.
sl@0
   383
*/
sl@0
   384
inline TInt RDisplayChannel::GetPixelFormats(TDes8& aFormatsBuf, TInt& aCount)  
sl@0
   385
	{
sl@0
   386
	return (DoControl(ECtrlGetPixelFormats,&aFormatsBuf,&aCount));
sl@0
   387
	}
sl@0
   388
sl@0
   389
/** Sets the buffer format to be used when the next buffer is posted.
sl@0
   390
sl@0
   391
    The width and height used in the buffer format correspond to the current
sl@0
   392
    rotation in effect. The size in the buffer format must be at least as big as
sl@0
   393
    the buffer mapping size, or the function shall fail with KErrNotSupported.
sl@0
   394
sl@0
   395
    @see SetBufferMapping
sl@0
   396
    @see PostCompositionBuffer
sl@0
   397
    @see PostLegacyBuffer
sl@0
   398
    @see PostUserBuffer
sl@0
   399
sl@0
   400
    @capability WriteDeviceData Used to prevent arbitrary changes to the buffer
sl@0
   401
    format.
sl@0
   402
    @param aBufferFormat    The buffer format to be used.
sl@0
   403
    @return KErrNone on success, KErrArgument if the buffer format is not valid,
sl@0
   404
    KErrNotSupported if the format is valid but not supported, or KErrOutOfMemory
sl@0
   405
    on memory allocation failure.
sl@0
   406
*/
sl@0
   407
inline TInt RDisplayChannel::SetBufferFormat(const TBufferFormat& aBufferFormat)
sl@0
   408
	{
sl@0
   409
	return (DoControl(ECtrlSetBufferFormat,const_cast<TBufferFormat*>(&aBufferFormat)));
sl@0
   410
sl@0
   411
	}
sl@0
   412
sl@0
   413
/** Retrieves the buffer format that will be used on the next buffer posting.
sl@0
   414
sl@0
   415
    Initially, this will match the information returned by GetDisplayInfo() for the
sl@0
   416
    current rotation.
sl@0
   417
    When a new resolution, rotation or mapping is chosen, the buffer format may
sl@0
   418
    change.
sl@0
   419
sl@0
   420
    @param aBufferFormat    Receives the buffer format.
sl@0
   421
    @return KErrNone on success, KErrNotSupported if not supported by driver.
sl@0
   422
*/
sl@0
   423
inline TInt RDisplayChannel::GetBufferFormat(TBufferFormat& aBufferFormat)  
sl@0
   424
	{
sl@0
   425
	return (DoControl(ECtrlGetBufferFormat,&aBufferFormat));
sl@0
   426
	}
sl@0
   427
sl@0
   428
/** Returns the offset in bytes from the start of a plane to the next one, for the
sl@0
   429
    given buffer format.
sl@0
   430
sl@0
   431
    This allows for additional bytes at the end of a plane before the start of the
sl@0
   432
    next one, to allow for alignment, for example.
sl@0
   433
sl@0
   434
    For packed pixel formats and interleaved planes in semi-planar formats, the
sl@0
   435
    return value is zero.
sl@0
   436
    
sl@0
   437
    The current display channel resolution and the rotation is used in computing the
sl@0
   438
    next plane offset.
sl@0
   439
sl@0
   440
    @param aBufferFormat    A buffer width, in pixels.
sl@0
   441
    @param aPlane    The plane number, starting at zero, for planar formats.
sl@0
   442
    @return The next plane offset, in bytes, or zero if the parameters are invalid,
sl@0
   443
    not recognised or not supported.
sl@0
   444
*/
sl@0
   445
inline TInt RDisplayChannel::NextPlaneOffset(const TBufferFormat& aBufferFormat, TInt aPlane) 
sl@0
   446
	{
sl@0
   447
	return (DoControl(ECtrlNextPlaneOffset,const_cast<TBufferFormat*>(&aBufferFormat),&aPlane));
sl@0
   448
	}
sl@0
   449
sl@0
   450
/** Returns the offset in bytes between pixels in adjacent lines, for the given
sl@0
   451
    plane if relevant.
sl@0
   452
sl@0
   453
    The value returned may allow for additional bytes at the end of each line, for
sl@0
   454
    the purposes of alignment, for example. This is also known as the "stride" of
sl@0
   455
    the line.
sl@0
   456
sl@0
   457
    For packed pixel formats, aPlane is ignored. The offset returned shall be at
sl@0
   458
    least the width in pixels multiplied by the bytes per pixel.
sl@0
   459
sl@0
   460
    The current display channel resolution and the rotation is used in computing the
sl@0
   461
    next line offset.
sl@0
   462
    
sl@0
   463
    For planar and semi-planar formats, aPlane dictates which offset is returned.
sl@0
   464
    It must be at least the width in pixels multiplied by the (possibly fractional)
sl@0
   465
    number of bytes per pixel for the plane.
sl@0
   466
sl@0
   467
    @param aBufferFormat    The buffer format.
sl@0
   468
    @param aPlane    The plane number, starting at zero.
sl@0
   469
    @return The stride for a given combination of width in pixels and pixel format,
sl@0
   470
    or zero if the parameters are invalid, not recognised or not supported.
sl@0
   471
*/
sl@0
   472
inline TInt RDisplayChannel::NextLineOffset(const TBufferFormat& aBufferFormat, TInt aPlane) 
sl@0
   473
	{
sl@0
   474
	return (DoControl(ECtrlNextLineOffset,const_cast<TBufferFormat*>(&aBufferFormat),&aPlane));
sl@0
   475
	}
sl@0
   476
sl@0
   477
/** Returns the offset in bytes from the start of a plane to the next one, for the
sl@0
   478
    given parameters.
sl@0
   479
sl@0
   480
    This allows for additional bytes at the end of a plane before the start of the
sl@0
   481
    next one, to allow for alignment, for example.
sl@0
   482
sl@0
   483
    For packed pixel formats and interleaved planes in semi-planar formats, the
sl@0
   484
    return value is zero.
sl@0
   485
sl@0
   486
    For planar and semi-planar formats, aPlane dictates which offset is returned.
sl@0
   487
    It must be at least the width in pixels multiplied by the (possibly fractional)
sl@0
   488
    number of bytes per pixel for the plane.
sl@0
   489
sl@0
   490
    @param aBufferFormat    The buffer format.
sl@0
   491
    @param aResolution	The resolution to be taken in consideration
sl@0
   492
    @param aRotation    The rotation to be taken in consideration
sl@0
   493
    @param aPlane    The plane number, starting at zero.
sl@0
   494
    @return The stride for a given combination of width in pixels and pixel format,
sl@0
   495
    or zero if the parameters are invalid, not recognised or not supported.
sl@0
   496
*/
sl@0
   497
inline TInt RDisplayChannel::NextPlaneOffset(const TBufferFormat& aBufferFormat, const TResolution& aResolution, TDisplayRotation aRotation, TInt aPlane)
sl@0
   498
	{
sl@0
   499
	TBufferFormatContext context(aResolution, aRotation, aPlane);
sl@0
   500
	return (DoControl(ECtrlNextPlaneOffsetExtended, const_cast<TBufferFormat*>(&aBufferFormat), &context));
sl@0
   501
	}
sl@0
   502
sl@0
   503
/** Returns the offset in bytes between pixels in adjacent lines, for the given
sl@0
   504
    plane if relevant.
sl@0
   505
sl@0
   506
    The value returned may allow for additional bytes at the end of each line, for
sl@0
   507
    the purposes of alignment, for example. This is also known as the "stride" of
sl@0
   508
    the line.
sl@0
   509
sl@0
   510
    For packed pixel formats, aPlane is ignored. The offset returned shall be at
sl@0
   511
    least the width in pixels multiplied by the bytes per pixel.
sl@0
   512
sl@0
   513
    For planar and semi-planar formats, aPlane dictates which offset is returned.
sl@0
   514
    It must be at least the width in pixels multiplied by the (possibly fractional)
sl@0
   515
    number of bytes per pixel for the plane.
sl@0
   516
sl@0
   517
    @param aBufferFormat    The buffer format.
sl@0
   518
    @param aResolution	The resolution to be taken in consideration
sl@0
   519
    @param aRotation    The rotation to be taken in consideration
sl@0
   520
    @param aPlane    The plane number, starting at zero.
sl@0
   521
    @return The stride for a given combination of width in pixels and pixel format,
sl@0
   522
    or zero if the parameters are invalid, not recognised or not supported.
sl@0
   523
*/
sl@0
   524
inline TInt RDisplayChannel::NextLineOffset(const TBufferFormat& aBufferFormat, const TResolution& aResolution, TDisplayRotation aRotation, TInt aPlane)
sl@0
   525
	{
sl@0
   526
	TBufferFormatContext context(aResolution, aRotation, aPlane);
sl@0
   527
	return (DoControl(ECtrlNextLineOffsetExtended, const_cast<TBufferFormat*>(&aBufferFormat), &context));
sl@0
   528
	}
sl@0
   529
sl@0
   530
/** Returns the current version of the driver.
sl@0
   531
*/
sl@0
   532
inline TInt RDisplayChannel::Version(TVersion& aVersion) 
sl@0
   533
	{
sl@0
   534
	return (DoControl(ECtrlVersion, &aVersion));
sl@0
   535
	}
sl@0
   536
sl@0
   537
#ifdef _DEBUG
sl@0
   538
/** Debug only function to allocate a shared chunk user buffer for testing.
sl@0
   539
*/
sl@0
   540
inline TInt RDisplayChannel::CreateUserBuffer(TBufferFormat& aBufferFormat, RChunk& aChunk)
sl@0
   541
	{
sl@0
   542
	return (aChunk.SetReturnedHandle(DoControl(ECtrlCreateUserBuffer, &aBufferFormat)));
sl@0
   543
	}
sl@0
   544
#endif // _DEBUG
sl@0
   545
sl@0
   546
/** Constructs a resolution setting.
sl@0
   547
sl@0
   548
    @param aSize    The resolution size in pixels, in ERotationNormal rotation.
sl@0
   549
    @param aRotations    A bitwise combination of one or more TDisplayRotation
sl@0
   550
    values.
sl@0
   551
*/
sl@0
   552
inline RDisplayChannel::TResolution::TResolution(TSize aPixelSize, TSize aTwipsSize, TUint32 aFlags):
sl@0
   553
	iPixelSize(aPixelSize),iTwipsSize(aTwipsSize),iFlags(aFlags),reserved_0(0)
sl@0
   554
	{	}
sl@0
   555
sl@0
   556
/** Constructs a buffer format.
sl@0
   557
sl@0
   558
    @param aSize    The size in pixels.
sl@0
   559
    @param aPixelFormat    The pixel format.
sl@0
   560
*/
sl@0
   561
inline RDisplayChannel::TBufferFormat::TBufferFormat(TSize aSize, TPixelFormat aPixelFormat):
sl@0
   562
	iSize(aSize),iPixelFormat(aPixelFormat),reserved_0(0)
sl@0
   563
	{
sl@0
   564
	}
sl@0
   565
sl@0
   566
sl@0
   567
/** Constructs a buffer context.
sl@0
   568
sl@0
   569
    @param aResolution    The display resolution.
sl@0
   570
    @param aRotation    The display rotation.
sl@0
   571
    @param aPlane
sl@0
   572
*/
sl@0
   573
inline RDisplayChannel::TBufferFormatContext::TBufferFormatContext(TResolution aResolution, TDisplayRotation aRotation, TInt aPlane):
sl@0
   574
	iResolution(aResolution), iRotation(aRotation), iPlane(aPlane)
sl@0
   575
	{
sl@0
   576
	}
sl@0
   577
sl@0
   578
sl@0
   579
#endif
sl@0
   580
sl@0
   581
/**
sl@0
   582
*/
sl@0
   583
inline const TDesC& RDisplayChannel::Name()
sl@0
   584
{
sl@0
   585
 return (KDisplayDriverName);
sl@0
   586
}
sl@0
   587
sl@0
   588
/**
sl@0
   589
*/
sl@0
   590
inline TVersion RDisplayChannel::VersionRequired(void)
sl@0
   591
{
sl@0
   592
	return TVersion(KDisplayChMajorVersionNumber,
sl@0
   593
				    KDisplayChMinorVersionNumber,
sl@0
   594
			        KDisplayChBuildVersionNumber);
sl@0
   595
}
sl@0
   596
sl@0
   597
#endif // __DISPCHANNEL_INL__