os/graphics/graphicsdeviceinterface/screendriver/inc/BmAlphaBlend.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2005-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 "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
#ifndef __BMALPHABLEND_H__
sl@0
    17
#define __BMALPHABLEND_H__
sl@0
    18
sl@0
    19
/**
sl@0
    20
MAlphaBlend interface provides only one method, which does an alpha blending using the 
sl@0
    21
supplied as arguments source and mask bitmap scanline data and writes the result to 
sl@0
    22
the screen. The content of the source and mask bitmap scanlines is preserved.
sl@0
    23
@internalComponent
sl@0
    24
*/
sl@0
    25
class MAlphaBlend
sl@0
    26
    {
sl@0
    27
public:
sl@0
    28
    /**
sl@0
    29
    TShadowing enum values are used in alpha blending implementations to specify when
sl@0
    30
    the shadowing/fading has to be done: before or after tha alpha blending.
sl@0
    31
    @internalComponent
sl@0
    32
    */
sl@0
    33
    enum TShadowing
sl@0
    34
        {
sl@0
    35
        EShdwBefore,
sl@0
    36
        EShdwAfter
sl@0
    37
        };
sl@0
    38
sl@0
    39
    /**
sl@0
    40
    The method performs an alpha blending of the source data - aRgbBuffer and the screen 
sl@0
    41
    pixels, using the data from aMaskBuffer buffer as an alpha blending factor.
sl@0
    42
    The formula used for that, is:
sl@0
    43
    (C1 * A + C2 * (255 - A)) / 255, where:
sl@0
    44
    - C1 - a pixel from aRgbBuffer1;
sl@0
    45
    - C2 - a pixel from screen;
sl@0
    46
    - A  - a pixel from aMaskBuffer;
sl@0
    47
    The content of source and mask buffers is preserved.
sl@0
    48
    The calculated alpha blended pixel is written to the destination - the screen or a bitmap.
sl@0
    49
    @param aX Logical X coordinate of the position in the target the result should be drawn to.
sl@0
    50
    @param aY Logical Y coordinate of the position in the target the result should be drawn to.
sl@0
    51
    @param aLength Source data - length in pixels.
sl@0
    52
    @param aRgbBuffer A pointer to a line of the source bitmap data.
sl@0
    53
    @param aMaskBuffer Buffer containing the data which should be used as an 
sl@0
    54
                       alpha blending factor.
sl@0
    55
    @param aShadowing It says when the shadowing/fading has to be done - before or after the
sl@0
    56
                      alpha blending transformation.
sl@0
    57
                      Before: A shadow/fade copy of the source bitmap will be used.
sl@0
    58
                      After: The result pixels will be shadowed/faded.
sl@0
    59
    @param aDrawMode	The mode for rendering the source image to the destination.
sl@0
    60
    */
sl@0
    61
	virtual void WriteRgbAlphaLine(TInt aX,
sl@0
    62
                                   TInt aY,
sl@0
    63
                                   TInt aLength,
sl@0
    64
                                   const TUint8* aRgbBuffer,
sl@0
    65
                                   const TUint8* aMaskBuffer,
sl@0
    66
                                   TShadowing aShadowing,
sl@0
    67
                                   CGraphicsContext::TDrawMode aDrawMode) = 0;
sl@0
    68
    };
sl@0
    69
sl@0
    70
sl@0
    71
/**
sl@0
    72
MFastBlit provides optimised blitting for a number of special cases.  It is similar to
sl@0
    73
MAlphaBlend except that instead of taking generic buffers as parameters, it takes pointers
sl@0
    74
to scanlines in their native format.
sl@0
    75
@internalTechnology
sl@0
    76
*/
sl@0
    77
