os/graphics/windowing/windowserver/test/ttime/TTGRAPH.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) 1996-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
// used for timing graphics
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include "TTIME.H"
sl@0
    19
sl@0
    20
#define TEST_BITMAP_NAME _L("Z:\\WSTEST\\TEST.MBM")
sl@0
    21
sl@0
    22
GLREF_C void Panic(TInt aPanic);
sl@0
    23
sl@0
    24
enum TFuncType
sl@0
    25
	{
sl@0
    26
	EBitmapTest,
sl@0
    27
	EXorTest,
sl@0
    28
	ESmallClearTest,
sl@0
    29
	ERectCompareTest,
sl@0
    30
	EUseFontTest,
sl@0
    31
	EBitBltTest,
sl@0
    32
	EFullScreenBitBltTest,
sl@0
    33
	EMaskedBitBltTest,
sl@0
    34
	EFillPatternTest,
sl@0
    35
	EBackupWindowDrawingTest,
sl@0
    36
	};
sl@0
    37
sl@0
    38
class TGraphicsTest : public CBase
sl@0
    39
	{
sl@0
    40
public:
sl@0
    41
	void DoTestL(TInt aOwningGroup, TFuncType aFunc, TInt aParam1, TAny *aParam2);
sl@0
    42
	void DrawBitmapTestL(TInt aParam1, TAny *aParam2);
sl@0
    43
	void XorTest(TInt aParam1, TAny *aParam2);
sl@0
    44
	void SmallClearTest(TInt , TAny *);
sl@0
    45
	void RectCompareTest(TInt , TAny *);
sl@0
    46
	void UseFontTestL(TInt , TAny *);
sl@0
    47
	void BitBltTestL(TInt , TAny *);
sl@0
    48
	void FullScreenBitBltTestL(TInt , TAny *);
sl@0
    49
	void MaskedBitBltTestL(TInt , TAny *);
sl@0
    50
	void FillPatternTestL(TInt , TAny *);
sl@0
    51
	void BackedUpWindowDrawingL(TInt aMode, TAny *);
sl@0
    52
private:
sl@0
    53
	RWsSession iWs;
sl@0
    54
	CWsScreenDevice *iDevice;
sl@0
    55
	RWindowGroup iGroup;
sl@0
    56
	RWindow iWindow;
sl@0
    57
	RBackedUpWindow iBackedUpWindow;
sl@0
    58
	RDrawableWindow *iWindowPtr;
sl@0
    59
	CWindowGc *iGc;
sl@0
    60
	};
sl@0
    61
	
sl@0
    62
TInt CreateGraphicsTest(TInt aOwningGroup, TFuncType aFunc, TInt aParam1, TAny *aParam2)
sl@0
    63
	{
sl@0
    64
	TGraphicsTest *iTest=NULL;
sl@0
    65
	TRAPD(err,iTest=new(ELeave) TGraphicsTest());
sl@0
    66
	if (err==KErrNone)
sl@0
    67
		{
sl@0
    68
		TRAP(err,iTest->DoTestL(aOwningGroup, aFunc, aParam1, aParam2));
sl@0
    69
		delete iTest;
sl@0
    70
		}
sl@0
    71
	return(err);
sl@0
    72
	}
sl@0
    73
sl@0
    74
