os/graphics/graphicsdeviceinterface/screendriver/smomap/sccol32a.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2006-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
// This module implements the class for a 32a bpp unpack color screen.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
*/
sl@0
    21
sl@0
    22
#include <hal.h>
sl@0
    23
#include <e32std.h>
sl@0
    24
#include <bitdraw.h>
sl@0
    25
#include "scdraw.h"
sl@0
    26
sl@0
    27
sl@0
    28
void CDrawThirtyTwoBppScreenBitmapAlpha::SetSize(const TSize& aSize) 
sl@0
    29
	{
sl@0
    30
    CDrawBitmap::SetSize(aSize);
sl@0
    31
    __ASSERT_DEBUG(iSize == aSize, User::Invariant());
sl@0
    32
	iLongWidth = iScanLineWords;
sl@0
    33
	}
sl@0
    34
sl@0
    35
void CDrawThirtyTwoBppScreenBitmapAlpha::SetDisplayMode(CFbsDrawDevice* aDrawDevice)
sl@0
    36
	{
sl@0
    37
	CopyOldSettings(aDrawDevice) ;
sl@0
    38
	InitScreen() ;
sl@0
    39
	}
sl@0
    40
sl@0
    41
TInt CDrawThirtyTwoBppScreenBitmapAlpha::HorzTwipsPerThousandPixels() const
sl@0
    42
	{
sl@0
    43
	if (iSize.iWidth == 0)
sl@0
    44
		return 0;
sl@0
    45
	
sl@0
    46
    TInt displayMode;
sl@0
    47
    TInt r = HAL::Get(iScreenNo, HAL::EDisplayMode, displayMode);
sl@0
    48
    if (r != KErrNone)
sl@0
    49
    	return 0;
sl@0
    50
    
sl@0
    51
    TInt width = displayMode;
sl@0
    52
    r = HAL::Get(iScreenNo, HAL::EDisplayXTwips, width);
sl@0
    53
	if (r != KErrNone)
sl@0
    54
    	return 0;
sl@0
    55
   
sl@0
    56
    return (width * 1000) / iSize.iWidth;
sl@0
    57
	}
sl@0
    58
sl@0
    59
TInt CDrawThirtyTwoBppScreenBitmapAlpha::VertTwipsPerThousandPixels() const
sl@0
    60
	{
sl@0
    61
	if (iSize.iHeight == 0)
sl@0
    62
		return 0;
sl@0
    63
sl@0
    64
    TInt displayMode;
sl@0
    65
    TInt r = HAL::Get(iScreenNo, HAL::EDisplayMode, displayMode);
sl@0
    66
    if (r != KErrNone)
sl@0
    67
    	return 0;
sl@0
    68
    TInt height = displayMode;
sl@0
    69
    r = HAL::Get(iScreenNo, HAL::EDisplayYTwips, height);
sl@0
    70
    if (r != KErrNone)
sl@0
    71
    	return 0;
sl@0
    72
sl@0
    73
    return (height * 1000) / iSize.iHeight;
sl@0
    74
	}
sl@0
    75
sl@0
    76
TInt CDrawThirtyTwoBppScreenBitmapAlpha::InitScreen()
sl@0
    77
	{
sl@0
    78
	return KErrNone ;
sl@0
    79
	}
sl@0
    80
sl@0
    81
TInt CDrawThirtyTwoBppScreenBitmapAlpha::ConstructScreenL(TInt aScreenNo, TAny* aBitmapAddress, TSize aSize)
sl@0
    82
	{
sl@0
    83
	iScreenNo = aScreenNo;
sl@0
    84
    TInt displayMode;
sl@0
    85
    TInt ret = HAL::Get(aScreenNo, HALData::EDisplayMode, displayMode);
sl@0
    86
    if (ret != KErrNone)
sl@0
    87
    	return ret;
sl@0
    88
    
sl@0
    89
    TInt linepitchInBytes = displayMode;
sl@0
    90
    ret = HAL::Get(aScreenNo,HALData::EDisplayOffsetBetweenLines,linepitchInBytes);
sl@0
    91
    if (ret != KErrNone)
sl@0
    92
    	return ret;
sl@0
    93
        
sl@0
    94
	iScanLineWords = linepitchInBytes / 4;
sl@0
    95
	ret = CDrawThirtyTwoBppBitmapAlpha::Construct(aSize);
sl@0
    96
	if (ret != KErrNone)
sl@0
    97
		return ret;
sl@0
    98
	
sl@0
    99
	TInt offsetToFirstPixel = displayMode;
sl@0
   100
	ret = HAL::Get(aScreenNo,HALData::EDisplayOffsetToFirstPixel, offsetToFirstPixel);
sl@0
   101
	if (ret != KErrNone)
sl@0
   102
		return ret;
sl@0
   103
    
sl@0
   104
	iBits = (TUint32*)((TUint32)aBitmapAddress + offsetToFirstPixel);
sl@0
   105
	return KErrNone;
sl@0
   106
	}
sl@0
   107
sl@0
   108
void CDrawThirtyTwoBppScreenBitmapAlpha::OrientationsAvailable(TBool aOrientation[4])
sl@0
   109
	{
sl@0
   110
	aOrientation[EOrientationNormal]     = ETrue ;
sl@0
   111
	aOrientation[EOrientationRotated90]  = ETrue ;
sl@0
   112
	aOrientation[EOrientationRotated180] = ETrue ;
sl@0
   113
	aOrientation[EOrientationRotated270] = ETrue ;
sl@0
   114
	}
sl@0
   115
sl@0
   116
TBool CDrawThirtyTwoBppScreenBitmapAlpha::SetOrientation(TOrientation aOrientation)
sl@0
   117
	{
sl@0
   118
	iOrientation = aOrientation ;
sl@0
   119
	return ETrue ;
sl@0
   120
	}
sl@0
   121
sl@0
   122