class MFastBlit
sl@0
    78
	{
sl@0
    79
public:
sl@0
    80
	/**
sl@0
    81
	Performs Alpha blending.Acceptable source formats are EColor64K and EColor16MU.
sl@0
    82
	Mask format must be EGray256.
sl@0
    83
	@param aX Logical X coordinate of the position in the target the result should be drawn to.
sl@0
    84
	@param aY Logical Y coordinate of the position in the target the result should be drawn to.
sl@0
    85
	@param aLength Source data - length in pixels.
sl@0
    86
	@param aSrcX X coordinate of the position of the first pixel in the source bitmap to use.
sl@0
    87
	@param aSrcPtr Pointer to the start of the current scanline of the source bitmap.
sl@0
    88
	@param aSrcFormat Pixel format of the source bitmap.
sl@0
    89
	@param aMaskX X coordinate of the position of the first pixel in the mask to use.
sl@0
    90
	@param aMaskPtr Pointer to the start of the current scanline of the mask bitmap.
sl@0
    91
	@param aShadowing It says when the shadowing/fading has to be done - before or after the
sl@0
    92
                      alpha blending transformation.
sl@0
    93
                      Before: A shadow/fade copy of the source bitmap will be used.
sl@0
    94
                      After: The result pixels will be shadowed/faded.
sl@0
    95
	*/
sl@0
    96
	virtual void WriteAlphaLineEx(	TInt aX,
sl@0
    97
									TInt aY,
sl@0
    98
									TInt aLength, 
sl@0
    99
									TInt aSrcX,
sl@0
   100
									const TUint32* aSrcPtr,
sl@0
   101
									TDisplayMode aSrcFormat,
sl@0
   102
									TInt aMaskX,
sl@0
   103
									const TUint32* aMaskPtr,
sl@0
   104
									MAlphaBlend::TShadowing aShadowing) = 0;
sl@0
   105
sl@0
   106
	/**
sl@0
   107
	Performs masked blitting.  Acceptable source formats are EColor64K and EColor16MU.
sl@0
   108
	Mask format must be EGray2.
sl@0
   109
	@param aX Logical X coordinate of the position in the target the result should be drawn to.
sl@0
   110
	@param aY Logical Y coordinate of the position in the target the result should be drawn to.
sl@0
   111
	@param aLength Source data - length in pixels.
sl@0
   112
	@param aSrcX X coordinate of the position of the first pixel in the source bitmap to use.
sl@0
   113
	@param aSrcPtr Pointer to the start of the current scanline of the source bitmap.
sl@0
   114
	@param aSrcFormat Pixel format of the source bitmap.
sl@0
   115
	@param aMaskX X coordinate of the position of the first pixel in the mask to use.
sl@0
   116
	@param aMaskPtr Pointer to the start of the current scanline of the mask bitmap.
sl@0
   117
	@param aInvertMask Specifies if the mask shuld be inverted.
sl@0
   118
	*/				
sl@0
   119
	virtual void WriteMaskLineEx(	TInt aX,
sl@0
   120
									TInt aY,
sl@0
   121
									TInt aLength, 
sl@0
   122
									TInt aSrcX,
sl@0
   123
									const TUint32* aSrcPtr,
sl@0
   124
									TDisplayMode aSrcFormat,
sl@0
   125
									TInt aMaskX,
sl@0
   126
									const TUint32* aMaskPtr,
sl@0
   127
									TBool aInvertMask) = 0;
sl@0
   128
sl@0
   129
	};
sl@0
   130
sl@0
   131
sl@0
   132
sl@0
   133
/**
sl@0
   134
MFastBlit2 provides optimised blitting for a number of special cases.
sl@0
   135
It is used for basic blitting where source and destination pixel formats match.
sl@0
   136
@internalTechnology
sl@0
   137
*/
sl@0
   138