void TGraphicsTest::DoTestL(TInt aOwningGroup, TFuncType aFunc, TInt aParam1, TAny *aParam2)
sl@0
    75
	{
sl@0
    76
	iWs.Connect();
sl@0
    77
	iDevice=new(ELeave) CWsScreenDevice(iWs);
sl@0
    78
	iDevice->Construct();
sl@0
    79
	iGroup=RWindowGroup(iWs);
sl@0
    80
	iGroup.Construct(ENullWsHandle);
sl@0
    81
	iGroup.SetOwningWindowGroup(aOwningGroup);
sl@0
    82
//
sl@0
    83
	if (aFunc==EBackupWindowDrawingTest)
sl@0
    84
		{
sl@0
    85
		iBackedUpWindow=RBackedUpWindow(iWs);
sl@0
    86
		iWindowPtr=&iBackedUpWindow;
sl@0
    87
		iBackedUpWindow.Construct(iGroup,EGray4,ENullWsHandle);
sl@0
    88
		}
sl@0
    89
	else
sl@0
    90
		{
sl@0
    91
		iWindow=RWindow(iWs);
sl@0
    92
		iWindowPtr=&iWindow;
sl@0
    93
		iWindow.Construct(iGroup,ENullWsHandle);
sl@0
    94
		}
sl@0
    95
	User::LeaveIfError(iWindowPtr->SetExtentErr(TPoint(), iDevice->SizeInPixels()));
sl@0
    96
	iWindowPtr->Activate();
sl@0
    97
	//
sl@0
    98
	iDevice->CreateContext(iGc);
sl@0
    99
	iGc->Activate(*iWindowPtr);
sl@0
   100
	if (iWindowPtr==&iWindow)
sl@0
   101
		{
sl@0
   102
		iWindow.BeginRedraw();
sl@0
   103
		iGc->Clear();
sl@0
   104
		iWindow.EndRedraw();
sl@0
   105
		}
sl@0
   106
	switch(aFunc)
sl@0
   107
		{
sl@0
   108
		case EBitmapTest:
sl@0
   109
			DrawBitmapTestL(aParam1, aParam2);
sl@0
   110
			break;
sl@0
   111
		case EXorTest:
sl@0
   112
			XorTest(aParam1, aParam2);
sl@0
   113
			break;
sl@0
   114
		case ESmallClearTest:
sl@0
   115
			SmallClearTest(aParam1, aParam2);
sl@0
   116
			break;
sl@0
   117
		case ERectCompareTest:
sl@0
   118
			RectCompareTest(aParam1, aParam2);
sl@0
   119
			break;
sl@0
   120
		case EUseFontTest:
sl@0
   121
			UseFontTestL(aParam1, aParam2);
sl@0
   122
			break;
sl@0
   123
		case EBitBltTest:
sl@0
   124
			BitBltTestL(aParam1, aParam2);
sl@0
   125
			break;
sl@0
   126
		case EFullScreenBitBltTest:
sl@0
   127
			FullScreenBitBltTestL(aParam1, aParam2);
sl@0
   128
			break;
sl@0
   129
		case EMaskedBitBltTest:
sl@0
   130
			MaskedBitBltTestL(aParam1, aParam2);
sl@0
   131
			break;
sl@0
   132
		case EFillPatternTest:
sl@0
   133
			FillPatternTestL(aParam1, aParam2);
sl@0
   134
			break;
sl@0
   135
		case EBackupWindowDrawingTest:
sl@0
   136
			BackedUpWindowDrawingL(aParam1, aParam2);
sl@0
   137
			break;
sl@0
   138
		default:;
sl@0
   139
		}
sl@0
   140
//
sl@0
   141
	delete iGc;
sl@0
   142
	iWindowPtr->Close();
sl@0
   143
	iGroup.Close();
sl@0
   144
	delete iDevice;
sl@0
   145
	iWs.Close();
sl@0
   146
	}
sl@0
   147
sl@0
   148
// Draw bitmap //
sl@0
   149
sl@0
   150
void TGraphicsTest::DrawBitmapTestL(TInt , TAny *)
sl@0
   151
	{
sl@0
   152
	CFbsBitmap *bitmap=new(ELeave) CFbsBitmap;
sl@0
   153
	User::LeaveIfError(bitmap->Load(TEST_BITMAP_NAME,0));
sl@0
   154
	for(TInt nTimes=0;nTimes<10;nTimes++)
sl@0
   155
		{
sl@0
   156
		iGc->Clear();
sl@0
   157
		TSize size(iDevice->SizeInPixels());
sl@0
   158
		iGc->DrawBitmap(TRect(-size.iWidth,-size.iHeight,size.iWidth<<1,size.iHeight<<1),bitmap);
sl@0
   159
		iWs.Flush();
sl@0
   160
		}
sl@0
   161
	delete bitmap;
sl@0
   162
	}
sl@0
   163
sl@0
   164
TInt DrawBitmapTestFunc(TInt aOwningGroup)
sl@0
   165
	{
sl@0
   166
	return(CreateGraphicsTest(aOwningGroup, EBitmapTest, 0, NULL));
sl@0
   167
	}
