diff -r 29ddb8a72f0e -r 9f1c3fea0f87 fbs/fontandbitmapserver/tfbs/TFbsServer.cpp --- a/fbs/fontandbitmapserver/tfbs/TFbsServer.cpp Tue Jul 06 15:45:57 2010 +0300 +++ b/fbs/fontandbitmapserver/tfbs/TFbsServer.cpp Wed Aug 18 11:05:09 2010 +0300 @@ -1,4 +1,4 @@ -// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). +// Copyright (c) 2005-2010 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" @@ -38,8 +38,12 @@ #include "textendedbitmappanic.h" #include "twdp.h" #include "tfonttableandglyph.h" +#include "tfbsglyphdata.h" +#include "tfbsglyphdatapanic.h" +#include "tfbsglyphdataoutlineshadow.h" +#include "tglyphatlas.h" +#include "tfbsoogm.h" - /* Path to the script z:\GraphicsTest\fbstest.script @@ -196,9 +200,29 @@ testStep = new CTWDPStep(); } else if(aStepName == KTFontTableAndGlyphStep) - { - testStep = new CTFontAndGlyphStep(); - } - + { + testStep = new CTFontAndGlyphStep(); + } + else if(aStepName == KTFbsGlyphDataStep) + { + testStep = new CTFbsGlyphDataStep(); + } + else if(aStepName == KTFbsGlyphDataPanicStep) + { + testStep = new CTFbsGlyphDataPanicStep(); + } + else if(aStepName == KTFbsGlyphDataOutlineAndShadowStep) + { + testStep = new CTFbsGlyphDataOutlineAndShadowStep(); + } + else if(aStepName == KTGlyphAtlasStep) + { + testStep = new CTGlyphAtlasStep(); + } + else if(aStepName == KTFbsOogmStep) + { + testStep = new CTFbsOogmStep(); + } + return testStep; }