class MFastBlit2
sl@0
   139
	{
sl@0
   140
public:
sl@0
   141
	/**
sl@0
   142
	Performs basic blitting.
sl@0
   143
	Source and destination pixel formats must match.
sl@0
   144
	Assumes that aSrcRect is contained by the source device.
sl@0
   145
	Assumes that the resulting destination rectangle is contained by the destination device.
sl@0
   146
	@param aDest           Logical coordinates of the position in the target that the result should be drawn to.
sl@0
   147
	@param aSrcDrawDevice  Draw device that will act as the source of the blit.
sl@0
   148
	@param aSrcRect        The rectangular region of the source to be blitted.
sl@0
   149
	@return                KErrNone unless an error occurs in which case no blitting occurs and a standard error code is returned.
sl@0
   150
	*/
sl@0
   151
	virtual TInt WriteBitmapBlock(const TPoint& aDest,
sl@0
   152
	                              CFbsDrawDevice* aSrcDrawDevice,
sl@0
   153
	                              const TRect& aSrcRect) = 0;
sl@0
   154
	                              
sl@0
   155
	/**
sl@0
   156
	Performs basic blitting.
sl@0
   157
	Source and destination pixel formats must match.
sl@0
   158
	Assumes that aSrcRect is contained by the source device.
sl@0
   159
	Assumes that the resulting destination rectangle is contained by the destination device.
sl@0
   160
	@param aDest       Logical coordinates of the position in the target that the result should be drawn to.
sl@0
   161
	@param aSrcBase    Base address of the source bitmap.
sl@0
   162
	@param aSrcStride  Length in bytes between scanlines of the source bitmap.
sl@0
   163
	@param aSrcSize    Size of the source bitmap in pixels.
sl@0
   164
	@param aSrcRect    The rectangular region of the source to be blitted.
sl@0
   165
	@return            KErrNone unless an error occurs in which case no blitting occurs and a standard error code is returned.
sl@0
   166
	*/				
sl@0
   167
	virtual TInt WriteBitmapBlock(const TPoint& aDest,
sl@0
   168
	                              const TUint32* aSrcBase,
sl@0
   169
	                              TInt aSrcStride,
sl@0
   170
	                              const TSize& aSrcSize,
sl@0
   171
	                              const TRect& aSrcRect) = 0;
sl@0
   172
	/**
sl@0
   173
	Returns a pointer to the first pixel.
sl@0
   174
	@return a pointer to the first pixel.
sl@0
   175
	*/				
sl@0
   176
	virtual const TUint32* Bits() const = 0;
sl@0
   177
	};
sl@0
   178
sl@0
   179
/**
sl@0
   180
MOutlineAndShadowBlend provides blending of outline pen, shadow, fill and the background colour.
sl@0
   181
It is used to draw the fonts with outline and shadow effects.
sl@0
   182
@internalTechnology
sl@0
   183
*/
sl@0
   184
class MOutlineAndShadowBlend
sl@0
   185
	{
sl@0
   186
	public:
sl@0
   187
		/**
sl@0
   188
		Performs blending of outline, shadow, fill and background colours and draws to the 
sl@0
   189
		screen. It uses pen colour as outline colour, brush colour as fill colour and pixel
sl@0
   190
		colour as background colour. Transparency is supported for modes higher than EColor256,
sl@0
   191
		alpha value of pen colour is used for same in these modes and other modes ignore this 
sl@0
   192
		value.
sl@0
   193
		@param aX Logical X coordinate of the start of the line.
sl@0
   194
		@param aY Logical Y coordinate of the line.
sl@0
   195
		@param aLength Length in pixels to modify.
sl@0
   196
		@param aOutlinePenColor	Outline pen colour of the font.
sl@0
   197
		@param aShadowColor Shadow colour of the font.
sl@0
   198
		@param aFillColor Fill colour of the font.
sl@0
   199
		@param aDataBuffer Buffer containing the data.
sl@0
   200
		@return	KErrNone if it is successful, otherwise a standard error code is returned.
sl@0
   201
		*/
sl@0
   202
		virtual TInt WriteRgbOutlineAndShadow(TInt aX, TInt aY, const TInt aLength, 
sl@0
   203
		                                   TUint32 aOutlinePenColor, TUint32 aShadowColor, 
sl@0
   204
		                                   TUint32 aFillColor, const TUint8* aDataBuffer) = 0;
sl@0
   205
	};
sl@0
   206
sl@0
   207