sl@0
   168
sl@0
   169
GLDEF_D TTimeTestHeader DrawBitmapTest={_S("Draw bitmap"),DrawBitmapTestFunc};
sl@0
   170
sl@0
   171
// XOR Test //
sl@0
   172
sl@0
   173
void TGraphicsTest::XorTest(TInt , TAny *)
sl@0
   174
	{
sl@0
   175
	iGc->SetDrawMode(CGraphicsContext::EDrawModeXOR);
sl@0
   176
	iGc->SetBrushColor(TRgb::Gray256(255));
sl@0
   177
	iGc->SetPenStyle(CGraphicsContext::ENullPen);
sl@0
   178
	iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
sl@0
   179
	for(TInt count=0;count<10;count++)
sl@0
   180
		{
sl@0
   181
		for(TInt wid=1;wid<320;wid+=3)
sl@0
   182
			{
sl@0
   183
			iGc->DrawRect(TRect(10,10,10+wid,150));
sl@0
   184
	//		iWs.Flush();
sl@0
   185
			}
sl@0
   186
		}
sl@0
   187
	}
sl@0
   188
sl@0
   189
TInt XorIngTestFunc(TInt aOwningGroup)
sl@0
   190
	{
sl@0
   191
	return(CreateGraphicsTest(aOwningGroup, EXorTest, 0, NULL));
sl@0
   192
	}
sl@0
   193
sl@0
   194
GLDEF_D TTimeTestHeader XorIngTest={_S("Xor'ing"),XorIngTestFunc};
sl@0
   195
sl@0
   196
// XOR Test //
sl@0
   197
sl@0
   198
void TGraphicsTest::SmallClearTest(TInt , TAny *)
sl@0
   199
	{
sl@0
   200
	iGc->SetBrushColor(TRgb::Gray256(255));
sl@0
   201
	iGc->SetPenStyle(CGraphicsContext::ENullPen);
sl@0
   202
	iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
sl@0
   203
	for(TInt count=0;count<500;count++)
sl@0
   204
		{
sl@0
   205
		for(TInt wid=1;wid<30;wid++)
sl@0
   206
			{
sl@0
   207
			iGc->DrawRect(TRect(1,0,10+wid,100));
sl@0
   208
//			iWs.Flush();
sl@0
   209
			}
sl@0
   210
		}
sl@0
   211
	}
sl@0
   212
sl@0
   213
TInt SmallClearTestFunc(TInt aOwningGroup)
sl@0
   214
	{
sl@0
   215
	return(CreateGraphicsTest(aOwningGroup, ESmallClearTest, 0, NULL));
sl@0
   216
	}
sl@0
   217
sl@0
   218
GLDEF_D TTimeTestHeader SmallClearTest={_S("Small clear rect"),SmallClearTestFunc};
sl@0
   219
sl@0
   220
// XOR Test //
sl@0
   221
sl@0
   222
enum {EMaxWidth=100};
sl@0
   223
sl@0
   224
void TGraphicsTest::RectCompareTest(TInt , TAny *)
sl@0
   225
	{
sl@0
   226
	TSize size(iDevice->SizeInPixels());
sl@0
   227
	for(TInt count=0;count<10;count++)
sl@0
   228
		iDevice->RectCompare(TRect(0,0,size.iWidth>>1,size.iHeight),TRect(size.iWidth>>1,0,size.iWidth,size.iHeight));
sl@0
   229
	}
sl@0
   230
sl@0
   231
TInt RectCompareTestFunc(TInt aOwningGroup)
sl@0
   232
	{
sl@0
   233
	return(CreateGraphicsTest(aOwningGroup, ERectCompareTest, 0, NULL));
sl@0
   234
	}
sl@0
   235
sl@0
   236
GLDEF_D TTimeTestHeader RectCompareTest={_S("RectCompare"),RectCompareTestFunc};
sl@0
   237
sl@0
   238
// Use Font //
sl@0
   239
sl@0
   240
