Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 @internalComponent - Internal Symbian test code
23 #include "egltest_surface.h"
24 #include "egltest_endpoint_images.h"
25 #include <graphics/surfaceconfiguration.h>
31 #define SURF_ASSERT(x) { if (!(x)) { RDebug::Printf("ASSERT(%s) failed at %s:%d", #x, __FILE__, __LINE__); User::Panic(_L("ASSERT SURF"), __LINE__); }}
33 // Macros for indicating what is what.
34 #define SIZE(x, y) x, y
36 #define DefaultAlignment 32 // Pick some value that is valid.
37 #define Alignment(x) x
39 #define DefaultStride 0
40 // Note: Offset to first buffer.
42 #define WindowPos(x, y) x, y
43 #define WindowMode(m) m
45 #define LARGEST_POSSIBLE_FLAG 0x80000000
47 static const TSurfaceParamsCommon KSurfaceParams[] =
56 EUidPixelFormatARGB_8888_PRE,
60 WindowMode(EColor16MAP)
69 EUidPixelFormatARGB_8888_PRE,
73 WindowMode(EColor16MAP)
82 EUidPixelFormatARGB_8888_PRE,
86 WindowMode(EColor16MAP)
89 EStandard128sqSurface,
95 EUidPixelFormatARGB_8888_PRE,
99 WindowMode(EColor16MAP)
102 EUnusualStrideSurface,
108 EUidPixelFormatARGB_8888_PRE,
112 WindowMode(EColor16MAP)
115 EUnalignedPixelSizeSurface,
121 EUidPixelFormatARGB_8888_PRE,
125 WindowMode(EColor16MAP)
134 EUidPixelFormatARGB_8888_PRE,
138 WindowMode(EColor16MAP)
141 ELargestPossibleSurface,
142 SIZE(LARGEST_POSSIBLE_FLAG, LARGEST_POSSIBLE_FLAG),
147 EUidPixelFormatARGB_8888_PRE,
151 WindowMode(EColor16MAP)
160 EUidPixelFormatARGB_8888_PRE,
164 WindowMode(EColor16MAP)
173 EUidPixelFormatARGB_8888_PRE,
177 WindowMode(EColor16MAP)
181 const TInt KSurfaceMaxIndex = sizeof(KSurfaceParams) / sizeof(KSurfaceParams[0]);
189 static const TSurfaceSize KSurfaceSizes[] =
212 const TInt KMaxSurfaceSizes = sizeof(KSurfaceSizes) / sizeof(KSurfaceSizes[0]);
214 LOCAL_C TUint RandomNumberInRange(TUint aLow, TUint aHigh)
216 TReal32 rand = Math::Random();
218 rand *= aHigh - aLow;
224 void CSurface::CreateL(TInt aIndex)
226 CreateL(aIndex, TPoint(0, 0));
230 TSize CSurface::Size()
236 TInt CSurface::SizeInBytes() const
238 RSurfaceManager::TInfoBuf infoBuf;
239 RSurfaceManager surfMgr;
240 TInt err = surfMgr.Open();
243 RDebug::Printf("Error opening surface manager... Err=%d", err);
246 err = surfMgr.SurfaceInfo(SurfaceId(), infoBuf);
249 RDebug::Printf("Could not get surface info - err = %d", err);
252 TInt size = infoBuf().iBuffers * infoBuf().iSize.iHeight * infoBuf().iStride;
258 CRawSurface* CRawSurface::NewL()
260 CRawSurface* obj = new (ELeave) CRawSurface();
261 CleanupStack::PushL(obj);
263 CleanupStack::Pop(obj);
269 CRawSurface::CRawSurface() : iDrawBuffer(0), iBuffers(0)
274 void CRawSurface::ConstructL()
276 iSurfaceId = TSurfaceId::CreateNullId();
277 User::LeaveIfError(iSurfaceManager.Open());
278 User::LeaveIfError(iSurfaceUpdate.Connect());
282 CRawSurface::~CRawSurface()
284 iSurfaceUpdate.Close();
285 if(!iSurfaceId.IsNull())
287 iSurfaceManager.CloseSurface(iSurfaceId);
289 iSurfaceManager.Close();
293 TInt CRawSurface::PixelSize(TUidPixelFormat aPixelFormat)
297 case EUidPixelFormatARGB_8888_PRE:
298 case EUidPixelFormatARGB_8888:
299 case EUidPixelFormatABGR_8888:
300 case EUidPixelFormatABGR_8888_PRE:
303 case EUidPixelFormatARGB_4444:
304 case EUidPixelFormatRGB_565:
311 return 0; // Make sure no compiler moans about "not all paths return a value".
315 void CRawSurface::GetSurfAttribs(RSurfaceManager::TSurfaceCreationAttributesBuf &aSurfaceAttribs,
316 TInt aIndex, TInt aSizeIndex)
318 SURF_ASSERT(aIndex < KSurfaceMaxIndex);
319 SURF_ASSERT(aIndex == KSurfaceParams[aIndex].iIndex);
320 iParamIndex = aIndex;
321 if (KSurfaceParams[aIndex].iXSize & LARGEST_POSSIBLE_FLAG)
324 aSurfaceAttribs().iSize =
325 TSize(KSurfaceSizes[aSizeIndex].iWidth, KSurfaceSizes[aSizeIndex].iHeight);
329 aSurfaceAttribs().iSize =
330 TSize(KSurfaceParams[aIndex].iXSize, KSurfaceParams[aIndex].iYSize);
332 iBuffers = KSurfaceParams[aIndex].iBuffers;
333 aSurfaceAttribs().iBuffers = iBuffers;
334 aSurfaceAttribs().iPixelFormat = KSurfaceParams[aIndex].iPixelFormat;
335 TInt stride = KSurfaceParams[aIndex].iStrideInBytes;
338 stride = aSurfaceAttribs().iSize.iWidth * PixelSize(KSurfaceParams[aIndex].iPixelFormat);
340 aSurfaceAttribs().iStride = stride;
341 aSurfaceAttribs().iOffsetToFirstBuffer = KSurfaceParams[aIndex].iOffsetToFirstBuffer;
342 aSurfaceAttribs().iAlignment = KSurfaceParams[aIndex].iAlignment;
343 aSurfaceAttribs().iContiguous = EFalse;
344 aSurfaceAttribs().iCacheAttrib = RSurfaceManager::ECached;
345 aSurfaceAttribs().iOffsetBetweenBuffers = 0;
346 aSurfaceAttribs().iSurfaceHints = NULL;
347 aSurfaceAttribs().iHintCount = 0;
348 aSurfaceAttribs().iMappable = ETrue;
352 void CRawSurface::CreateL(TInt aIndex, const TPoint &/* aPoint */)
354 RSurfaceManager::TSurfaceCreationAttributesBuf surfaceAttribs;
355 SURF_ASSERT(aIndex < KSurfaceMaxIndex);
357 if (KSurfaceParams[aIndex].iXSize & LARGEST_POSSIBLE_FLAG)
359 sizeIndex = KMaxSurfaceSizes-1;
365 GetSurfAttribs(surfaceAttribs, aIndex, sizeIndex);
366 err = iSurfaceManager.CreateSurface(surfaceAttribs, iSurfaceId);
367 iActualSize = surfaceAttribs().iSize;
370 while(err != KErrNone && sizeIndex >= 0);
371 User::LeaveIfError(err);
375 TUint8* CRawSurface::MapSurfaceAndGetInfoLC(RSurfaceManager::TSurfaceInfoV01& aInfo)
377 SURF_ASSERT(!iSurfaceId.IsNull());
378 User::LeaveIfError(iSurfaceManager.MapSurface(iSurfaceId, iSurfaceChunk));
379 CleanupClosePushL(iSurfaceChunk);
380 RSurfaceManager::TInfoBuf infoBuf;
381 User::LeaveIfError(iSurfaceManager.SurfaceInfo(iSurfaceId, infoBuf));
383 TInt offset = -1000; // So we hopefully detect when it goes horribly wrong.
384 User::LeaveIfError(iSurfaceManager.GetBufferOffset(iSurfaceId, iDrawBuffer, offset));
385 SURF_ASSERT(offset >= 0);
386 return iSurfaceChunk.Base() + offset;
390 void CRawSurface::DrawContentL(TInt aImageIndex)
392 CTestCFbsImage *image = CTestCFbsImage::NewL(aImageIndex);
393 CleanupStack::PushL(image);
395 RSurfaceManager::TSurfaceInfoV01 info;
396 TUint8 *dataAddress = MapSurfaceAndGetInfoLC(info);
397 TInt stride = info.iStride;
399 CFbsBitmap *bitmap = image->Bitmap();
400 TDisplayMode displaymode = bitmap->DisplayMode();
401 TInt pixelStride = stride / CFbsBitmap::ScanLineLength(1, displaymode);
402 for(TInt y = 0; y < image->Size().iHeight; y++)
404 TPtr8 buf(dataAddress + y * stride, stride);
406 // TODO: We need to check that the bitsperpixel matches between the surface and bitmap.
407 bitmap->GetScanLine(buf, TPoint(0, y), pixelStride, displaymode);
410 CleanupStack::PopAndDestroy(2, image);
413 void CRawSurface::DrawContentL(const TRgb& aColour)
415 //Map the surface and get its info.
416 RSurfaceManager::TSurfaceInfoV01 surfaceInfo;
417 TUint32* buffer = (TUint32*)MapSurfaceAndGetInfoLC(surfaceInfo);
419 //Currently this function only supports drawing into ARGB_8888_PRE surfaces.
420 //This is because the only test that uses this function uses this type of surface.
421 //If this functionallity needs expanding, you must correctly convert the TRgb colour
422 //and pack it into the surface buffer correctly.
423 SURF_ASSERT(surfaceInfo.iPixelFormat == EUidPixelFormatARGB_8888_PRE);
425 TUint32 fillColour = aColour._Color16MAP();
427 //Loop over each pixel in the surface and colour it.
428 //This is deliberately slow since it is only used for the tearing test
429 //and we want to spend most of our time drawing so that the chances of the other thread
430 //picking up a buffer in the middle of drawing is increased.
431 for(TInt y=0; y < surfaceInfo.iSize.iHeight; ++y)
433 for(TInt x=0; x < surfaceInfo.iSize.iWidth; ++x)
435 buffer[x] = fillColour;
437 buffer += surfaceInfo.iStride >> 2;
440 CleanupStack::PopAndDestroy();
444 void CRawSurface::DrawComplexL(const TRgb& aColour)
446 DrawContentL(aColour);
450 TInt CRawSurface::SubmitContent(TBool aShouldWaitForDisplay, TInt /* aRectsIndex */)
452 TRequestStatus displayNotify = KRequestPending;
453 TTimeStamp timeStamp;
455 if(aShouldWaitForDisplay)
457 Notify(ENotifyWhenDisplayed, displayNotify, 0);
460 TInt err = iSurfaceUpdate.SubmitUpdate(KAllScreens, iSurfaceId, iDrawBuffer, NULL);
465 RDebug::Printf("%s:%d: SubmitUpdate gave unexpected error %d", __FILE__, __LINE__, err);
469 iDrawBuffer = (iDrawBuffer + 1) % iBuffers;
471 if(aShouldWaitForDisplay)
474 err = WaitFor(ENotifyWhenDisplayed, displayNotify, 100 * 1000, dummy);
475 if (err != KErrNone && err != KErrNotVisible && err != KErrOverflow)
477 // RDebug::Printf("%s:%d: NotifyWhenDisplayed gave unexpected error %d", __FILE__, __LINE__, err);
485 TSurfaceId CRawSurface::SurfaceId() const
491 void CRawSurface::GetSurfaceParamsL(TSurfaceParamsRemote &aParams)
493 aParams.iCommonParams = KSurfaceParams[iParamIndex];
494 aParams.iCommonParams.iBuffers = iBuffers; // May have been changed if it's a single buffered surface...
495 aParams.iSurfaceId = SurfaceId();
498 const TText *CRawSurface::GetSurfaceTypeStr() const
500 return _S("CRawSurface");
503 TInt CRawSurface::Notify(TNotification aWhen, TRequestStatus& aStatus, TUint32 aXTimes)
505 aStatus = KRequestPending;
508 case ENotifyWhenAvailable:
509 iSurfaceUpdate.NotifyWhenAvailable(aStatus);
511 case ENotifyWhenDisplayed:
512 iSurfaceUpdate.NotifyWhenDisplayed(aStatus, iTimeStamp);
514 case ENotifyWhenDispXTimes:
515 iSurfaceUpdate.NotifyWhenDisplayedXTimes(aXTimes, aStatus);
518 RDebug::Printf("%s:%d: Invalid notification: %d. Panicking...", __FILE__, __LINE__, aWhen);
519 User::Panic(_L("CRawSurface::Notify()"), __LINE__);
526 TInt CRawSurface::WaitFor(TNotification aWhen, TRequestStatus& aStatus, TInt aTimeoutInMicroSeconds, TUint32& aTimeStamp)
529 TInt err = timer.CreateLocal();
532 RDebug::Printf("%s:%d: Could not create timer... err= %d", __FILE__, __LINE__, err);
535 TRequestStatus timerStatus = KRequestPending;
537 // Windows timer isn't very precise - add some "fuzz" to the timeout to ensure we do not wait "too little".
538 const TInt KTimeOutExtra = 20000;
540 // On hardware, we should be able to run with less "fuzz".
541 const TInt KTimeOutExtra = 10000;
543 timer.HighRes(timerStatus, aTimeoutInMicroSeconds + KTimeOutExtra);
544 User::WaitForRequest(timerStatus, aStatus);
545 if (aStatus == KRequestPending)
547 if (aWhen == ENotifyWhenDisplayed)
549 aTimeStamp = User::FastCounter();
553 if (aWhen == ENotifyWhenDisplayed)
555 aTimeStamp = iTimeStamp();
559 TInt result = aStatus.Int();
560 aStatus = KRequestPending;
564 const TText *CRawSingleBufferSurface::GetSurfaceTypeStr() const
566 return _S("CRawSingleBufferedSurface");
569 CRawSingleBufferSurface *CRawSingleBufferSurface::NewL()
571 CRawSingleBufferSurface* obj = new (ELeave) CRawSingleBufferSurface();
572 CleanupStack::PushL(obj);
574 CleanupStack::Pop(obj);
579 void CRawSingleBufferSurface::CreateL(TInt aIndex, const TPoint & /*aPoint */)
581 RSurfaceManager::TSurfaceCreationAttributesBuf surfaceAttribs;
584 if (KSurfaceParams[aIndex].iXSize & LARGEST_POSSIBLE_FLAG)
586 sizeIndex = KMaxSurfaceSizes-1;
591 GetSurfAttribs(surfaceAttribs, aIndex, sizeIndex);
593 surfaceAttribs().iBuffers = 1;
594 err = iSurfaceManager.CreateSurface(surfaceAttribs, iSurfaceId);
595 iActualSize = surfaceAttribs().iSize;
598 while(err != KErrNone && sizeIndex >= 0);
601 CRawSingleBufferSurface::~CRawSingleBufferSurface()
606 TInt CEglSurfaceBase::Activate()
608 if (!eglMakeCurrent(iDisplay, iSurface, iSurface, iContext))
610 EGLint err = eglGetError();
611 RDebug::Printf("%s:%d: eglMakeCurrent gave error 0x%x", __FILE__, __LINE__, err);
612 return KErrBadHandle;
617 void CEglSurfaceBase::ActivateL()
619 User::LeaveIfError(Activate());
622 void CEglSurfaceBase::DrawComplexL(const TRgb& aColour)
627 eglQuerySurface(iDisplay, iSurface, EGL_WIDTH, &size.iWidth);
628 eglQuerySurface(iDisplay, iSurface, EGL_HEIGHT, &size.iHeight);
630 //Paint lots of random circles to keep the GPU busy.
631 for(TInt i=0; i < 300; i++)
633 VGPaint paint = vgCreatePaint();
634 VGPath path = vgCreatePath(VG_PATH_FORMAT_STANDARD, VG_PATH_DATATYPE_F, 1.0f, 0.0f, 0, 0, VG_PATH_CAPABILITY_APPEND_TO);
636 TInt minDim = Min(size.iWidth, size.iHeight);
637 VGfloat cx = RandomNumberInRange(0, size.iWidth);
638 VGfloat cy = RandomNumberInRange(0, size.iHeight);
639 VGfloat diameter = RandomNumberInRange(minDim / 20, minDim / 3);
640 TRgb fillColour(RandomNumberInRange(0, 255), RandomNumberInRange(0, 255), RandomNumberInRange(0, 255), RandomNumberInRange(0, 255));
642 vguEllipse(path, cx, cy, diameter, diameter);
643 vgSetPaint(paint, VG_FILL_PATH);
644 vgSetColor(paint, fillColour.Value());
645 vgDrawPath(path, VG_FILL_PATH);
648 vgDestroyPaint(paint);
651 //Paint the top corner with aColour so we can identify the drawing.
652 VGfloat fillColour[4];
653 fillColour[0] = (VGfloat)aColour.Red() / 255.0f;
654 fillColour[1] = (VGfloat)aColour.Green() / 255.0f;
655 fillColour[2] = (VGfloat)aColour.Blue() / 255.0f;
656 fillColour[3] = (VGfloat)aColour.Alpha() / 255.0f;
658 vgSetfv(VG_CLEAR_COLOR, 4, fillColour);
659 vgClear(0, 0, 20, size.iHeight);
662 void CEglSurfaceBase::DrawContentL(const TRgb& aColour)
667 eglQuerySurface(iDisplay, iSurface, EGL_WIDTH, &size.iWidth);
668 eglQuerySurface(iDisplay, iSurface, EGL_HEIGHT, &size.iHeight);
670 VGfloat fillColour[4];
671 fillColour[0] = (VGfloat)aColour.Red() / 255.0f;
672 fillColour[1] = (VGfloat)aColour.Green() / 255.0f;
673 fillColour[2] = (VGfloat)aColour.Blue() / 255.0f;
674 fillColour[3] = (VGfloat)aColour.Alpha() / 255.0f;
676 vgSetfv(VG_CLEAR_COLOR, 4, fillColour);
677 vgClear(0, 0, size.iWidth, size.iHeight);
680 void CEglSurfaceBase::CreateL(TInt aIndex, const TPoint &aOffset)
682 SURF_ASSERT(aIndex < KSurfaceMaxIndex);
683 SURF_ASSERT(aIndex == KSurfaceParams[aIndex].iIndex);
686 if (KSurfaceParams[aIndex].iXSize & LARGEST_POSSIBLE_FLAG)
688 sizeIndex = KMaxSurfaceSizes-1;
693 TRAP(err, DoCreateL(aIndex, aOffset, sizeIndex));
696 while(err != KErrNone && sizeIndex >= 0);
699 // RDebug::Printf("%s:%d: err=%d (%d x %d)", __FILE__, __LINE__, err, iActualSize.iWidth, iActualSize.iHeight);
704 TInt CEglSurfaceBase::SubmitContent(TBool aShouldWaitForDisplay, TInt /* aRectsIndex */)
706 TInt err = Activate();
711 if (!eglSwapBuffers(iDisplay, iSurface))
713 EGLint err = eglGetError();
714 RDebug::Printf("%s:%d: eglSwapBuffers gave error 0x%x", __FILE__, __LINE__, err);
715 return KErrBadHandle;
717 if (aShouldWaitForDisplay)
719 // We are cheating: We just wait for a bit to ensure that the swapbuffer is actually finished.
720 // There is no way to determine how long this takes, so we just grab a number that should be
722 User::After(100 * 1000); // Wait 100ms.
727 void CEglSurfaceBase::DrawContentL(TInt aIndex)
730 CTestVgImage *vgImage = CTestVgImage::NewL(aIndex);
731 CleanupStack::PushL(vgImage);
732 vgDrawImage(vgImage->VGImage());
733 CleanupStack::PopAndDestroy(vgImage);
736 void CEglSurfaceBase::GetSurfaceParamsL(TSurfaceParamsRemote &aParams)
738 RSurfaceManager surfaceManager;
739 User::LeaveIfError(surfaceManager.Open());
740 RSurfaceManager::TInfoBuf infoBuf;
741 TInt err = surfaceManager.SurfaceInfo(SurfaceId(), infoBuf);
742 User::LeaveIfError(err);
743 surfaceManager.Close();
744 RSurfaceManager::TSurfaceInfoV01& info = infoBuf();
745 aParams.iSurfaceId = SurfaceId();
746 aParams.iCommonParams.iAlignment = -1; // N/A
747 aParams.iCommonParams.iBuffers = info.iBuffers;
748 aParams.iCommonParams.iOffsetToFirstBuffer = -1;
749 aParams.iCommonParams.iPixelFormat = info.iPixelFormat;
750 aParams.iCommonParams.iStrideInBytes = info.iStride;
751 aParams.iCommonParams.iXSize = info.iSize.iWidth;
752 aParams.iCommonParams.iYSize = info.iSize.iHeight;
753 aParams.iCommonParams.iUseAttribList = KSurfaceParams[iParamIndex].iUseAttribList;
754 for(TInt i = 0; i < KNumAttribs; i++)
756 aParams.iCommonParams.iAttribs[i] = KSurfaceParams[iParamIndex].iAttribs[i];
761 TInt CEglSurfaceBase::Notify(TNotification /*aWhen*/, TRequestStatus& /*aStatus*/, TUint32 /*aXTImes*/)
763 return KErrNotSupported;
766 TInt CEglSurfaceBase::WaitFor(TNotification /*aWhen*/, TRequestStatus& /*aStatus*/,
767 TInt /*aTimeoutinMicroseconds*/, TUint32 & /*aTimeStamp*/)
769 return KErrNotSupported;
772 void CEglSurfaceBase::BaseCreateL(TInt aIndex, EGLint aSurfaceType)
774 iParamIndex = aIndex;
775 iDisplay = eglGetDisplay(EGL_DEFAULT_DISPLAY);
778 if (iDisplay == EGL_NO_DISPLAY)
781 RDebug::Printf("%s:%d: err = 0x%x", __FILE__, __LINE__, err);
782 User::Leave(KErrNotSupported);
787 // TODO: Need to use differnet config attribs based on aIndex.
788 EGLint configAttribs[] =
795 EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
796 EGL_RENDERABLE_TYPE,EGL_OPENVG_BIT,
800 // Update surfacetype type to match
801 for(TInt i = 0; configAttribs[i] != EGL_NONE; i += 2)
803 if (configAttribs[i] == EGL_SURFACE_TYPE)
805 configAttribs[i+1] = aSurfaceType;
808 // Need some way to configure the attribs ...
809 eglChooseConfig(iDisplay, configAttribs, &iConfig, 1, &nConfigs);
813 RDebug::Printf("%s:%d: err = %d", __FILE__, __LINE__, err);
814 User::Leave(KErrNotSupported);
817 if (!eglBindAPI(EGL_OPENVG_API))
820 RDebug::Printf("%s:%d: err = %d", __FILE__, __LINE__, err);
821 User::Leave(KErrNotSupported);
823 iContext = eglCreateContext(iDisplay, iConfig, 0, NULL);
824 if (iContext == EGL_NO_CONTEXT)
827 //RDebug::Printf("%s:%d: err = %d", __FILE__, __LINE__, err);
828 User::Leave(KErrNotSupported);
832 void CEglSurfaceBase::Destroy()
834 eglMakeCurrent(iDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT);
835 if (iSurface != EGL_NO_SURFACE)
837 eglDestroySurface(iDisplay, iSurface);
838 iSurface = EGL_NO_SURFACE;
841 if (iDisplay != EGL_NO_DISPLAY)
843 eglDestroyContext(iDisplay, iContext);
848 class CWindow: public CBase
851 static CWindow *NewL(TInt aIndex, const TPoint &aOffset, TInt aSizeIndex);
855 void ConstructL(TInt aIndex, const TPoint &aOffset, TInt aSizeIndex);
860 RWindowGroup iWindowGroup;
861 RWsSession iWsSession;
865 CWindow* CWindow::NewL(TInt aIndex, const TPoint &aOffset, TInt aSizeIndex)
867 CWindow *self = new (ELeave) CWindow;
868 CleanupStack::PushL(self);
869 self->ConstructL(aIndex, aOffset, aSizeIndex);
870 CleanupStack::Pop(self);
875 void CWindow::ConstructL(TInt aIndex, const TPoint &aOffset, TInt aSizeIndex)
877 RFbsSession::Connect();
878 if (aIndex >= KSurfaceMaxIndex)
880 User::Leave(KErrOverflow);
882 User::LeaveIfError(iWsSession.Connect());
883 iWindowGroup = RWindowGroup(iWsSession);
884 User::LeaveIfError(iWindowGroup.Construct((TUint32)this));
885 iWindow = RWindow(iWsSession);
886 User::LeaveIfError(iWindow.Construct(iWindowGroup, -1U));
887 TSurfaceParamsCommon winAttrib = KSurfaceParams[aIndex];
889 if (winAttrib.iXSize & LARGEST_POSSIBLE_FLAG)
891 winSize = TSize(KSurfaceSizes[aSizeIndex].iWidth, KSurfaceSizes[aSizeIndex].iHeight);
895 winSize = TSize(winAttrib.iXSize, winAttrib.iYSize);
897 iWindow.SetExtent(TPoint(winAttrib.iXPos + aOffset.iX, winAttrib.iYPos + aOffset.iY), winSize);
898 iWindow.SetRequiredDisplayMode(winAttrib.iDisplayMode);
906 iWindowGroup.Close();
908 RFbsSession::Disconnect();
917 RWindow& CWindow::Window()
923 CEglWindowSurface* CEglWindowSurface::NewL()
925 CEglWindowSurface* self = new (ELeave) CEglWindowSurface;
926 CleanupStack::PushL(self);
928 CleanupStack::Pop(self);
933 void CEglWindowSurface::ConstructL()
938 CEglWindowSurface::CEglWindowSurface()
943 void CEglWindowSurface::DoCreateL(TInt aIndex, const TPoint &aOffset, TInt aSizeIndex)
945 iParamIndex = aIndex;
946 iWindow = CWindow::NewL(aIndex, aOffset, aSizeIndex);
947 iActualSize = iWindow->Window().Size();
949 CEglSurfaceBase::BaseCreateL(aIndex, EGL_WINDOW_BIT);
951 iSurface = eglCreateWindowSurface(iDisplay, iConfig, &iWindow->Window(), NULL);
952 if (iSurface == EGL_NO_SURFACE)
954 EGLint err = eglGetError();
955 RDebug::Printf("%s:%d: err = %x (%d x %d)", __FILE__, __LINE__, err, iActualSize.iWidth, iActualSize.iHeight);
956 User::Leave(KErrNotSupported);
961 CEglWindowSurface::~CEglWindowSurface()
969 TSurfaceId CEglWindowSurface::SurfaceId() const
971 // Default constructor for id sets it to a NULL-value, so if no window is created, we get
972 // a defined surface id value that is invalid.
976 TSurfaceConfiguration surfConfig;
977 iWindow->Window().GetBackgroundSurface(surfConfig);
978 surfConfig.GetSurfaceId(id);
984 const TText *CEglWindowSurface::GetSurfaceTypeStr() const
986 return _S("CEglWindowSurface");
990 CEglPBufferSurface::CEglPBufferSurface()
995 CEglPBufferSurface::~CEglPBufferSurface()
1002 CEglPBufferSurface* CEglPBufferSurface::NewL()
1004 CEglPBufferSurface* self = new (ELeave) CEglPBufferSurface;
1005 CleanupStack::PushL(self);
1007 CleanupStack::Pop(self);
1012 void CEglPBufferSurface::ConstructL()
1017 const TText *CEglPBufferSurface::GetSurfaceTypeStr() const
1019 return _S("CEglPBufferSurface");
1023 void CEglPBufferSurface::DoCreateL(TInt aIndex, const TPoint &/*aOffset*/, TInt aSizeIndex)
1025 CEglSurfaceBase::BaseCreateL(aIndex, EGL_PBUFFER_BIT);
1033 if (KSurfaceParams[aIndex].iXSize & ELargestPossibleSurface)
1035 iActualSize.iWidth = KSurfaceSizes[aSizeIndex].iWidth;
1036 iActualSize.iHeight = KSurfaceSizes[aSizeIndex].iHeight;
1040 iActualSize.iWidth = KSurfaceParams[aIndex].iXSize;
1041 iActualSize.iHeight = KSurfaceParams[aIndex].iYSize;
1043 for(TInt i = 0; attribs[i] != EGL_NONE; i += 2)
1048 attribs[i+1] = iActualSize.iHeight;
1051 attribs[i+1] = iActualSize.iWidth;
1056 iSurface = eglCreatePbufferSurface(iDisplay, iConfig, attribs);
1057 if (iSurface == EGL_NO_SURFACE)
1059 EGLint err = eglGetError();
1060 User::Leave(KErrNotSupported);
1065 TSurfaceId CEglPBufferSurface::SurfaceId() const
1067 SURF_ASSERT(0); // We shouldn't call this!
1068 return TSurfaceId::CreateNullId();
1071 TInt CEglPBufferSurface::SizeInBytes() const
1073 // size of a pixel in bits.
1075 if (!eglGetConfigAttrib(iDisplay, iConfig, EGL_BUFFER_SIZE, &size))
1077 RDebug::Printf("Unable to get EGL_BUFFER_SIZE from config %d, err = %04x", iConfig, eglGetError());
1081 return (KSurfaceParams[iParamIndex].iXSize * KSurfaceParams[iParamIndex].iYSize * size) / 8;
1085 // Factory function.
1086 CSurface *CSurface::SurfaceFactoryL(TSurfaceType aSurfaceType)
1088 switch(aSurfaceType)
1091 return CRawSurface::NewL();
1093 case ESurfTypeEglWindow:
1094 return CEglWindowSurface::NewL();
1096 case ESurfTypeRawSingleBuffered:
1097 return CRawSingleBufferSurface::NewL();
1099 case ESurfTypePBuffer:
1100 return CEglPBufferSurface::NewL();