windowing/windowserver/tbufferdrawer/bufferdrawer.cpp
author Gareth Stockwell <gareth.stockwell@accenture.com>
Fri, 05 Nov 2010 17:31:20 +0000
branchbug235_bringup_0
changeset 215 097e92a68d68
parent 0 5d03bc08d59c
permissions -rw-r--r--
Added GLES 1.x spinning cube-rendering code to eglbringuptest The coordinate, color and index data are uploaded to server-side buffers by the CGLES1Cube::KhrSetup function. CGLES1Cube::KhrPaint just sets the view matrix and issues a draw command. Which demo to display can be selected by passing its name on the command line, e.g. eglbringuptest vgline eglbringuptest gles1cube If no name is provided, the application defaults to vgline.

// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
//

/**
 @file
 @test
 @internalComponent - Internal Symbian test code
*/

#include "bufferdrawer.h"
#include <s32mem.h>
#include <s32strm.h>
#include <fbs.h>
#include <bitdev.h>
#include <bitstd.h>
#include <graphics/wsgraphicscontext.h>
#include <graphics/wsuibuffer.h>


// CWsGraphicDrawer	
CWsBufferGraphicDrawer* CWsBufferGraphicDrawer::NewL()
	{
	return new(ELeave) CWsBufferGraphicDrawer;	
	}
	
CWsBufferGraphicDrawer::~CWsBufferGraphicDrawer()
	{
	}

void CWsBufferGraphicDrawer::ConstructL(MWsGraphicDrawerEnvironment& aEnv, const TGraphicDrawerId& aId, MWsClient& aOwner, const TDesC8& /*aData*/)
	{
	BaseConstructL(aEnv, aId, aOwner);
 	// default white line number
	iWhiteLinePos = 0;
 	}

void CWsBufferGraphicDrawer::HandleMessage(const TDesC8& aData)
	{
	TInt linePos = aData[0];
	DoUpdateWhiteLinePos(linePos);
	}

void CWsBufferGraphicDrawer::DoUpdateWhiteLinePos(TInt aWhiteLinePos)
	{
	iWhiteLinePos = aWhiteLinePos;
	// Invalidate the redrawing
	Invalidate();
	}

void CWsBufferGraphicDrawer::DoDraw(MWsGc& aGc, const TRect& aRect, const TDesC8& /*aData*/) const
	{
	MWsGraphicsContext* context = static_cast<MWsGraphicsContext*>(aGc.ResolveObjectInterface(KMWsGraphicsContext));
	
	//Draw a filled rect with the chosen color
	context->Push();
	context->SetBrushStyle(MWsGraphicsContext::ESolidBrush);
	context->SetBrushColor(KRgbBlue);
	context->DrawRect(aRect);
	context->Pop();
	
	//Obtain access to the screen/OSB buffer
	MWsUiBuffer* buffer = static_cast<MWsUiBuffer*>(aGc.ResolveObjectInterface(KMWsUiBufferInterfaceId));
	TAny* data;
	TInt stride;
	
	TInt err = buffer->MapReadWrite(data, stride);
	
	if (err == KErrNone)
		{
		//Fill the chosen line with white
		TUint8* scanLine = static_cast<TUint8*>(data);
		scanLine += stride * iWhiteLinePos;
		Mem::Fill(scanLine, stride, 0xFF);
	
		buffer->Unmap();
		}
	}