void TGraphicsTest::UseFontTestL(TInt , TAny *)
sl@0
   241
	{
sl@0
   242
	CFbsFont *font;
sl@0
   243
	TFontSpec fspec(KTestFontTypefaceName,200);
sl@0
   244
	User::LeaveIfError(iDevice->GetNearestFontToDesignHeightInTwips((CFont *&)font, fspec));
sl@0
   245
	for(TInt count=0;count<1000;count++)
sl@0
   246
		iGc->UseFont(font);
sl@0
   247
	iDevice->ReleaseFont(font);
sl@0
   248
	}
sl@0
   249
sl@0
   250
TInt UseFontTestFunc(TInt aOwningGroup)
sl@0
   251
	{
sl@0
   252
	return(CreateGraphicsTest(aOwningGroup, EUseFontTest, 0, NULL));
sl@0
   253
	}
sl@0
   254
sl@0
   255
GLDEF_D TTimeTestHeader UseFontTest={_S("UseFont(x1000)"),UseFontTestFunc};
sl@0
   256
sl@0
   257
// Small BitBlt //
sl@0
   258
sl@0
   259
void TGraphicsTest::BitBltTestL(TInt , TAny *)
sl@0
   260
	{
sl@0
   261
	CWsBitmap *bitmap=new(ELeave) CWsBitmap(iWs);
sl@0
   262
	TSize size(25,50);
sl@0
   263
	bitmap->Create(size,EGray4);
sl@0
   264
	CFbsDevice *bitmapDevice=CFbsBitmapDevice::NewL(bitmap);
sl@0
   265
	CFbsBitGc *gc=CFbsBitGc::NewL();
sl@0
   266
	gc->Activate(bitmapDevice);
sl@0
   267
	gc->DrawEllipse(TRect(size));
sl@0
   268
	delete gc;
sl@0
   269
	delete bitmapDevice;
sl@0
   270
	for(TInt count=0;count<10;count++)
sl@0
   271
		{
sl@0
   272
		iGc->Clear();
sl@0
   273
		TPoint pos(0,0);
sl@0
   274
		for(TInt xcount=0;xcount<25;xcount++,pos.iX+=size.iWidth)
sl@0
   275
			{
sl@0
   276
			pos.iY=0;
sl@0
   277
			for(TInt ycount=0;ycount<4;ycount++,pos.iY+=size.iHeight)
sl@0
   278
				iGc->BitBlt(pos,bitmap);
sl@0
   279
			}
sl@0
   280
		}
sl@0
   281
	delete bitmap;
sl@0
   282
	}
sl@0
   283
sl@0
   284
TInt BitBltTestFunc(TInt aOwningGroup)
sl@0
   285
	{
sl@0
   286
	return(CreateGraphicsTest(aOwningGroup, EBitBltTest, 0, NULL));
sl@0
   287
	}
sl@0
   288
sl@0
   289
GLDEF_D TTimeTestHeader BitBltTest={_S("BitBlt"),BitBltTestFunc};
sl@0
   290
sl@0
   291
// Full Screen BitBlt //
sl@0
   292
sl@0
   293
void TGraphicsTest::FullScreenBitBltTestL(TInt , TAny *)
sl@0
   294
	{
sl@0
   295
	CWsBitmap *bitmap=new(ELeave) CWsBitmap(iWs);
sl@0
   296
	TSize size(640,240);
sl@0
   297
	User::LeaveIfError(bitmap->Create(size,EGray4));
sl@0
   298
	CFbsDevice *bitmapDevice=CFbsBitmapDevice::NewL(bitmap);
sl@0
   299
	CFbsBitGc *gc=CFbsBitGc::NewL();
sl@0
   300
	gc->Activate(bitmapDevice);
sl@0
   301
	for(TInt pos=0;pos<size.iWidth;pos+=8)
sl@0
   302
		{
sl@0
   303
		gc->DrawRect(TRect(pos,0,pos+16,size.iHeight));
sl@0
   304
		iGc->BitBlt(TPoint(0,0),bitmap);
sl@0
   305
		iWs.Flush();
sl@0
   306
		}
sl@0
   307
	delete gc;
sl@0
   308
	delete bitmapDevice;
sl@0
   309
	delete bitmap;
sl@0
   310
	}
sl@0
   311