class MFastBlend
sl@0
   208
	{
sl@0
   209
public:
sl@0
   210
	/**
sl@0
   211
	Performs blended blitting.
sl@0
   212
	The interface can selectively supports various combinations of source and destination.
sl@0
   213
	Assumes that aSrcRect is contained by the source device.
sl@0
   214
	Assumes that the resulting destination rectangle is contained by the destination device.
sl@0
   215
	@param aDest           Logical coordinates of the position in the target that the result should be drawn to.
sl@0
   216
	@param aSrcDrawDevice  Draw device that will act as the source of the blit.
sl@0
   217
	@param aSrcRect        The rectangular region of the source to be blitted.
sl@0
   218
	@param aDrawMode	Current draw mode
sl@0
   219
	@param aShadowMode	Current shadow mode
sl@0
   220
	@return                if display modes supported KErrNone, else KErrNotSupported.
sl@0
   221
	*/
sl@0
   222
	virtual TInt FastBlendBitmap(const TPoint& aDest,
sl@0
   223
	                              CFbsDrawDevice* aSrcDrawDevice,
sl@0
   224
	                              const TRect& aSrcRect,
sl@0
   225
	                              CGraphicsContext::TDrawMode aDrawMode,
sl@0
   226
	                              TInt aShadowMode) = 0;
sl@0
   227
	/**
sl@0
   228
	Performs blended blitting.
sl@0
   229
	The interface can selectively supports various combinations of source and destination.
sl@0
   230
	Assumes that aSrcRect is contained by the source device.
sl@0
   231
	Assumes that the resulting destination rectangle is contained by the destination device.
sl@0
   232
	@param aDest		Logical coordinates of the position in the target that the result should be drawn to.
sl@0
   233
	@param aSrcBase		Base address of the source bitmap.
sl@0
   234
	@param aSrcStride	Length in bytes between scanlines of the source bitmap.
sl@0
   235
	@param aSrcSize		Size of the source bitmap in pixels.
sl@0
   236
	@param aSrcRect		The rectangular region of the source to be blitted.
sl@0
   237
	@param aSrcDisplayMode Display mode of the source bitmap
sl@0
   238
	@param aDrawMode	Current draw mode
sl@0
   239
	@param aShadowMode	Current shadow mode
sl@0
   240
	@return				if display modes supported KErrNone, else KErrNotSupported.
sl@0
   241
	*/
sl@0
   242
	virtual TInt FastBlendBitmap(const TPoint& aDest,const TUint32* aSrcBase,TInt aSrcStride,
sl@0
   243
	                              const TSize& aSrcSize,const TRect& aSrcRect,TDisplayMode aSrcDisplayMode,
sl@0
   244
	                              CGraphicsContext::TDrawMode aDrawMode,TInt aShadowMode) = 0;
sl@0
   245
	/**
sl@0
   246
	Performs blended blitting.
sl@0
   247
	The interface can selectively supports various combinations of source and destination.
sl@0
   248
	Assumes that aSrcRect is contained by the source device.
sl@0
   249
	Assumes that the resulting destination rectangle is contained by the destination device.
sl@0
   250
	@param aDest		Logical coordinates of the position in the target that the result should be drawn to.
sl@0
   251
	@param aSrcBase		Base address of the source bitmap.
sl@0
   252
	@param aSrcStride	Length in bytes between scanlines of the source bitmap.
sl@0
   253
	@param aSrcSize		Size of the source bitmap in pixels.
sl@0
   254
	@param aSrcRect		The rectangular region of the source to be blitted.
sl@0
   255
	@param aSrcDisplayMode Display mode of the source bitmap
sl@0
   256
	@param aMaskBase	Base address of the source bitmap.
sl@0
   257
	@param aMaskStride	Length in bytes between scanlines of the source bitmap.
sl@0
   258
	@param aMaskDisplayMode Display mode of the source bitmap
sl@0
   259
	@param aMaskSize	Size of the source bitmap in pixels.
sl@0
   260
	@param aInvertMask	If true invert the logic of an EGray2 mask
sl@0
   261
	@param aDrawMode	Current draw mode
sl@0
   262
	@param aShadowMode	Current shadow mode
sl@0
   263
	@return				if display modes supported KErrNone, else KErrNotSupported.
sl@0
   264
	*/
sl@0
   265
	virtual TInt FastBlendBitmapMasked(const TPoint& aDest, const TUint32* aSrcBase, TInt aSrcStride,
sl@0
   266
							const TSize& aSrcSize, const TRect& aSrcRect, TDisplayMode aSrcDisplayMode,
sl@0
   267
							const TUint32* aMaskBase, TInt aMaskStride, TDisplayMode aMaskDisplayMode, const TSize &aMaskSize,const TPoint &aMaskSrcPos, TBool aInvertMask,
sl@0
   268
							CGraphicsContext::TDrawMode aDrawMode, TInt aShadowMode)=0;
sl@0
   269
	/**
sl@0
   270
	Performs scaled blended blitting.
sl@0
   271
	The interface can selectively supports various combinations of source and destination.
sl@0
   272
	Assumes that aClipRect is contained by the source device.
sl@0
   273
	Assumes that the resulting destination rectangle is contained by the destination device.
sl@0
   274
	@param aClipRect	The target rectangle to clip drawing to
sl@0
   275
	@param aDest		Logical coordinates of the position in the target that the result should be drawn to.
sl@0
   276
	@param aSrcRect		Source rectangle
sl@0
   277
	@param aSrcBase		Base address of the source bitmap.
sl@0
   278
	@param aSrcStride	Length in bytes between scanlines of the source bitmap.
sl@0
   279
	@param aSrcDisplayMode Display mode of the source bitmap
sl@0
   280
	@param aSrcSize		Size of the source bitmap in pixels.
sl@0
   281
	@param aDrawMode	Current draw mode
sl@0
   282
	@param aShadowMode	Current shadow mode
sl@0
   283
	@return				if display modes supported KErrNone, else KErrNotSupported.
sl@0
   284
	*/
sl@0
   285
	virtual TInt FastBlendBitmapScaled(const TRect &aClipRect, const TRect& aDest,
sl@0
   286
							const TRect& aSrcRect, const TUint32 *aSrcBase, TInt aSrcStride,
sl@0
   287
							TDisplayMode aSrcDisplayMode, const TSize &aSrcSize,
sl@0
   288
							CGraphicsContext::TDrawMode aDrawMode, TInt aShadowMode) = 0;
sl@0
   289
	/**
sl@0
   290
	Performs scaled blended blitting.
sl@0
   291
	The interface can selectively supports various combinations of source and destination.
sl@0
   292
	Assumes that aClipRect is contained by the source device.
sl@0
   293
	Assumes that the resulting destination rectangle is contained by the destination device.
sl@0
   294
	@param aClipRect	The target rectangle to clip drawing to
sl@0
   295
	@param aDest		Logical coordinates of the position in the target that the result should be drawn to.
sl@0
   296
	@param aSrcRect		Source rectangle
sl@0
   297
	@param aSrcBase		Base address of the source bitmap.
sl@0
   298
	@param aSrcStride	Length in bytes between scanlines of the source bitmap.
sl@0
   299
	@param aSrcDisplayMode Display mode of the source bitmap
sl@0
   300
	@param aSrcSize		Size of the source bitmap in pixels.
sl@0
   301
	@param aMaskBase	Base address of the source bitmap.
sl@0
   302
	@param aMaskStride	Length in bytes between scanlines of the source bitmap.
sl@0
   303
	@param aMaskDisplayMode Display mode of the source bitmap
sl@0
   304
	@param aMaskSize	Size of the source bitmap in pixels.
sl@0
   305
	@param aInvertMask	If true invert the logic of an EGray2 mask
sl@0
   306
	@param aDrawMode	Current draw mode
sl@0
   307
	@param aShadowMode	Current shadow mode
sl@0
   308
	@return				if display modes supported KErrNone, else KErrNotSupported.
sl@0
   309
	*/
sl@0
   310
	virtual TInt FastBlendBitmapMaskedScaled(const TRect &aClipRect, const TRect& aDest,
sl@0
   311
							const TRect& aSrcRect, const TUint32 *aSrcBase, TInt aSrcStride,
sl@0
   312
							TDisplayMode aSrcDisplayMode, const TSize &aSrcSize,
sl@0
   313
							const TUint32* aMaskBase, TInt aMaskStride, TDisplayMode aMaskDisplayMode, const TSize &aMaskSize,TBool aInvertMask,
sl@0
   314
							CGraphicsContext::TDrawMode aDrawMode, TInt aShadowMode) = 0;
sl@0
   315
	};
sl@0
   316
sl@0
   317
#endif//__BMALPHABLEND_H__