sl@0
   312
TInt FullScreenBitBltTestFunc(TInt aOwningGroup)
sl@0
   313
	{
sl@0
   314
	return(CreateGraphicsTest(aOwningGroup, EFullScreenBitBltTest, 0, NULL));
sl@0
   315
	}
sl@0
   316
sl@0
   317
GLDEF_D TTimeTestHeader FullScreenBitBltTest={_S("FullScreenBitBlt"),FullScreenBitBltTestFunc};
sl@0
   318
sl@0
   319
// Masked BitBlt //
sl@0
   320
sl@0
   321
void TGraphicsTest::MaskedBitBltTestL(TInt , TAny *)
sl@0
   322
	{
sl@0
   323
	TSize size(24,48);
sl@0
   324
	CWsBitmap *bitmap=new(ELeave) CWsBitmap(iWs);
sl@0
   325
	bitmap->Create(size,EGray4);
sl@0
   326
	CFbsDevice *bitmapDevice=CFbsBitmapDevice::NewL(bitmap);
sl@0
   327
	CFbsBitGc *gc=CFbsBitGc::NewL();
sl@0
   328
	gc->Activate(bitmapDevice);
sl@0
   329
	gc->DrawEllipse(TRect(size));
sl@0
   330
	delete bitmapDevice;
sl@0
   331
// Now do the mask
sl@0
   332
	CWsBitmap *mask=new(ELeave) CWsBitmap(iWs);
sl@0
   333
	mask->Create(size,EGray4);
sl@0
   334
	bitmapDevice=CFbsBitmapDevice::NewL(mask);
sl@0
   335
	gc->Activate(bitmapDevice);
sl@0
   336
	gc->SetPenColor(TRgb::Gray4(3));
sl@0
   337
	gc->DrawEllipse(TRect(size));
sl@0
   338
	delete bitmapDevice;
sl@0
   339
//
sl@0
   340
	delete gc;
sl@0
   341
	for(TInt count=0;count<10;count++)
sl@0
   342
		{
sl@0
   343
		iGc->Clear();
sl@0
   344
		TPoint pos(0,0);
sl@0
   345
		for(TInt xcount=0;xcount<25;xcount++,pos.iX+=size.iWidth+1)
sl@0
   346
			{
sl@0
   347
			pos.iY=0;
sl@0
   348
			for(TInt ycount=0;ycount<4;ycount++,pos.iY+=size.iHeight)
sl@0
   349
				iGc->BitBltMasked(pos,bitmap,TRect(size),mask,EFalse);
sl@0
   350
			}
sl@0
   351
		}
sl@0
   352
	delete bitmap;
sl@0
   353
	delete mask;
sl@0
   354
	}
sl@0
   355
sl@0
   356
TInt MaskedBitBltTestFunc(TInt aOwningGroup)
sl@0
   357
	{
sl@0
   358
	return(CreateGraphicsTest(aOwningGroup, EMaskedBitBltTest, 0, NULL));
sl@0
   359
	}
sl@0
   360
sl@0
   361
GLDEF_D TTimeTestHeader MaskedBitBltTest={_S("MaskedBitBlt"),MaskedBitBltTestFunc};
sl@0
   362
sl@0
   363
// Fill Pattern //
sl@0
   364
sl@0
   365
void TGraphicsTest::FillPatternTestL(TInt , TAny *)
sl@0
   366
	{
sl@0
   367
	TSize scrSize(iDevice->SizeInPixels());
sl@0
   368
	TSize rectSize(scrSize.iWidth/5-1,scrSize.iHeight/2);
sl@0
   369
sl@0
   370
	CWsBitmap *bitmap=new(ELeave) CWsBitmap(iWs);
sl@0
   371
sl@0
   372
	TSize bitmapSize(50,40);
sl@0
   373
	bitmap->Create(bitmapSize,EGray4);
sl@0
   374
	CFbsDevice *bitmapDevice=CFbsBitmapDevice::NewL(bitmap);
sl@0
   375
	CFbsBitGc *gc=CFbsBitGc::NewL();
sl@0
   376
	gc->Activate(bitmapDevice);
sl@0
   377
	gc->SetBrushColor(TRgb::Gray4(2));
sl@0
   378
	gc->SetBrushStyle(CGraphicsContext::ESolidBrush);
sl@0
   379
	gc->DrawEllipse(TRect(bitmapSize));
sl@0
   380
	delete bitmapDevice;
sl@0
   381
	delete gc;
sl@0
   382
//
sl@0
   383
	iGc->UseBrushPattern(bitmap);
sl@0
   384
	iGc->SetBrushStyle(CGraphicsContext::EPatternedBrush);
sl@0
   385
	iGc->SetPenStyle(CGraphicsContext::ESolidPen);
sl@0
   386
	for(TInt count=0;count<50;count++)
sl@0
   387
		{
sl@0
   388
		iGc->Clear();
sl@0
   389
		TPoint pos(0,0);
sl@0
   390
		for(TInt xcount=0;xcount<5;xcount++,pos.iX+=rectSize.iWidth)
sl@0
   391
			{
sl@0
   392
			pos.iY=0;
sl@0
   393
			for(TInt ycount=0;ycount<2;ycount++,pos.iY+=rectSize.iHeight)
sl@0
   394
				iGc->DrawRect(TRect(pos,rectSize));
sl@0
   395
			}
sl@0
   396
		}
sl@0
   397
	delete bitmap;
sl@0
   398
	}
sl@0
   399
sl@0
   400
TInt FillPatternTestFunc(TInt aOwningGroup)
sl@0
   401
	{
sl@0
   402
	return(CreateGraphicsTest(aOwningGroup, EFillPatternTest, 0, NULL));
sl@0
   403
	}
sl@0
   404
sl@0
   405
GLDEF_D TTimeTestHeader FillPatternTest={_S("FillPattern"),FillPatternTestFunc};
sl@0
   406
sl@0
   407
// Backup Window Drawing //
sl@0
   408
sl@0
   409
void TGraphicsTest::BackedUpWindowDrawingL(TInt aMode, TAny *)
sl@0
   410
	{
sl@0
   411
	TSize scrSize(iDevice->SizeInPixels());
sl@0
   412
	CFbsFont *font=NULL;
sl@0
   413
	if (aMode==1)
sl@0
   414
		{
sl@0
   415
		TFontSpec fspec(KTestFontTypefaceName,200);
sl@0
   416
		User::LeaveIfError(iDevice->GetNearestFontToDesignHeightInTwips((CFont *&)font, fspec));
sl@0
   417
		iGc->UseFont(font);
sl@0
   418
		}
sl@0
   419
	iGc->SetPenStyle(CGraphicsContext::ESolidPen);
sl@0
   420
	TPoint pos;
sl@0
   421
	for(TInt count=0;count<10;count++)
sl@0
   422
		{
sl@0
   423
		iGc->Clear();
sl@0
   424
		for(pos.iY=0;pos.iY<scrSize.iHeight;pos.iY++)
sl@0
   425
			iGc->DrawLine(pos,pos+TSize(scrSize.iWidth,0));
sl@0
   426
		}
sl@0
   427
	if (aMode==1)
sl@0
   428
		iDevice->ReleaseFont(font);
sl@0
   429
	}
sl@0
   430
sl@0
   431
TInt BackupWindowDrawingFunc1(TInt aOwningGroup)
sl@0
   432
	{
sl@0
   433
	return(CreateGraphicsTest(aOwningGroup, EBackupWindowDrawingTest, 0, NULL));
sl@0
   434
	}
sl@0
   435
sl@0
   436
GLDEF_D TTimeTestHeader BackupWindowDrawingCreate1={_S("BackupWindowDrawing 1"),BackupWindowDrawingFunc1};
sl@0
   437
sl@0
   438
TInt BackupWindowDrawingFunc2(TInt aOwningGroup)
sl@0
   439
	{
sl@0
   440
	return(CreateGraphicsTest(aOwningGroup, EBackupWindowDrawingTest, 1, NULL));
sl@0
   441
	}
sl@0
   442
sl@0
   443
GLDEF_D TTimeTestHeader BackupWindowDrawingCreate2={_S("BackupWindowDrawing 2"),BackupWindowDrawingFunc2};