sl@0: // Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // OpenWF tests sl@0: // sl@0: #include sl@0: #include sl@0: #include "openwftest.h" sl@0: sl@0: #define KCompositorVersion 0x01023456 sl@0: #define KGrowCleanupStack 12 sl@0: #define KMaxNotificationDelay 5000000 //5 seconds sl@0: #define KNotificationWarning 100000 //100 ms sl@0: sl@0: _LIT(KTestSectionName, "TestInfo"); sl@0: _LIT(KImageSectionName, "ImageInfo"); sl@0: _LIT(KContiguousFlag, "ContiguousFlag"); sl@0: _LIT(KTolerance, "Tolerance"); sl@0: _LIT(KTestMode, "TestMode"); sl@0: _LIT(KSaveImage, "SaveImage"); sl@0: _LIT(KDir, "Dir"); sl@0: _LIT(KDefaultDir, "c:\\openwftest\\img\\"); sl@0: _LIT(KCompositionPause, "CompositionPause"); sl@0: _LIT(KManualPause, "ManualPause"); sl@0: sl@0: //Uncomment this and rebuild if you wish to test if fastpath is enabled using breakpoints sl@0: //#define BREAKPOINT_FASTPATH sl@0: sl@0: /* sl@0: * COpenwfTest implementation sl@0: */ sl@0: COpenwfTest::COpenwfTest() sl@0: :iFastpathablePixelFormat(EUidPixelFormatXRGB_8888), sl@0: iNonFastpathablePixelFormat(EUidPixelFormatRGB_565), sl@0: iMappable(ETrue), sl@0: iMaxBuffers(2), sl@0: iMinBuffers(1), sl@0: iCacheAttrib(ECacheNotlisted), sl@0: iDeviceId(WFC_INVALID_HANDLE), sl@0: iSync(EGL_NO_SYNC_KHR), sl@0: iDevice(WFC_INVALID_HANDLE), sl@0: iContext(WFC_INVALID_HANDLE) sl@0: { sl@0: } sl@0: sl@0: COpenwfTest::~COpenwfTest() sl@0: { sl@0: TearDown(); sl@0: } sl@0: sl@0: void COpenwfTest::SetupL() sl@0: { sl@0: iScheduler = new(ELeave) CActiveScheduler; sl@0: CActiveScheduler::Install(iScheduler); sl@0: sl@0: ReadIniData(); sl@0: sl@0: iEGLDisplay = eglGetDisplay(EGL_DEFAULT_DISPLAY); sl@0: ASSERT_FALSE(iEGLDisplay == EGL_NO_DISPLAY); sl@0: ASSERT_FALSE(iEGLDisplay == EGL_BAD_ALLOC); sl@0: ASSERT_EQUALS(eglGetError(),EGL_SUCCESS); sl@0: eglInitialize(iEGLDisplay, NULL, NULL); sl@0: ASSERT_EQUALS(eglGetError(),EGL_SUCCESS); sl@0: sl@0: WFCint filterList[] = { WFC_DEVICE_FILTER_SCREEN_NUMBER, WFC_DEFAULT_SCREEN_NUMBER, WFC_NONE}; sl@0: ASSERT_TRUE(wfcEnumerateDevices(&iDeviceId, 1, filterList) == 1); sl@0: ASSERT_TRUE(iDeviceId != WFC_INVALID_HANDLE); sl@0: sl@0: iDevice = wfcCreateDevice(iDeviceId, NULL); sl@0: ASSERT_TRUE(iDevice != WFC_INVALID_HANDLE); sl@0: ASSERT_EQUALS(wfcGetError(iDevice),WFC_ERROR_NONE); sl@0: iContext = wfcCreateOnScreenContext(iDevice, WFC_DEFAULT_SCREEN_NUMBER, NULL); sl@0: ASSERT_TRUE(iContext != WFC_INVALID_HANDLE); sl@0: ASSERT_EQUALS(wfcGetError(iDevice),WFC_ERROR_NONE); sl@0: sl@0: iFastpathableHeight = wfcGetContextAttribi(iDevice, iContext, WFC_CONTEXT_TARGET_HEIGHT); sl@0: iFastpathableWidth = wfcGetContextAttribi(iDevice, iContext, WFC_CONTEXT_TARGET_WIDTH); sl@0: iStride = iFastpathableWidth * 4; sl@0: sl@0: iFullScreenTRect = TRect(0,0,iFastpathableWidth,iFastpathableHeight); sl@0: iFullScreenRect[0] = 0; sl@0: iFullScreenRect[1] = 0; sl@0: iFullScreenRect[2] = iFullScreenTRect.Width(); sl@0: iFullScreenRect[3] = iFullScreenTRect.Height(); sl@0: sl@0: iCenterTRect = TRect(iFastpathableWidth/4,iFastpathableHeight/4, sl@0: 3*iFastpathableWidth/4,3*iFastpathableHeight/4); sl@0: iCenterRect[0] = iCenterTRect.iTl.iX; sl@0: iCenterRect[1] = iCenterTRect.iTl.iY; sl@0: iCenterRect[2] = iCenterTRect.Width(); sl@0: iCenterRect[3] = iCenterTRect.Height(); sl@0: sl@0: iHalfSizeRect[0] = 0; sl@0: iHalfSizeRect[1] = 0; sl@0: iHalfSizeRect[2] = iFastpathableWidth/2; sl@0: iHalfSizeRect[3] = iFastpathableHeight/2; sl@0: sl@0: iUtility = CSurfaceUtility::NewL(); sl@0: sl@0: if((iTestMode == EAutomatic) || iSaveImage) sl@0: { sl@0: // Need to initialise the on screen stream before composition sl@0: // to ensure the content is available later sl@0: iUtility->GetOnScreenStream(iDevice, iContext); sl@0: } sl@0: if (iSaveImage) sl@0: { // Create a directory to save images sl@0: iUtility->CreateImagePath(iImageDirectory); sl@0: } sl@0: iAllowManualPause = ETrue; //tests can stop it (eg dispXtimes tests) sl@0: sl@0: EGLint attrib_list[1] = {EGL_NONE}; sl@0: iSync = eglCreateSyncKHR(iEGLDisplay,EGL_SYNC_REUSABLE_KHR, attrib_list); sl@0: ASSERT_NOT_EQUALS(iSync,EGL_NO_SYNC_KHR); sl@0: ASSERT_EQUALS(eglGetError(),EGL_SUCCESS); sl@0: } sl@0: sl@0: /** sl@0: * test Suite furniture sl@0: **/ sl@0: void COpenwfTest::TearDownL() sl@0: { sl@0: // Nothing leaves in this function, sl@0: // but TearDownL() is needed for the CTestFixture (TEF) interface sl@0: TearDown(); sl@0: } sl@0: sl@0: void COpenwfTest::TearDown() sl@0: { sl@0: WFCErrorCode wfcError; sl@0: if (iDevice != WFC_INVALID_HANDLE) sl@0: { sl@0: wfcError = wfcGetError(iDevice); sl@0: if (wfcError != WFC_ERROR_NONE) sl@0: { sl@0: INFO_PRINTF2(_L("TearDown: There was a failure in the test. error=%d"),wfcError); sl@0: } sl@0: } sl@0: if (iOnScreenStream != WFC_INVALID_HANDLE) sl@0: { sl@0: (void)SymbianStreamReleaseReadBuffer(iOnScreenStream, iOnScreenBuffer); //ignore the error sl@0: iOnScreenStream = WFC_INVALID_HANDLE; sl@0: } sl@0: delete iUtility; sl@0: iUtility = NULL; sl@0: if (iContext != WFC_INVALID_HANDLE) sl@0: { sl@0: wfcDestroyContext(iDevice, iContext); sl@0: iContext = WFC_INVALID_HANDLE; sl@0: WFCErrorCode wfcError = wfcGetError(iDevice); sl@0: if (wfcError != WFC_ERROR_NONE) sl@0: { sl@0: INFO_PRINTF2(_L("TearDown: wfcDestroyContext error=%d"),wfcError); sl@0: } sl@0: } sl@0: if (iDevice != WFC_INVALID_HANDLE) sl@0: { sl@0: WFCErrorCode deviceError = wfcDestroyDevice(iDevice); sl@0: iDevice = WFC_INVALID_HANDLE; sl@0: if (deviceError != WFC_ERROR_NONE) sl@0: { sl@0: INFO_PRINTF2(_L("TearDown: wfcDestroyDevice error=%d"),deviceError); sl@0: } sl@0: } sl@0: if (iSync != EGL_NO_SYNC_KHR) sl@0: { sl@0: EGLBoolean eglSyncError = eglDestroySyncKHR(iEGLDisplay, iSync); sl@0: iSync = EGL_NO_SYNC_KHR; sl@0: if (eglSyncError != EGL_TRUE) sl@0: { sl@0: INFO_PRINTF2(_L("TearDown: eglSyncError line %d"),__LINE__); sl@0: } sl@0: } sl@0: if (iEGLDisplay != EGL_NO_DISPLAY) sl@0: { sl@0: EGLBoolean eglTerminateError = eglTerminate(iEGLDisplay); sl@0: iEGLDisplay = EGL_NO_DISPLAY; sl@0: if (eglTerminateError != EGL_TRUE) sl@0: { sl@0: INFO_PRINTF2(_L("TearDown: eglTerminateError line %d"),__LINE__); sl@0: } sl@0: } sl@0: delete iScheduler; sl@0: iScheduler = NULL; sl@0: } sl@0: sl@0: /** sl@0: * To be called at the beginning of tests sl@0: * aActivate default is ON sl@0: */ sl@0: void COpenwfTest::SetupEmptySceneL(TBool aActivate) sl@0: { sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: wfcSetContextAttribi(iDevice, iContext, WFC_CONTEXT_ROTATION, WFC_ROTATION_0); sl@0: wfcSetContextAttribi(iDevice, iContext, WFC_CONTEXT_BG_COLOR, 0xFFFFFFFF); sl@0: if (aActivate) sl@0: { sl@0: LOG(("OpenWFTest: Running in autonomous composition mode")); sl@0: wfcActivate(iDevice,iContext); sl@0: } sl@0: else sl@0: { sl@0: LOG(("OpenWFTest: Running in non autonomous composition mode")); sl@0: wfcDeactivate(iDevice,iContext); sl@0: } sl@0: LOG(("OpenWFTest: Expecting COMPOSITION after next commit")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); // Compose the scene sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: ASSERT_EQUALS(wfcGetError(iDevice),WFC_ERROR_NONE); sl@0: LOG(("OpenWFTest: Fastpath - setting up scene - fastpath now off")); sl@0: } sl@0: sl@0: void COpenwfTest::ReadIniData() sl@0: { sl@0: //test mode sl@0: TBool returnValue = iConfig.GetInt(KTestSectionName, KTestMode, iTestMode); sl@0: ASSERT_TRUE(returnValue); sl@0: sl@0: //save images sl@0: iSaveImage=EFalse; sl@0: if (iTestMode == EAutomatic) sl@0: { sl@0: returnValue = iConfig.GetBool(KTestSectionName, KSaveImage, iSaveImage); sl@0: } sl@0: sl@0: // Get path for the images to be saved to sl@0: TPtrC dir; sl@0: returnValue = iConfig.GetString(KTestSectionName, KDir, dir); sl@0: if (returnValue) sl@0: { sl@0: iImageDirectory.Set(dir); sl@0: } sl@0: else sl@0: { sl@0: iImageDirectory.Set(KDefaultDir); sl@0: } sl@0: sl@0: // Composition pause in microseconds sl@0: TInt compositionPause; sl@0: returnValue = iConfig.GetInt(KTestSectionName, KCompositionPause, compositionPause); sl@0: ASSERT_TRUE(returnValue); sl@0: iCompositionPause = compositionPause; sl@0: sl@0: // Manual pause in microseconds sl@0: iManualPause = 0; sl@0: if (iTestMode != EAutomatic) sl@0: { sl@0: TInt manualPause; sl@0: returnValue = iConfig.GetInt(KTestSectionName, KManualPause, manualPause); sl@0: ASSERT_TRUE(returnValue); sl@0: iManualPause = manualPause; sl@0: } sl@0: sl@0: // Force contiguous sl@0: TBool contiguousFlag; sl@0: returnValue = iConfig.GetBool(KImageSectionName, KContiguousFlag, contiguousFlag); sl@0: if (returnValue && contiguousFlag) sl@0: { sl@0: iContiguous = EContiguous; sl@0: } sl@0: sl@0: // Test tolerance sl@0: TInt tolerance; sl@0: returnValue = iConfig.GetInt(KImageSectionName, KTolerance, tolerance); sl@0: if (returnValue) sl@0: { sl@0: iTolerance = tolerance; sl@0: } sl@0: } sl@0: sl@0: /** sl@0: * Acquires the on screen stream and buffer number sl@0: * NOTE: this function should be paired with a ReleaseOnScreenStream call sl@0: * Returns ETrue on success sl@0: */ sl@0: TBool COpenwfTest::AcquireOnScreenStream() sl@0: { sl@0: TInt error = KErrNone; sl@0: ASSERT_TRUE(iOnScreenStream == WFC_INVALID_HANDLE); sl@0: if(iTestMode == EAutomatic) sl@0: { //need to get the on screen stream sl@0: iOnScreenStream = iUtility->GetOnScreenStream(iDevice, iContext); sl@0: if(iOnScreenStream == WFC_INVALID_HANDLE) sl@0: { sl@0: INFO_PRINTF1(_L("Failed getting on screen stream")); sl@0: LOG(("OpenWFTest: *** Failed getting on screen stream")); sl@0: return EFalse; sl@0: } sl@0: error = SymbianStreamAcquireReadBuffer(iOnScreenStream, &iOnScreenBuffer); sl@0: if (error != KErrNone) sl@0: { sl@0: LOG(("OpenWFTest: *** Unable to acquire read buffer. error = %d",error)); sl@0: INFO_PRINTF2(_L("Unable to acquire read buffer. error = %d"),error); sl@0: } sl@0: return (error == KErrNone); sl@0: } sl@0: else sl@0: { sl@0: INFO_PRINTF1(_L("No need to get the on screen stream, probably manual checking mode")); sl@0: LOG(("OpenWFTest: *** No need to get the on screen stream, probably manual checking mode")); sl@0: return ETrue; sl@0: } sl@0: } sl@0: sl@0: /** sl@0: * Releases the on screen stream sl@0: */ sl@0: void COpenwfTest::ReleaseOnScreenStream() sl@0: { sl@0: if (iOnScreenStream != WFC_INVALID_HANDLE) sl@0: { sl@0: (void)SymbianStreamReleaseReadBuffer(iOnScreenStream, iOnScreenBuffer); //ignore the error sl@0: iOnScreenStream = WFC_INVALID_HANDLE; sl@0: } sl@0: if(iTestMode != EAutomatic && iAllowManualPause) sl@0: { sl@0: INFO_PRINTF1(_L("Performing manual wait")); sl@0: LOG(("OpenWFTest: *** Performing manual wait")); sl@0: TRAP_IGNORE(WaitL(iManualPause)); sl@0: } sl@0: if(iTestMode != EAutomatic && !iAllowManualPause) sl@0: { sl@0: INFO_PRINTF1(_L("Test not allowing a manual wait")); sl@0: LOG(("OpenWFTest: *** Test not allowing a manual wait")); sl@0: } sl@0: } sl@0: sl@0: /** sl@0: * Checks the rect of the on screen stream sl@0: * Returns ETrue on success sl@0: */ sl@0: TBool COpenwfTest::CheckOnScreenStreamRect(TRect aRect, const TRgb& aExpectedColor, TInt aTolerance) sl@0: { sl@0: if(iTestMode == EAutomatic) sl@0: { sl@0: if (iOnScreenStream == WFC_INVALID_HANDLE) sl@0: { sl@0: LOG(("OpenWFTest: *** We don't have access to the on screen stream")); sl@0: INFO_PRINTF1(_L("We don't have access to the on screen stream")); sl@0: return EFalse; sl@0: } sl@0: const TSurfaceId* surfaceId = NULL; sl@0: long bufferIndex; sl@0: TInt error = SymbianStreamGetBufferId(iOnScreenStream,iOnScreenBuffer,&bufferIndex,&surfaceId); sl@0: if (error == KErrNone) sl@0: { sl@0: return CheckRect(*surfaceId,bufferIndex,aRect,aExpectedColor,aTolerance); sl@0: } sl@0: else sl@0: { sl@0: LOG(("OpenWFTest: *** Unable to get stream buffer id. error = %d",error)); sl@0: INFO_PRINTF2(_L("Unable to get stream buffer id. error = %d"),error); sl@0: return EFalse; sl@0: } sl@0: } sl@0: else sl@0: { //print out what we're hoping to see for manual testing sl@0: LOG(("OpenWFTest: For rect %d %d %d %d",aRect.iTl.iX,aRect.iTl.iY,aRect.iBr.iX,aRect.iBr.iY)); sl@0: LOG(("OpenWFTest: The expected color is r=%d g=%d b=%d",aExpectedColor.Red(),aExpectedColor.Green(), sl@0: aExpectedColor.Blue())); sl@0: INFO_PRINTF5(_L("For rect %d %d %d %d"),aRect.iTl.iX,aRect.iTl.iY,aRect.iBr.iX,aRect.iBr.iY); sl@0: INFO_PRINTF4(_L("The expected color is r=%d g=%d b=%d"),aExpectedColor.Red(),aExpectedColor.Green(), sl@0: aExpectedColor.Blue()); sl@0: return ETrue; sl@0: } sl@0: } sl@0: sl@0: /** sl@0: * checks the color within the given rectangle of the given surface sl@0: * returns ETrue on success sl@0: */ sl@0: TBool COpenwfTest::CheckRect(const TSurfaceId& aSurface, TInt aBuffer, TRect aRect, sl@0: const TRgb& aExpectedColor, TInt aTolerance) sl@0: { sl@0: INFO_PRINTF1(_L("Starting pixel checking")); sl@0: LOG(("OpenWFTest: *** Starting pixel checking")); sl@0: // Check pixel data sl@0: sl@0: TBool success = iUtility->CheckRectColor(aSurface, aRect, aBuffer, aExpectedColor, aTolerance); sl@0: if (success) sl@0: { sl@0: INFO_PRINTF1(_L("Finished pixel checking - pass")); sl@0: LOG(("OpenWFTest: *** Finished pixel checking - pass")); sl@0: } sl@0: else sl@0: { sl@0: INFO_PRINTF1(_L("Finished pixel checking - fail")); sl@0: LOG(("OpenWFTest: *** Finished pixel checking - fail")); sl@0: } sl@0: return success; sl@0: } sl@0: sl@0: /** sl@0: * If in automatic mode it will save a TGA image of the on screen stream. sl@0: * It will also print the name of the reference image. sl@0: * Returns ETrue on success sl@0: */ sl@0: TBool COpenwfTest::CheckOnScreenReferenceImage() sl@0: { sl@0: TInt error = KErrNone; sl@0: //Create image file name sl@0: _LIT(KSeparator, "_"); sl@0: _LIT(KTGAImgFormat, ".tga"); sl@0: iImageAddress.Zero(); sl@0: iImageAddress.Append(iTestName); sl@0: iImageAddress.Append(KSeparator); sl@0: iImageAddress.AppendNum(iImageCounter); sl@0: iImageAddress.Append(KTGAImgFormat); sl@0: sl@0: LOGL((_L("Reference Image:%S"),&iImageAddress)); sl@0: INFO_PRINTF2(_L("Reference Image:%S"),&iImageAddress); sl@0: //Add file path sl@0: iImageAddress.Insert(0,iImageDirectory); sl@0: iImageCounter++; sl@0: sl@0: if(iTestMode == EAutomatic && iSaveImage) sl@0: { sl@0: if (iOnScreenStream == WFC_INVALID_HANDLE) sl@0: { sl@0: LOG(("OpenWFTest: *** We don't have access to the on screen stream",error)); sl@0: INFO_PRINTF1(_L("We don't have access to the on screen stream")); sl@0: return EFalse; sl@0: } sl@0: const TSurfaceId* surfaceId = NULL; sl@0: long bufferIndex; sl@0: error = SymbianStreamGetBufferId(iOnScreenStream,iOnScreenBuffer,&bufferIndex,&surfaceId); sl@0: if (error == KErrNone) sl@0: { sl@0: return SaveImage(*surfaceId,bufferIndex); sl@0: } sl@0: else sl@0: { sl@0: LOG(("OpenWFTest: *** Unable to get stream buffer id. error = %d",error)); sl@0: INFO_PRINTF2(_L("Unable to get stream buffer id. error = %d"),error); sl@0: return EFalse; sl@0: } sl@0: } sl@0: return ETrue; sl@0: } sl@0: sl@0: /** sl@0: * helper function for saving images to files sl@0: * returns ETrue on success sl@0: */ sl@0: TBool COpenwfTest::SaveImage(const TSurfaceId& aSurface, TInt aNumOfBuffer) sl@0: { sl@0: if(iTestMode == EAutomatic && iSaveImage) sl@0: { sl@0: INFO_PRINTF1(_L("Start to save image")); sl@0: LOG(("OpenWFTest: *** Start to save image")); sl@0: TBool success = EFalse; sl@0: TRAPD(error, success = iUtility->SaveResultImageTGAL(aSurface, aNumOfBuffer, iImageAddress)); sl@0: if(error != KErrNone || !success) sl@0: { sl@0: INFO_PRINTF1(_L("Failed saving image")); sl@0: LOG(("OpenWFTest: *** Failed saving image")); sl@0: return EFalse; sl@0: } sl@0: INFO_PRINTF1(_L("Saved image")); sl@0: LOG(("OpenWFTest: *** Saved image")); sl@0: } sl@0: return ETrue; sl@0: } sl@0: sl@0: /** sl@0: * Basic wait function call. Return amount of other active objects that stopped the scheduler sl@0: */ sl@0: TInt COpenwfTest::WaitL(TTimeIntervalMicroSeconds32 aDelay) //aDelay in microseconds sl@0: { sl@0: CActiveWaiter* waiter = NULL; sl@0: waiter = CActiveWaiter::NewL(); sl@0: TInt counter = waiter->Wait(aDelay); sl@0: delete waiter; sl@0: return counter; sl@0: } sl@0: sl@0: /** sl@0: * aMaxDelay The maximum time we are willing to wait in microseconds sl@0: * aNotifications The amount of notifications we expect to complete, must be >0 sl@0: * Returns ETrue on success sl@0: */ sl@0: TBool COpenwfTest::WaitForNotifications(TTimeIntervalMicroSeconds32 aMaxDelay,TInt aNotificatons) sl@0: { sl@0: if (aNotificatons == 0) sl@0: { //use WaitL if no notifications are expected sl@0: return EFalse; sl@0: } sl@0: TTime before; sl@0: TTime after; sl@0: before.UniversalTime(); sl@0: TTimeIntervalMicroSeconds diff; sl@0: TInt counter = aNotificatons; sl@0: CActiveWaiter* waiter = NULL; sl@0: TRAP_IGNORE(waiter = CActiveWaiter::NewL()); sl@0: if (!waiter) sl@0: { sl@0: INFO_PRINTF1(_L("Failed creating CActiveWaiter")); sl@0: LOG(("OpenWFTest: *** Failed creating CActiveWaiter")); sl@0: return EFalse; sl@0: } sl@0: waiter->StartWait(aMaxDelay); sl@0: CActiveScheduler::Start(); sl@0: while(!waiter->iRun) sl@0: { sl@0: after.UniversalTime(); sl@0: diff = after.MicroSecondsFrom(before); sl@0: if (diff > KNotificationWarning) sl@0: { sl@0: INFO_PRINTF2(_L("note: Notification took a long time to complete: %ld microseconds"),diff.Int64()); sl@0: LOG(("OpenWFTest: *** note: Notification took a long time to complete: %ld microseconds",diff.Int64())); sl@0: } sl@0: counter--; sl@0: if (counter == 0) sl@0: { //all expected notifications were completed sl@0: delete waiter; sl@0: return ETrue; sl@0: } sl@0: CActiveScheduler::Start(); sl@0: } sl@0: INFO_PRINTF2(_L("Not all notifications completed, counter=%d"),counter); sl@0: LOG(("OpenWFTest: *** Not all notifications completed, counter=%d",counter)); sl@0: delete waiter; sl@0: //the notifications didn't complete in time sl@0: return EFalse; sl@0: } sl@0: sl@0: // Create a suite of all the tests sl@0: CTestSuite* COpenwfTest::CreateSuiteL(const TDesC& aName) sl@0: { sl@0: SUB_SUITE_OPT(COpenwfTest,NULL); sl@0: //positive fastpath tests sl@0: ADD_THIS_TEST_STEP(GRAPHICS_OPENWFC_FASTPATH_0000L); sl@0: ADD_THIS_TEST_STEP(GRAPHICS_OPENWFC_FASTPATH_0001L); sl@0: ADD_THIS_TEST_STEP(GRAPHICS_OPENWFC_FASTPATH_0002L); sl@0: ADD_THIS_TEST_STEP(GRAPHICS_OPENWFC_FASTPATH_0003L); sl@0: ADD_THIS_TEST_STEP(GRAPHICS_OPENWFC_FASTPATH_0004L); sl@0: ADD_THIS_TEST_STEP(GRAPHICS_OPENWFC_FASTPATH_0005L); sl@0: ADD_THIS_TEST_STEP(GRAPHICS_OPENWFC_FASTPATH_0006L); sl@0: ADD_THIS_TEST_STEP(GRAPHICS_OPENWFC_FASTPATH_0007L); sl@0: //fastpath with notification tests sl@0: ADD_THIS_TEST_STEP(GRAPHICS_OPENWFC_FASTPATH_0010L); sl@0: ADD_THIS_TEST_STEP(GRAPHICS_OPENWFC_FASTPATH_0011L); sl@0: ADD_THIS_TEST_STEP(GRAPHICS_OPENWFC_FASTPATH_0012L); sl@0: ADD_THIS_TEST_STEP(GRAPHICS_OPENWFC_FASTPATH_0013L); sl@0: //negative fastpath tests sl@0: ADD_THIS_TEST_STEP(GRAPHICS_OPENWFC_FASTPATH_0020L); sl@0: ADD_THIS_TEST_STEP(GRAPHICS_OPENWFC_FASTPATH_0021L); sl@0: ADD_THIS_TEST_STEP(GRAPHICS_OPENWFC_FASTPATH_0022L); sl@0: ADD_THIS_TEST_STEP(GRAPHICS_OPENWFC_FASTPATH_0023L); sl@0: ADD_THIS_TEST_STEP(GRAPHICS_OPENWFC_FASTPATH_0024L); sl@0: ADD_THIS_TEST_STEP(GRAPHICS_OPENWFC_FASTPATH_0025L); sl@0: ADD_THIS_TEST_STEP(GRAPHICS_OPENWFC_FASTPATH_0026L); sl@0: ADD_THIS_TEST_STEP(GRAPHICS_OPENWFC_FASTPATH_0027L); sl@0: sl@0: END_SUITE; sl@0: } sl@0: sl@0: void TefUnitFailLeaveL() sl@0: { sl@0: User::Leave(KErrTEFUnitFail); sl@0: } sl@0: sl@0: CActiveNotification* CActiveNotification::NewL(RSurfaceUpdateSession& aSurfaceUpdateSession,TBool aActivate) sl@0: { sl@0: CActiveNotification* self = new (ELeave) CActiveNotification; sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(aSurfaceUpdateSession); sl@0: CleanupStack::Pop(self); sl@0: if (aActivate) sl@0: { sl@0: self->SetActive(); sl@0: } sl@0: return self; sl@0: } sl@0: sl@0: void CActiveNotification::ConstructL(RSurfaceUpdateSession& aSurfaceUpdateSession) sl@0: { sl@0: CActiveScheduler::Add(this); sl@0: iSurfaceUpdateSession = aSurfaceUpdateSession; sl@0: } sl@0: sl@0: CActiveNotification::CActiveNotification() : CActive(EPriorityNormal) sl@0: {} sl@0: sl@0: CActiveNotification::~CActiveNotification() sl@0: { sl@0: Cancel(); sl@0: } sl@0: sl@0: void CActiveNotification::DoCancel() sl@0: { //we need to cancel all notifications - this will impact other notifications in this sus session! sl@0: iSurfaceUpdateSession.CancelAllUpdateNotifications(); sl@0: } sl@0: sl@0: void CActiveNotification::RunL() sl@0: { sl@0: CActiveScheduler::Stop(); sl@0: } sl@0: sl@0: TInt CActiveNotification::RunError(TInt aError) sl@0: { sl@0: return aError; // exists so a break point can be placed on it. sl@0: } sl@0: sl@0: void CActiveNotification::Activate() sl@0: { sl@0: SetActive(); sl@0: } sl@0: sl@0: CActiveWaiter* CActiveWaiter::NewL() sl@0: { sl@0: CActiveWaiter* self = new (ELeave) CActiveWaiter; sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: void CActiveWaiter::ConstructL() sl@0: { sl@0: User::LeaveIfError(iTimer.CreateLocal()); sl@0: CActiveScheduler::Add(this); sl@0: } sl@0: sl@0: CActiveWaiter::CActiveWaiter() : CActive(CActive::EPriorityStandard) sl@0: {} sl@0: sl@0: CActiveWaiter::~CActiveWaiter() sl@0: { sl@0: Cancel(); sl@0: iTimer.Close(); sl@0: } sl@0: sl@0: void CActiveWaiter::DoCancel() sl@0: { sl@0: iTimer.Cancel(); sl@0: } sl@0: sl@0: void CActiveWaiter::RunL() sl@0: { sl@0: iRun = ETrue; sl@0: CActiveScheduler::Stop(); sl@0: } sl@0: sl@0: TInt CActiveWaiter::RunError(TInt aError) sl@0: { sl@0: return aError; // exists so a break point can be placed on it. sl@0: } sl@0: sl@0: /** sl@0: * Waits the set amount of time. Returns the amount of times the active scheduler sl@0: * was stopped (not including its own active scheduler stop) sl@0: */ sl@0: TInt CActiveWaiter::Wait(TTimeIntervalMicroSeconds32 aDelay) //microseconds sl@0: { sl@0: TInt counter = 0; sl@0: SetActive(); sl@0: iTimer.After(iStatus, aDelay); sl@0: iRun = EFalse; sl@0: CActiveScheduler::Start(); sl@0: while (!iRun) sl@0: {//may be another object that stops the scheduler running in these tests. sl@0: counter++; sl@0: CActiveScheduler::Start(); sl@0: } sl@0: return counter; sl@0: } sl@0: sl@0: /** sl@0: * Starts an AO with the given delay. Remember the RunL will stop the active scheduler. sl@0: */ sl@0: void CActiveWaiter::StartWait(TTimeIntervalMicroSeconds32 aDelay) //microseconds sl@0: { sl@0: SetActive(); sl@0: iTimer.After(iStatus, aDelay); sl@0: } sl@0: sl@0: /* sl@0: @SYMTestCaseID GRAPHICS-OPENWFC-FASTPATH-0000 sl@0: @SYMTestCaseDesc Positive testing - Fastpath one-element scene sl@0: @SYMREQ sl@0: @SYMPREQ PREQ417-54885 sl@0: @SYMTestType Unit Test sl@0: @SYMTestPriority High sl@0: @SYMTestPurpose Check a scene meeting fastpath criteria can be fastpathed sl@0: @SYMTestActions sl@0: All compositions are autonomous: sl@0: Compose an empty scene sl@0: Create a scene containing a screen sized element with no scaling, no alpha, no mask, no rotation sl@0: Compose the scene sl@0: @SYMTestExpectedResults sl@0: The final scene should be fastpathed sl@0: */ sl@0: void COpenwfTest::GRAPHICS_OPENWFC_FASTPATH_0000L() sl@0: { sl@0: iTestName = _L("FASTPATH_0000"); sl@0: INFO_PRINTF2(_L("GRAPHICS_OPENWFC_%SL()"),&iTestName); sl@0: LOGL((_L("OpenWFTest: GRAPHICS_OPENWFC_%SL()"),&iTestName)); sl@0: SetupEmptySceneL(); sl@0: sl@0: TSurfaceId surface=iUtility->CreateSurfaceL(TSize(iFastpathableWidth,iFastpathableHeight), sl@0: iFastpathablePixelFormat, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: ASSERT_FALSE(surface.IsNull()); sl@0: sl@0: WFCSource fpSource = wfcCreateSourceFromStream(iDevice, iContext,reinterpret_cast(&surface), NULL); sl@0: TInt err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WFCElement fpElement = wfcCreateElement(iDevice, iContext, NULL); sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_SOURCE, fpSource); sl@0: sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_SOURCE_RECTANGLE, 4, iFullScreenRect); sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_DESTINATION_RECTANGLE, 4, iFullScreenRect); sl@0: sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: wfcInsertElement(iDevice, fpElement, WFC_INVALID_HANDLE); sl@0: LOG(("OpenWFTest: Expecting FASTPATH after next commit")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: LOG(("OpenWFTest: Fastpath - Now ON")); sl@0: sl@0: iUtility->FillSurfaceL(surface, 0, KGreen); sl@0: err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WaitL(iCompositionPause); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iFullScreenTRect,KGreen,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: ASSERT_EQUALS(wfcGetError(iDevice),WFC_ERROR_NONE); sl@0: wfcDestroySource(iDevice, fpSource); sl@0: } sl@0: sl@0: /* sl@0: @SYMTestCaseID GRAPHICS-OPENWFC-FASTPATH-0001 sl@0: @SYMTestCaseDesc Positive testing - Fastpath one-element scene sl@0: @SYMREQ sl@0: @SYMPREQ PREQ417-54885 sl@0: @SYMTestType Unit Test sl@0: @SYMTestPriority High sl@0: @SYMTestPurpose Check a scene including a full screen element with global alpha at opaque level sl@0: can be fastpathed sl@0: @SYMTestActions sl@0: All compositions are autonomous: sl@0: Compose an empty scene sl@0: Create a scene containing a screen sized element with 2 buffers sl@0: Enable WFC_TRANPARENCY_GLOBAL_ALPHA sl@0: Set WFC_ELEMENT_GLOBAL_ALPHA to be 255 (opaque) sl@0: Compose the scene sl@0: @SYMTestExpectedResults sl@0: The final scene should be fastpathed sl@0: */ sl@0: void COpenwfTest::GRAPHICS_OPENWFC_FASTPATH_0001L() sl@0: { sl@0: iTestName = _L("FASTPATH_0001"); sl@0: INFO_PRINTF2(_L("GRAPHICS_OPENWFC_%SL()"),&iTestName); sl@0: LOGL((_L("OpenWFTest: GRAPHICS_OPENWFC_%SL()"),&iTestName)); sl@0: SetupEmptySceneL(); sl@0: sl@0: TSurfaceId surface=iUtility->CreateSurfaceL(TSize(iFastpathableWidth,iFastpathableHeight), sl@0: iFastpathablePixelFormat, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: ASSERT_FALSE(surface.IsNull()); sl@0: sl@0: WFCSource fpSource = wfcCreateSourceFromStream(iDevice, iContext,reinterpret_cast(&surface), NULL); sl@0: TInt err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WFCElement fpElement = wfcCreateElement(iDevice, iContext, NULL); sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_SOURCE, fpSource); sl@0: sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_SOURCE_RECTANGLE, 4, iFullScreenRect); sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_DESTINATION_RECTANGLE, 4, iFullScreenRect); sl@0: //set element global alpha sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_TRANSPARENCY_TYPES, WFC_TRANSPARENCY_ELEMENT_GLOBAL_ALPHA); sl@0: wfcSetElementAttribf(iDevice, fpElement, WFC_ELEMENT_GLOBAL_ALPHA, 1.0f); sl@0: sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: wfcInsertElement(iDevice, fpElement, WFC_INVALID_HANDLE); sl@0: LOG(("OpenWFTest: Expecting FASTPATH after next commit - using element alpha")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: LOG(("OpenWFTest: Fastpath - now ON - using element alpha")); sl@0: sl@0: iUtility->FillSurfaceL(surface, 0, KGreen); sl@0: err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WaitL(iCompositionPause); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iFullScreenTRect,KGreen,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: ASSERT_EQUALS(wfcGetError(iDevice),WFC_ERROR_NONE); sl@0: wfcDestroySource(iDevice, fpSource); sl@0: } sl@0: sl@0: /* sl@0: @SYMTestCaseID GRAPHICS-OPENWFC-FASTPATH-0002 sl@0: @SYMTestCaseDesc Positive testing - Fastpath one-element scene sl@0: @SYMREQ sl@0: @SYMPREQ PREQ417-54885 sl@0: @SYMTestType Unit Test sl@0: @SYMTestPriority High sl@0: @SYMTestPurpose Check a scene including a full screen element with source alpha flagged but an sl@0: opaque data format can be fastpathed sl@0: @SYMTestActions sl@0: All compositions are autonomous: sl@0: Compose an empty scene sl@0: Create a scene containing a screen sized element sl@0: Enable WFC_TRANSPARENCY_SOURCE, but the source format has no alpha value sl@0: Compose the scene sl@0: @SYMTestExpectedResults sl@0: The final scene should be fastpathed sl@0: */ sl@0: void COpenwfTest::GRAPHICS_OPENWFC_FASTPATH_0002L() sl@0: { sl@0: iTestName = _L("FASTPATH_0002"); sl@0: INFO_PRINTF2(_L("GRAPHICS_OPENWFC_%SL()"),&iTestName); sl@0: LOGL((_L("OpenWFTest: GRAPHICS_OPENWFC_%SL()"),&iTestName)); sl@0: SetupEmptySceneL(); sl@0: sl@0: TSurfaceId surface=iUtility->CreateSurfaceL(TSize(iFastpathableWidth,iFastpathableHeight), sl@0: EUidPixelFormatXRGB_8888, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: ASSERT_FALSE(surface.IsNull()); sl@0: sl@0: WFCSource fpSource = wfcCreateSourceFromStream(iDevice, iContext,reinterpret_cast(&surface), NULL); sl@0: TInt err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WFCElement fpElement = wfcCreateElement(iDevice, iContext, NULL); sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_SOURCE, fpSource); sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_SOURCE_RECTANGLE, 4, iFullScreenRect); sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_DESTINATION_RECTANGLE, 4, iFullScreenRect); sl@0: //set pixel alpha on XRGB element sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_TRANSPARENCY_TYPES, WFC_TRANSPARENCY_SOURCE); sl@0: sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: wfcInsertElement(iDevice, fpElement, WFC_INVALID_HANDLE); sl@0: LOG(("OpenWFTest: Expecting FASTPATH after next commit - using pixel alpha")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: LOG(("OpenWFTest: Fastpath - now ON - using pixel alpha")); sl@0: sl@0: iUtility->FillSurfaceL(surface, 0, KGreen); sl@0: err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WaitL(iCompositionPause); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iFullScreenTRect,KGreen,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: ASSERT_EQUALS(wfcGetError(iDevice),WFC_ERROR_NONE); sl@0: wfcDestroySource(iDevice, fpSource); sl@0: } sl@0: sl@0: /* sl@0: @SYMTestCaseID GRAPHICS-OPENWFC-FASTPATH-0003 sl@0: @SYMTestCaseDesc Positive testing - Fastpath scene with a double buffered element sl@0: @SYMREQ sl@0: @SYMPREQ PREQ417-54885 sl@0: @SYMTestType Unit Test sl@0: @SYMTestPriority High sl@0: @SYMTestPurpose Check if a scene is fastpathed using the second buffer sl@0: @SYMTestActions sl@0: All compositions are autonomous: sl@0: Compose an empty scene sl@0: A) Create a scene containing an element with 2 buffers sl@0: Set the element screen size sl@0: Set destination and source rectangle to screen size sl@0: Compose the scene sl@0: B) Send an update to buffer 1 with change of colour sl@0: Wait for notification sl@0: @SYMTestExpectedResults sl@0: The scene should be fastpathed for A and B sl@0: Screen colour should change after B sl@0: */ sl@0: void COpenwfTest::GRAPHICS_OPENWFC_FASTPATH_0003L() sl@0: { sl@0: iTestName = _L("FASTPATH_0003"); sl@0: INFO_PRINTF2(_L("GRAPHICS_OPENWFC_%SL()"),&iTestName); sl@0: LOGL((_L("OpenWFTest: GRAPHICS_OPENWFC_%SL()"),&iTestName)); sl@0: SetupEmptySceneL(); sl@0: sl@0: TSurfaceId surface=iUtility->CreateSurfaceL(TSize(iFastpathableWidth,iFastpathableHeight), sl@0: iFastpathablePixelFormat, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: ASSERT_FALSE(surface.IsNull()); sl@0: sl@0: WFCSource fpSource = wfcCreateSourceFromStream(iDevice, iContext,reinterpret_cast(&surface), NULL); sl@0: TInt err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WFCElement fpElement = wfcCreateElement(iDevice, iContext, NULL); sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_SOURCE, fpSource); sl@0: sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_SOURCE_RECTANGLE, 4, iFullScreenRect); sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_DESTINATION_RECTANGLE, 4, iFullScreenRect); sl@0: sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: wfcInsertElement(iDevice, fpElement, WFC_INVALID_HANDLE); sl@0: LOG(("OpenWFTest: Expecting FASTPATH after next commit")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: LOG(("OpenWFTest: Fastpath - now ON")); sl@0: sl@0: iUtility->FillSurfaceL(surface, 0, KGreen); sl@0: err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WaitL(iCompositionPause); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iFullScreenTRect,KGreen,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: //Fill surface is blue sl@0: iUtility->FillSurfaceL(surface, 1, KBlue); sl@0: //Do content update for surface buff1 sl@0: CActiveNotification* buff1disp = CActiveNotification::NewL(iUtility->Session(),ETrue); sl@0: CleanupStack::PushL(buff1disp); sl@0: TTimeStamp buff1time; sl@0: iUtility->NotifyWhenDisplayed(buff1disp->iStatus,buff1time); sl@0: sl@0: LOG(("OpenWFTest: Fastpath - staying ON...")); sl@0: err = iUtility->SubmitUpdate(surface, 1, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: ASSERT_TRUE(WaitForNotifications(KMaxNotificationDelay,1)); //1 AO should have completed sl@0: sl@0: //create ref image/check on screen content sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iFullScreenTRect,KBlue,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: ASSERT_EQUALS(wfcGetError(iDevice),WFC_ERROR_NONE); sl@0: wfcDestroySource(iDevice, fpSource); sl@0: CleanupStack::PopAndDestroy(buff1disp); sl@0: } sl@0: sl@0: /* sl@0: @SYMTestCaseID GRAPHICS-OPENWFC-FASTPATH-0004 sl@0: @SYMTestCaseDesc Positive testing - Fastpath two-element scene sl@0: @SYMREQ sl@0: @SYMPREQ PREQ417-54885 sl@0: @SYMTestType Unit Test sl@0: @SYMTestPriority Medium sl@0: @SYMTestPurpose Check a scene including a full screen opaque element as the top layer can be sl@0: fastpathed sl@0: @SYMTestActions sl@0: All compositions are autonomous: sl@0: Compose an empty scene sl@0: A) Create a scene containing a screen sized element with WFC_TRANSPARENCY_NONE enabled sl@0: Compose the scene sl@0: B) Create a small rectangle behind the first element sl@0: Compose the scene sl@0: */ sl@0: void COpenwfTest::GRAPHICS_OPENWFC_FASTPATH_0004L() sl@0: { sl@0: iTestName = _L("FASTPATH_0004"); sl@0: INFO_PRINTF2(_L("GRAPHICS_OPENWFC_%SL()"),&iTestName); sl@0: LOGL((_L("OpenWFTest: GRAPHICS_OPENWFC_%SL()"),&iTestName)); sl@0: SetupEmptySceneL(); sl@0: sl@0: TSurfaceId surface=iUtility->CreateSurfaceL(TSize(iFastpathableWidth,iFastpathableHeight), sl@0: iFastpathablePixelFormat, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: ASSERT_FALSE(surface.IsNull()); sl@0: sl@0: WFCSource fpSource = wfcCreateSourceFromStream(iDevice, iContext,reinterpret_cast(&surface), NULL); sl@0: TInt err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WFCElement fpElement = wfcCreateElement(iDevice, iContext, NULL); sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_SOURCE, fpSource); sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_SOURCE_RECTANGLE, 4, iFullScreenRect); sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_DESTINATION_RECTANGLE, 4, iFullScreenRect); sl@0: sl@0: TSurfaceId surfaceB = iUtility->CreateSurfaceL(TSize(iFastpathableWidth/2,iFastpathableHeight/2), sl@0: iFastpathablePixelFormat, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: ASSERT_FALSE(surfaceB.IsNull()); sl@0: WFCSource sourceB = wfcCreateSourceFromStream(iDevice, iContext, reinterpret_cast(&surfaceB), NULL); sl@0: err = iUtility->SubmitUpdate(surfaceB, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WFCElement elementB = wfcCreateElement(iDevice, iContext, NULL); sl@0: wfcSetElementAttribi(iDevice, elementB, WFC_ELEMENT_SOURCE, sourceB); sl@0: wfcSetElementAttribiv(iDevice, elementB, WFC_ELEMENT_SOURCE_RECTANGLE, 4, iHalfSizeRect); sl@0: wfcSetElementAttribiv(iDevice, elementB, WFC_ELEMENT_DESTINATION_RECTANGLE, 4, iCenterRect); sl@0: sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: wfcInsertElement(iDevice, fpElement, WFC_INVALID_HANDLE); sl@0: LOG(("OpenWFTest: Expecting FASTPATH after next commit")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: LOG(("OpenWFTest: Fastpath - now ON")); sl@0: sl@0: iUtility->FillSurfaceL(surface, 0, KGreen); sl@0: err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WaitL(iCompositionPause); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iFullScreenTRect,KGreen,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: LOG(("OpenWFTest: Fastpath - staying ON...")); sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: wfcInsertElement(iDevice, elementB, WFC_INVALID_HANDLE); sl@0: LOG(("OpenWFTest: Expecting FASTPATH after next commit")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: sl@0: iUtility->FillSurfaceL(surfaceB, 0, KBlue); sl@0: err = iUtility->SubmitUpdate(surfaceB, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WaitL(iCompositionPause); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iFullScreenTRect,KGreen,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: ASSERT_EQUALS(wfcGetError(iDevice),WFC_ERROR_NONE); sl@0: wfcDestroySource(iDevice, fpSource); sl@0: wfcDestroySource(iDevice, sourceB); sl@0: } sl@0: sl@0: /* sl@0: @SYMTestCaseID GRAPHICS-OPENWFC-FASTPATH-0005 sl@0: @SYMTestCaseDesc Positive testing - Fastpath two-element scene sl@0: @SYMREQ sl@0: @SYMPREQ PREQ417-54885 sl@0: @SYMTestType Unit Test sl@0: @SYMTestPriority Medium sl@0: @SYMTestPurpose Check a scene including a full screen element with global alpha as the top layer sl@0: can be fastpathed sl@0: @SYMTestActions sl@0: All compositions are autonomous: sl@0: Compose an empty scene sl@0: A) Create a scene containing a screen sized element sl@0: Enable WFC_TRANPARENCY_GLOBAL_ALPHA and set WFC_ELEMENT_GLOBAL_ALPHA to be 255 (opaque) sl@0: Compose the scene sl@0: B) Create a smaller element behind the first element sl@0: Compose the scene sl@0: @SYMTestExpectedResults sl@0: Both compositions should trigger fastpathing. sl@0: */ sl@0: void COpenwfTest::GRAPHICS_OPENWFC_FASTPATH_0005L() sl@0: { sl@0: iTestName = _L("FASTPATH_0005"); sl@0: INFO_PRINTF2(_L("GRAPHICS_OPENWFC_%SL()"),&iTestName); sl@0: LOGL((_L("OpenWFTest: GRAPHICS_OPENWFC_%SL()"),&iTestName)); sl@0: SetupEmptySceneL(); sl@0: sl@0: TSurfaceId surface=iUtility->CreateSurfaceL(TSize(iFastpathableWidth,iFastpathableHeight), sl@0: iFastpathablePixelFormat, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: ASSERT_FALSE(surface.IsNull()); sl@0: sl@0: WFCSource fpSource = wfcCreateSourceFromStream(iDevice, iContext,reinterpret_cast(&surface), NULL); sl@0: TInt err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WFCElement fpElement = wfcCreateElement(iDevice, iContext, NULL); sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_SOURCE, fpSource); sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_SOURCE_RECTANGLE, 4, iFullScreenRect); sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_DESTINATION_RECTANGLE, 4, iFullScreenRect); sl@0: //set element global alpha sl@0: wfcSetElementAttribf(iDevice, fpElement, WFC_ELEMENT_GLOBAL_ALPHA, 1.0f); sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_TRANSPARENCY_TYPES, WFC_TRANSPARENCY_ELEMENT_GLOBAL_ALPHA); sl@0: sl@0: TSurfaceId surfaceB = iUtility->CreateSurfaceL(TSize(iFastpathableWidth/2,iFastpathableHeight/2), sl@0: iFastpathablePixelFormat, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: ASSERT_FALSE(surfaceB.IsNull()); sl@0: WFCSource sourceB = wfcCreateSourceFromStream(iDevice, iContext, reinterpret_cast(&surfaceB), NULL); sl@0: err = iUtility->SubmitUpdate(surfaceB, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WFCElement elementB = wfcCreateElement(iDevice, iContext, NULL); sl@0: wfcSetElementAttribi(iDevice, elementB, WFC_ELEMENT_SOURCE, sourceB); sl@0: wfcSetElementAttribiv(iDevice, elementB, WFC_ELEMENT_SOURCE_RECTANGLE, 4, iHalfSizeRect); sl@0: wfcSetElementAttribiv(iDevice, elementB, WFC_ELEMENT_DESTINATION_RECTANGLE, 4, iCenterRect); sl@0: sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: wfcInsertElement(iDevice, fpElement, WFC_INVALID_HANDLE); sl@0: LOG(("OpenWFTest: Expecting FASTPATH after next commit - using element global alpha")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: LOG(("OpenWFTest: Fastpath - now ON... - using element global alpha")); sl@0: sl@0: iUtility->FillSurfaceL(surface, 0, KGreen); sl@0: ASSERT_EQUALS(iUtility->SubmitUpdate(surface, 0, NULL),KErrNone); sl@0: WaitL(iCompositionPause); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iFullScreenTRect,KGreen,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: wfcInsertElement(iDevice, elementB, WFC_INVALID_HANDLE); sl@0: LOG(("OpenWFTest: Expecting FASTPATH after next commit - using element global alpha")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: sl@0: iUtility->FillSurfaceL(surfaceB, 0, KBlue); sl@0: err = iUtility->SubmitUpdate(surfaceB, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WaitL(iCompositionPause); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iFullScreenTRect,KGreen,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: ASSERT_EQUALS(wfcGetError(iDevice),WFC_ERROR_NONE); sl@0: wfcDestroySource(iDevice, fpSource); sl@0: wfcDestroySource(iDevice, sourceB); sl@0: } sl@0: sl@0: /* sl@0: @SYMTestCaseID GRAPHICS-OPENWFC-FASTPATH-0006 sl@0: @SYMTestCaseDesc Positive testing - Fastpath two-element scene sl@0: @SYMREQ sl@0: @SYMPREQ PREQ417-54885 sl@0: @SYMTestType Unit Test sl@0: @SYMTestPriority Low sl@0: @SYMTestPurpose Check a scene including a full screen opaque element behind a transparent element sl@0: can be fastpathed sl@0: @SYMTestActions sl@0: All compositions are autonomous: sl@0: Compose an empty scene sl@0: A) Create a scene containing an element of any size sl@0: Enable WFC_TRANPARENCY_GLOBAL_ALPHA and set WFC_ELEMENT_GLOBAL_ALPHA to 0 (transparent) sl@0: Compose the scene sl@0: B) Create another screen sized opaque element behind the frist sl@0: Compose the scene sl@0: @SYMTestExpectedResults sl@0: The final scene should fastpath for B), not for A) sl@0: (The current implementation does not support this fastpath behaviour. This test can be ignored at sl@0: the moment.) sl@0: */ sl@0: void COpenwfTest::GRAPHICS_OPENWFC_FASTPATH_0006L() sl@0: { sl@0: iTestName = _L("FASTPATH_0006"); sl@0: INFO_PRINTF2(_L("GRAPHICS_OPENWFC_%SL()"),&iTestName); sl@0: LOGL((_L("OpenWFTest: GRAPHICS_OPENWFC_%SL()"),&iTestName)); sl@0: SetupEmptySceneL(); sl@0: sl@0: TSurfaceId surface=iUtility->CreateSurfaceL(TSize(iFastpathableWidth/2,iFastpathableHeight/2), sl@0: iFastpathablePixelFormat, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: ASSERT_FALSE(surface.IsNull()); sl@0: sl@0: WFCSource fpSource = wfcCreateSourceFromStream(iDevice, iContext,reinterpret_cast(&surface), NULL); sl@0: TInt err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WFCElement fpElement = wfcCreateElement(iDevice, iContext, NULL); sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_SOURCE, fpSource); sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_SOURCE_RECTANGLE, 4, iHalfSizeRect); sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_DESTINATION_RECTANGLE, 4, iCenterRect); sl@0: //set element global alpha fully transparent sl@0: wfcSetElementAttribf(iDevice, fpElement, WFC_ELEMENT_GLOBAL_ALPHA, 0.0f); sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_TRANSPARENCY_TYPES, WFC_TRANSPARENCY_ELEMENT_GLOBAL_ALPHA); sl@0: sl@0: TSurfaceId surfaceB = iUtility->CreateSurfaceL(TSize(iFastpathableWidth,iFastpathableHeight), sl@0: iFastpathablePixelFormat, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: ASSERT_FALSE(surfaceB.IsNull()); sl@0: WFCSource sourceB = wfcCreateSourceFromStream(iDevice, iContext, reinterpret_cast(&surfaceB), NULL); sl@0: err = iUtility->SubmitUpdate(surfaceB, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WFCElement elementB = wfcCreateElement(iDevice, iContext, NULL); sl@0: wfcSetElementAttribi(iDevice, elementB, WFC_ELEMENT_SOURCE, sourceB); sl@0: wfcSetElementAttribiv(iDevice, elementB, WFC_ELEMENT_SOURCE_RECTANGLE, 4, iFullScreenRect); sl@0: wfcSetElementAttribiv(iDevice, elementB, WFC_ELEMENT_DESTINATION_RECTANGLE, 4, iFullScreenRect); sl@0: sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: wfcInsertElement(iDevice, fpElement, WFC_INVALID_HANDLE); sl@0: LOG(("OpenWFTest: Expecting COMPOSITION after next commit -single fully transparent element using global alpha")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: LOG(("OpenWFTest: Fastpath - now ON - single fully transparent element using global alpha")); sl@0: sl@0: iUtility->FillSurfaceL(surface, 0, KGreen); sl@0: err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WaitL(iCompositionPause); sl@0: sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: wfcInsertElement(iDevice, elementB, WFC_INVALID_HANDLE); sl@0: LOG(("OpenWFTest: Expecting FASTPATH after next commit -fullscreen opaque element behind fully transparent element")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: LOG(("OpenWFTest: Fastpath - now ON - fullscreen opaque element behind transparent element")); sl@0: sl@0: iUtility->FillSurfaceL(surfaceB, 0, KBlue); sl@0: err = iUtility->SubmitUpdate(surfaceB, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WaitL(iCompositionPause); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iFullScreenTRect,KBlue,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: ASSERT_EQUALS(wfcGetError(iDevice),WFC_ERROR_NONE); sl@0: wfcDestroySource(iDevice, fpSource); sl@0: wfcDestroySource(iDevice, sourceB); sl@0: } sl@0: sl@0: /* sl@0: @SYMTestCaseID GRAPHICS-OPENWFC-FASTPATH-0007 sl@0: @SYMTestCaseDesc Positive testing - Fastpath one-element scene sl@0: @SYMREQ sl@0: @SYMPREQ PREQ417-54885 sl@0: @SYMTestType Unit Test sl@0: @SYMTestPriority High sl@0: @SYMTestPurpose Check a scene including destination rectangle changes can trigger fastpath on and off sl@0: @SYMTestActions sl@0: All compositions are autonomous: sl@0: Compose an empty scene sl@0: Create a scene containing a screen sized element sl@0: Compose scene sl@0: Set the destination rectangle smaller than screen size sl@0: Compose the scene sl@0: Set the destination rectangle back to screen size sl@0: Compose the scene sl@0: @SYMTestExpectedResults sl@0: The scenes with the element of full screen destination rectangle should be fastpathed sl@0: The scene with the element of smaller destination rectangle should not be fastpathed sl@0: */ sl@0: void COpenwfTest::GRAPHICS_OPENWFC_FASTPATH_0007L() sl@0: { sl@0: iTestName = _L("FASTPATH_0007"); sl@0: INFO_PRINTF2(_L("GRAPHICS_OPENWFC_%SL()"),&iTestName); sl@0: LOGL((_L("OpenWFTest: GRAPHICS_OPENWFC_%SL()"),&iTestName)); sl@0: SetupEmptySceneL(); sl@0: sl@0: TSurfaceId surface=iUtility->CreateSurfaceL(TSize(iFastpathableWidth,iFastpathableHeight), sl@0: iFastpathablePixelFormat, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: ASSERT_FALSE(surface.IsNull()); sl@0: sl@0: WFCSource fpSource = wfcCreateSourceFromStream(iDevice, iContext,reinterpret_cast(&surface), NULL); sl@0: TInt err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WFCElement fpElement = wfcCreateElement(iDevice, iContext, NULL); sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_SOURCE, fpSource); sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_SOURCE_RECTANGLE, 4, iFullScreenRect); sl@0: //NOT full screen destination sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_DESTINATION_RECTANGLE, 4, iCenterRect); sl@0: sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: wfcInsertElement(iDevice, fpElement, WFC_INVALID_HANDLE); sl@0: LOG(("OpenWFTest: Expecting COMPOSITION after next commit")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: LOG(("OpenWFTest: Fastpath - still OFF")); sl@0: sl@0: iUtility->FillSurfaceL(surface, 0, KGreen); sl@0: err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WaitL(iCompositionPause); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iCenterTRect,KGreen,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: //NOW set full screen sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_DESTINATION_RECTANGLE, 4, iFullScreenRect); sl@0: sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: LOG(("OpenWFTest: Expecting FASTPATH after next commit")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: WaitL(iCompositionPause); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iFullScreenTRect,KGreen,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: ASSERT_EQUALS(wfcGetError(iDevice),WFC_ERROR_NONE); sl@0: wfcDestroySource(iDevice, fpSource); sl@0: } sl@0: sl@0: //NOTIFICATION TESTS sl@0: void COpenwfTest::FastpathNotificationsTestL(TBool aAutonomous) sl@0: { sl@0: SetupEmptySceneL(aAutonomous); sl@0: sl@0: //Create 3 elements A+C fastpathable, B centered sl@0: TSurfaceId surfaceA = iUtility->CreateSurfaceL(TSize(iFastpathableWidth,iFastpathableHeight), sl@0: iFastpathablePixelFormat, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: ASSERT_FALSE(surfaceA.IsNull()); sl@0: WFCSource sourceA = wfcCreateSourceFromStream(iDevice, iContext, reinterpret_cast(&surfaceA), NULL); sl@0: TInt err = iUtility->SubmitUpdate(surfaceA, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WFCElement elementA = wfcCreateElement(iDevice, iContext, NULL); sl@0: wfcSetElementAttribi(iDevice, elementA, WFC_ELEMENT_SOURCE, sourceA); sl@0: wfcSetElementAttribiv(iDevice, elementA, WFC_ELEMENT_SOURCE_RECTANGLE, 4, iFullScreenRect); sl@0: wfcSetElementAttribiv(iDevice, elementA, WFC_ELEMENT_DESTINATION_RECTANGLE, 4, iFullScreenRect); sl@0: sl@0: TSurfaceId surfaceB = iUtility->CreateSurfaceL(TSize(iFastpathableWidth/2,iFastpathableHeight/2), sl@0: iFastpathablePixelFormat, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: ASSERT_FALSE(surfaceB.IsNull()); sl@0: WFCSource sourceB = wfcCreateSourceFromStream(iDevice, iContext, reinterpret_cast(&surfaceB), NULL); sl@0: err = iUtility->SubmitUpdate(surfaceB, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WFCElement elementB = wfcCreateElement(iDevice, iContext, NULL); sl@0: wfcSetElementAttribi(iDevice, elementB, WFC_ELEMENT_SOURCE, sourceB); sl@0: wfcSetElementAttribiv(iDevice, elementB, WFC_ELEMENT_SOURCE_RECTANGLE, 4, iHalfSizeRect); sl@0: wfcSetElementAttribiv(iDevice, elementB, WFC_ELEMENT_DESTINATION_RECTANGLE, 4, iCenterRect); sl@0: sl@0: TSurfaceId surfaceC = iUtility->CreateSurfaceL(TSize(iFastpathableWidth,iFastpathableHeight), sl@0: iFastpathablePixelFormat, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: ASSERT_FALSE(surfaceC.IsNull()); sl@0: WFCSource sourceC = wfcCreateSourceFromStream(iDevice, iContext, reinterpret_cast(&surfaceC), NULL); sl@0: err = iUtility->SubmitUpdate(surfaceC, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WFCElement elementC = wfcCreateElement(iDevice, iContext, NULL); sl@0: wfcSetElementAttribi(iDevice, elementC, WFC_ELEMENT_SOURCE, sourceC); sl@0: wfcSetElementAttribiv(iDevice, elementC, WFC_ELEMENT_SOURCE_RECTANGLE, 4, iFullScreenRect); sl@0: wfcSetElementAttribiv(iDevice, elementC, WFC_ELEMENT_DESTINATION_RECTANGLE, 4, iFullScreenRect); sl@0: sl@0: //**********STARTING ACTUAL TEST!********** sl@0: //**********SURFACE A FASTPATHABLE********** sl@0: //Add A to scene sl@0: wfcInsertElement(iDevice, elementA, WFC_INVALID_HANDLE); sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: LOG(("OpenWFTest: Expecting FASTPATH after next commit")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: LOG(("OpenWFTest: Fastpath - now ON")); sl@0: //Set A buffer0 red sl@0: iUtility->FillSurfaceL(surfaceA, 0, KRed); sl@0: //Do content update Abuff0 idisp iavail sl@0: CActiveNotification* surfAbuff0disp = CActiveNotification::NewL(iUtility->Session(),ETrue); sl@0: CleanupStack::PushL(surfAbuff0disp); sl@0: TTimeStamp surfAbuff0time; sl@0: CActiveNotification* surfAbuff0avail = CActiveNotification::NewL(iUtility->Session(),ETrue); sl@0: CleanupStack::PushL(surfAbuff0avail); sl@0: //iUtility->NotifyWhenDisplayed(surfAbuff0disp,surfAbuff0time); sl@0: iUtility->NotifyWhenDisplayed(surfAbuff0disp->iStatus,surfAbuff0time); sl@0: iUtility->NotifyWhenAvailable(surfAbuff0avail->iStatus); sl@0: err = iUtility->SubmitUpdate(surfaceA, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: sl@0: if(!aAutonomous) sl@0: { sl@0: WaitL(iCompositionPause); sl@0: //Check A buff0 iDisp doesnt complete sl@0: ASSERT_EQUALS(surfAbuff0disp->iStatus.Int(),KRequestPending); sl@0: //Check A buff0 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfAbuff0avail->iStatus.Int(),KRequestPending); sl@0: wfcCompose(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: } sl@0: ASSERT_TRUE(WaitForNotifications(KMaxNotificationDelay,1)); sl@0: sl@0: //Check A buff0 iDisp completes sl@0: ASSERT_EQUALS(surfAbuff0disp->iStatus.Int(),KErrNone); sl@0: //Check A buff0 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfAbuff0avail->iStatus.Int(),KRequestPending); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iFullScreenTRect,KRed,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: //Set A buffer1 Yellow sl@0: iUtility->FillSurfaceL(surfaceA, 1, KYellow); sl@0: sl@0: //Check A buff0 iavail doesnt complete sl@0: ASSERT_EQUALS(surfAbuff0avail->iStatus.Int(),KRequestPending); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iFullScreenTRect,KRed,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: //Do content update Abuff1 idisp iavail sl@0: CActiveNotification* surfAbuff1disp = CActiveNotification::NewL(iUtility->Session(),ETrue); sl@0: CleanupStack::PushL(surfAbuff1disp); sl@0: TTimeStamp surfAbuff1time; sl@0: CActiveNotification* surfAbuff1avail = CActiveNotification::NewL(iUtility->Session(),ETrue); sl@0: CleanupStack::PushL(surfAbuff1avail); sl@0: iUtility->NotifyWhenDisplayed(surfAbuff1disp->iStatus,surfAbuff1time); sl@0: iUtility->NotifyWhenAvailable(surfAbuff1avail->iStatus); sl@0: err = iUtility->SubmitUpdate(surfaceA, 1, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: sl@0: if(!aAutonomous) sl@0: { sl@0: WaitL(iCompositionPause); sl@0: //Check A buff1 iDisp doesnt complete sl@0: ASSERT_EQUALS(surfAbuff1disp->iStatus.Int(),KRequestPending); sl@0: //Check A buff1 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfAbuff1avail->iStatus.Int(),KRequestPending); sl@0: //Check A buff0 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfAbuff0avail->iStatus.Int(),KRequestPending); sl@0: wfcCompose(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: } sl@0: ASSERT_TRUE(WaitForNotifications(KMaxNotificationDelay,2)); sl@0: sl@0: //Check A buff1 idisp completes sl@0: ASSERT_EQUALS(surfAbuff1disp->iStatus.Int(),KErrNone); sl@0: //Check A buff0 iAvail completes sl@0: ASSERT_EQUALS(surfAbuff0avail->iStatus.Int(),KErrNone); sl@0: //Check A buff1 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfAbuff1avail->iStatus.Int(),KRequestPending); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iFullScreenTRect,KYellow,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: //**********SURFACE B NOT VISIBLE********** sl@0: //Add surfaceB to scene behind surfaceA sl@0: wfcInsertElement(iDevice, elementB, WFC_INVALID_HANDLE); sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: LOG(("OpenWFTest: Expecting FASTPATH after next commit")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: LOG(("OpenWFTest: Fastpath - still ON")); sl@0: //Set B buffer0 green sl@0: iUtility->FillSurfaceL(surfaceB, 0, KGreen); sl@0: //Do content update idisp iavail sl@0: CActiveNotification* surfBbuff0disp = CActiveNotification::NewL(iUtility->Session(),ETrue); sl@0: CleanupStack::PushL(surfBbuff0disp); sl@0: TTimeStamp surfBbuff0time; sl@0: CActiveNotification* surfBbuff0avail = CActiveNotification::NewL(iUtility->Session(),ETrue); sl@0: CleanupStack::PushL(surfBbuff0avail); sl@0: iUtility->NotifyWhenDisplayed(surfBbuff0disp->iStatus,surfBbuff0time); sl@0: iUtility->NotifyWhenAvailable(surfBbuff0avail->iStatus); sl@0: err = iUtility->SubmitUpdate(surfaceB, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: sl@0: if(!aAutonomous) sl@0: { sl@0: WaitL(iCompositionPause); sl@0: //Check B buff0 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfBbuff0avail->iStatus.Int(),KRequestPending); sl@0: //Check B buff0 iDisp doesnt complete sl@0: ASSERT_EQUALS(surfBbuff0disp->iStatus.Int(),KRequestPending); sl@0: //Check A buff1 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfAbuff1avail->iStatus.Int(),KRequestPending); sl@0: wfcCompose(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: } sl@0: ASSERT_TRUE(WaitForNotifications(KMaxNotificationDelay,1)); sl@0: sl@0: //Check B buff0 idisp completes - could be no error or not visible sl@0: ASSERT_TRUE((surfBbuff0disp->iStatus.Int()==KErrNotVisible)||(surfBbuff0disp->iStatus.Int()==KErrNone)); sl@0: //Check B buff0 iavail doesnt complete sl@0: ASSERT_EQUALS(surfBbuff0avail->iStatus.Int(),KRequestPending); sl@0: //Check A buff1 iavail doesnt complete sl@0: ASSERT_EQUALS(surfAbuff1avail->iStatus.Int(),KRequestPending); sl@0: sl@0: //Set B buffer1 blue sl@0: iUtility->FillSurfaceL(surfaceB, 1, KBlue); sl@0: //Do content update idisp iavail sl@0: CActiveNotification* surfBbuff1disp = CActiveNotification::NewL(iUtility->Session(),ETrue); sl@0: CleanupStack::PushL(surfBbuff1disp); sl@0: TTimeStamp surfBbuff1time; sl@0: CActiveNotification* surfBbuff1avail = CActiveNotification::NewL(iUtility->Session(),ETrue); sl@0: CleanupStack::PushL(surfBbuff1avail); sl@0: iUtility->NotifyWhenDisplayed(surfBbuff1disp->iStatus,surfBbuff1time); sl@0: iUtility->NotifyWhenAvailable(surfBbuff1avail->iStatus); sl@0: err = iUtility->SubmitUpdate(surfaceB, 1, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: sl@0: if(!aAutonomous) sl@0: { sl@0: WaitL(iCompositionPause); sl@0: //Check B buff1 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfBbuff1avail->iStatus.Int(),KRequestPending); sl@0: //Check B buff1 iDisp doesnt complete sl@0: ASSERT_EQUALS(surfBbuff1disp->iStatus.Int(),KRequestPending); sl@0: //Check B buff0 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfBbuff0avail->iStatus.Int(),KRequestPending); sl@0: //Check A buff1 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfAbuff1avail->iStatus.Int(),KRequestPending); sl@0: wfcCompose(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: } sl@0: ASSERT_TRUE(WaitForNotifications(KMaxNotificationDelay,2)); sl@0: sl@0: //Check B buff1 idisp completes - could be no error or not visible sl@0: ASSERT_TRUE((surfBbuff1disp->iStatus.Int()==KErrNotVisible)||(surfBbuff1disp->iStatus.Int()==KErrNone)); sl@0: //Check B buff1 iavail doesnt complete sl@0: ASSERT_EQUALS(surfBbuff1avail->iStatus.Int(),KRequestPending); sl@0: //Check B buff0 iavail completes - could be no error or not visible sl@0: ASSERT_TRUE((surfBbuff0avail->iStatus.Int()==KErrNotVisible)||(surfBbuff0avail->iStatus.Int()==KErrNone)); sl@0: //Check A buff1 iavail doesnt complete sl@0: ASSERT_EQUALS(surfAbuff1avail->iStatus.Int(),KRequestPending); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iFullScreenTRect,KYellow,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: //**********SURFACE C ALSO FASTPATHABLE********** sl@0: //Add C to scene in front of surfaceA sl@0: wfcInsertElement(iDevice, elementC, elementA); sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: LOG(("OpenWFTest: Expecting FASTPATH after next commit")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: LOG(("OpenWFTest: Fastpath - still ON")); sl@0: //Set C to brown sl@0: iUtility->FillSurfaceL(surfaceC, 0, KBrown); sl@0: //Do content update Cbuff0 idisp iavail sl@0: CActiveNotification* surfCbuff0disp = CActiveNotification::NewL(iUtility->Session(),ETrue); sl@0: CleanupStack::PushL(surfCbuff0disp); sl@0: TTimeStamp surfCbuff0time; sl@0: CActiveNotification* surfCbuff0avail = CActiveNotification::NewL(iUtility->Session(),ETrue); sl@0: CleanupStack::PushL(surfCbuff0avail); sl@0: iUtility->NotifyWhenDisplayed(surfCbuff0disp->iStatus,surfCbuff0time); sl@0: iUtility->NotifyWhenAvailable(surfCbuff0avail->iStatus); sl@0: err = iUtility->SubmitUpdate(surfaceC, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: sl@0: if(!aAutonomous) sl@0: { sl@0: WaitL(iCompositionPause); sl@0: //Check C buff0 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfCbuff0avail->iStatus.Int(),KRequestPending); sl@0: //Check C buff0 iDisp doesnt complete sl@0: ASSERT_EQUALS(surfCbuff0disp->iStatus.Int(),KRequestPending); sl@0: //Check B buff1 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfBbuff1avail->iStatus.Int(),KRequestPending); sl@0: //Check A buff1 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfAbuff1avail->iStatus.Int(),KRequestPending); sl@0: wfcCompose(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: } sl@0: ASSERT_TRUE(WaitForNotifications(KMaxNotificationDelay,1)); sl@0: sl@0: //Check C buff0 idisp completes sl@0: ASSERT_EQUALS(surfCbuff0disp->iStatus.Int(),KErrNone); sl@0: //Check C buff0 iavail does not complete sl@0: ASSERT_EQUALS(surfCbuff0avail->iStatus.Int(),KRequestPending); sl@0: //Check B buff1 iavail doesnt complete sl@0: ASSERT_EQUALS(surfBbuff1avail->iStatus.Int(),KRequestPending); sl@0: //Check A buff1 iavail doesnt complete sl@0: ASSERT_EQUALS(surfAbuff1avail->iStatus.Int(),KRequestPending); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iFullScreenTRect,KBrown,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: //Set C buffer1 grey sl@0: iUtility->FillSurfaceL(surfaceC, 1, KGray); sl@0: //Do content update Cbuff1 idisp iavail sl@0: CActiveNotification* surfCbuff1disp = CActiveNotification::NewL(iUtility->Session(),ETrue); sl@0: CleanupStack::PushL(surfCbuff1disp); sl@0: TTimeStamp surfCbuff1time; sl@0: CActiveNotification* surfCbuff1avail = CActiveNotification::NewL(iUtility->Session(),ETrue); sl@0: CleanupStack::PushL(surfCbuff1avail); sl@0: iUtility->NotifyWhenDisplayed(surfCbuff1disp->iStatus,surfCbuff1time); sl@0: iUtility->NotifyWhenAvailable(surfCbuff1avail->iStatus); sl@0: err = iUtility->SubmitUpdate(surfaceC, 1, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: sl@0: if(!aAutonomous) sl@0: { sl@0: WaitL(iCompositionPause); sl@0: //Check C buff1 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfCbuff1avail->iStatus.Int(),KRequestPending); sl@0: //Check C buff1 iDisp doesnt complete sl@0: ASSERT_EQUALS(surfCbuff1disp->iStatus.Int(),KRequestPending); sl@0: //Check C buff0 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfCbuff0avail->iStatus.Int(),KRequestPending); sl@0: //Check B buff1 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfBbuff1avail->iStatus.Int(),KRequestPending); sl@0: //Check A buff1 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfAbuff1avail->iStatus.Int(),KRequestPending); sl@0: wfcCompose(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: } sl@0: ASSERT_TRUE(WaitForNotifications(KMaxNotificationDelay,2)); sl@0: sl@0: //Check C buff1 idisp completes sl@0: ASSERT_EQUALS(surfCbuff1disp->iStatus.Int(),KErrNone); sl@0: //Check C buff1 iavail does not complete sl@0: ASSERT_EQUALS(surfCbuff1avail->iStatus.Int(),KRequestPending); sl@0: //Check C buff0 iavail completes sl@0: ASSERT_EQUALS(surfCbuff0avail->iStatus.Int(),KErrNone); sl@0: //Check B buff1 iavail doesnt complete sl@0: ASSERT_EQUALS(surfBbuff1avail->iStatus.Int(),KRequestPending); sl@0: //Check A buff1 iavail doesnt complete sl@0: ASSERT_EQUALS(surfAbuff1avail->iStatus.Int(),KRequestPending); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iFullScreenTRect,KGray,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: //**********SURFACE A BACK TO FRONT********** sl@0: //Move A to the front sl@0: wfcInsertElement(iDevice, elementA, elementC); sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: LOG(("OpenWFTest: Expecting FASTPATH after next commit")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: LOG(("OpenWFTest: Fastpath - still ON")); sl@0: //Set A buffer0 magenta sl@0: iUtility->FillSurfaceL(surfaceA, 0, KMagenta); sl@0: //Do content update Abuff0 idisp iavail sl@0: surfAbuff0disp->Activate(); sl@0: surfAbuff0avail->Activate(); sl@0: iUtility->NotifyWhenDisplayed(surfAbuff0disp->iStatus,surfAbuff0time); sl@0: iUtility->NotifyWhenAvailable(surfAbuff0avail->iStatus); sl@0: err = iUtility->SubmitUpdate(surfaceA, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: sl@0: if(!aAutonomous) sl@0: { sl@0: WaitL(iCompositionPause); sl@0: //Check A buff0 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfAbuff0avail->iStatus.Int(),KRequestPending); sl@0: //Check A buff0 iDisp doesnt complete sl@0: ASSERT_EQUALS(surfAbuff0disp->iStatus.Int(),KRequestPending); sl@0: //Check C buff1 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfCbuff1avail->iStatus.Int(),KRequestPending); sl@0: //Check B buff1 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfBbuff1avail->iStatus.Int(),KRequestPending); sl@0: //Check A buff1 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfAbuff1avail->iStatus.Int(),KRequestPending); sl@0: wfcCompose(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: } sl@0: ASSERT_TRUE(WaitForNotifications(KMaxNotificationDelay,2)); sl@0: sl@0: //Check A buff0 idisp completes sl@0: ASSERT_EQUALS(surfAbuff0disp->iStatus.Int(),KErrNone); sl@0: //Check A buff0 iavail does not complete sl@0: ASSERT_EQUALS(surfAbuff0avail->iStatus.Int(),KRequestPending); sl@0: //Check A buff1 iavail does complete sl@0: ASSERT_EQUALS(surfAbuff1avail->iStatus.Int(),KErrNone); sl@0: //Check C buff1 iavail does not complete sl@0: ASSERT_EQUALS(surfCbuff1avail->iStatus.Int(),KRequestPending); sl@0: //Check B buff1 iavail doesnt complete sl@0: ASSERT_EQUALS(surfBbuff1avail->iStatus.Int(),KRequestPending); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iFullScreenTRect,KMagenta,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: //**********SURFACE B TO FRONT - STOPS FASTPATH HAPPENING********** sl@0: //Move B to the front sl@0: wfcInsertElement(iDevice, elementB, elementA); sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: LOG(("OpenWFTest: Expecting COMPOSITION after next commit")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: LOG(("OpenWFTest: Fastpath - now OFF...")); sl@0: //Set B buffer0 dark red sl@0: iUtility->FillSurfaceL(surfaceB, 0, KDarkRed); sl@0: //Do content update Abuff0 idisp iavail sl@0: surfBbuff0disp->Activate(); sl@0: surfBbuff0avail->Activate(); sl@0: iUtility->NotifyWhenDisplayed(surfBbuff0disp->iStatus,surfBbuff0time); sl@0: iUtility->NotifyWhenAvailable(surfBbuff0avail->iStatus); sl@0: err = iUtility->SubmitUpdate(surfaceB, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: sl@0: if(!aAutonomous) sl@0: { sl@0: WaitL(iCompositionPause); sl@0: //Check B buff0 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfBbuff0avail->iStatus.Int(),KRequestPending); sl@0: //Check B buff0 iDisp doesnt complete sl@0: ASSERT_EQUALS(surfBbuff0disp->iStatus.Int(),KRequestPending); sl@0: //Check A buff0 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfAbuff0avail->iStatus.Int(),KRequestPending); sl@0: //Check C buff1 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfCbuff1avail->iStatus.Int(),KRequestPending); sl@0: //Check B buff1 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfBbuff1avail->iStatus.Int(),KRequestPending); sl@0: wfcCompose(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: } sl@0: ASSERT_TRUE(WaitForNotifications(KMaxNotificationDelay,2)); sl@0: sl@0: //Check B buff0 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfBbuff0avail->iStatus.Int(),KRequestPending); sl@0: //Check B buff0 iDisp completes sl@0: ASSERT_EQUALS(surfBbuff0disp->iStatus.Int(),KErrNone); sl@0: //Check A buff0 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfAbuff0avail->iStatus.Int(),KRequestPending); sl@0: //Check C buff1 iAvail doesnt complete sl@0: ASSERT_EQUALS(surfCbuff1avail->iStatus.Int(),KRequestPending); sl@0: //Check B buff1 iAvail completes sl@0: ASSERT_EQUALS(surfBbuff1avail->iStatus.Int(),KErrNone); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: //Check dark red center of screen sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iCenterTRect,KDarkRed,iTolerance)); sl@0: //Check magenta around the borders sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(TRect(0,0,iCenterTRect.iTl.iX,iCenterTRect.iTl.iY),KMagenta,iTolerance)); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(TRect(iCenterTRect.iBr.iX+1,iCenterTRect.iBr.iY+1, sl@0: iFastpathableWidth,iFastpathableHeight),KMagenta,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: ASSERT_EQUALS(wfcGetError(iDevice),WFC_ERROR_NONE); sl@0: sl@0: wfcDestroySource(iDevice, sourceA); sl@0: wfcDestroySource(iDevice, sourceB); sl@0: wfcDestroySource(iDevice, sourceC); sl@0: sl@0: CleanupStack::PopAndDestroy(12,surfAbuff0disp); sl@0: } sl@0: /* sl@0: @SYMTestCaseID GRAPHICS-OPENWFC-FASTPATH-0010 sl@0: @SYMTestCaseDesc Positive testing - Fastpath with notification checking for autonomous composition sl@0: @SYMREQ sl@0: @SYMPREQ PREQ417-54885 sl@0: @SYMTestType Integration Test sl@0: @SYMTestPriority High sl@0: @SYMTestPurpose Check fastpath does not cause any problem to notifications sl@0: @SYMTestActions sl@0: Autonomous composition sl@0: All elements created are double buffered and opaque: sl@0: Compose an empty scene sl@0: sl@0: A) Create a scene containing a screen sized element A sl@0: Fill buffer 0 of element A with red colour sl@0: Submit the scene sl@0: Do content update of buffer 0 for available (iAvailable) and display time (iDisplayed) sl@0: Compose the scene, iDisplayed for buffer 0 should complete sl@0: sl@0: Fill buffer 1 of element A with yellow colour sl@0: Do content update of buffer 1 sl@0: Compose the scene, iDisplayed for buffer 1 should complete sl@0: Wait for iAvailable of buffer 0 to complete sl@0: (iAvailable of buffer 1 will not complete until further content update) sl@0: sl@0: B) Add a new element B of smaller non fastpathable size behind element A sl@0: Fill buffer 0 of element B with green colour sl@0: Submit the scene sl@0: Do content update of buffer 0 of element B sl@0: Compose the scene, iDisplayed for buffer 0 of element B should not complete sl@0: iAvailable for buffer 1 of element A should not complete sl@0: sl@0: Fill buffer 1 of element B with blue colour sl@0: Do content update of buffer 1 of element B sl@0: Wait for iDisplay to complete (possibly with KErrNotVisible) sl@0: Wait for iAvailable for buffer 0 of element B to complete (possibly with KErrNotVisible) sl@0: sl@0: C) Add a new screen size element C in front of A and B sl@0: Fill buffer 0 of element C to be brown sl@0: Do content update of buffer 0 of element C sl@0: Compose the scene, iDisplayed of buffer 0 of element C should complete sl@0: iAvailable of buffer 1 of element B should not complete sl@0: sl@0: Fill buffer 1 of element C with grey colour sl@0: Do content update of buffer 1 of element C sl@0: Compose the scene, iDisplayed of buffer 1 of element C should complete sl@0: Wait for iAvailable of buffer 0 of element C to complete sl@0: sl@0: D) Move element A to the front sl@0: Fill buffer 0 of element A with magenta colour sl@0: Do content update of buffer 0 of element A sl@0: Compose the scene, iDisplayed for buffer 0 of element A should complete sl@0: Wait for iAvailable of buffer 1 of element A to complete sl@0: iAvailable of buffer 1 of element C should not complete sl@0: sl@0: E) Move element B to the front *NOW NOT FASTPATHING* sl@0: Fill buffer 0 of element B with dark red colour sl@0: Do content update of buffer 0 of element B sl@0: Compose the scene, iDisplayed for buffer 0 of element B should complete sl@0: Wait for iAvailable of buffer 1 of element B to complete sl@0: iAvailable of buffer 1 of element C should not complete sl@0: iAvailable of buffer 0 of element A should not complete sl@0: sl@0: @SYMTestExpectedResults sl@0: All composition should trigger fastpath sl@0: Request status checks iAvailable and iDisplayed should be set to KErrNone every time. sl@0: Screen colour should change in the sequence of red, yellow, brown, grey, magenta sl@0: */ sl@0: void COpenwfTest::GRAPHICS_OPENWFC_FASTPATH_0010L() sl@0: { sl@0: iTestName = _L("FASTPATH_0010"); sl@0: INFO_PRINTF2(_L("GRAPHICS_OPENWFC_%SL()"),&iTestName); sl@0: LOGL((_L("OpenWFTest: GRAPHICS_OPENWFC_%SL()"),&iTestName)); sl@0: FastpathNotificationsTestL(ETrue); sl@0: } sl@0: sl@0: /* sl@0: @SYMTestCaseID GRAPHICS-OPENWFC-FASTPATH-0011 sl@0: @SYMTestCaseDesc Positive testing - Fastpath with notification checking for non-autonomous composition sl@0: @SYMREQ sl@0: @SYMPREQ PREQ417-54885 sl@0: @SYMTestType Integration Test sl@0: @SYMTestPriority High sl@0: @SYMTestPurpose Check fastpath does not cause any problem to notifications sl@0: @SYMTestActions sl@0: A repeat of GRAPHICS-OPENWFC-FASTPATH-0010 but with non autonomous composition sl@0: sl@0: Where possible TRequestStatuses are additionally checked after submit updates and before sl@0: explicit wfcCompose calls are made. sl@0: sl@0: @SYMTestExpectedResults sl@0: Just commit should not trigger any changes to the scene or notifications to complete sl@0: Just content updates should not trigger any changes to the scene or notifications to complete sl@0: Only after Commit, Content update and Force compose should things happen. sl@0: Request status checks iAvailable and iDisplayed should be completed. sl@0: Screen colour should change in the sequence of red, yellow, green, blue, brown and grey sl@0: */ sl@0: void COpenwfTest::GRAPHICS_OPENWFC_FASTPATH_0011L() sl@0: { sl@0: iTestName = _L("FASTPATH_0011"); sl@0: INFO_PRINTF2(_L("GRAPHICS_OPENWFC_%SL()"),&iTestName); sl@0: LOGL((_L("OpenWFTest: GRAPHICS_OPENWFC_%SL()"),&iTestName)); sl@0: FastpathNotificationsTestL(EFalse); sl@0: } sl@0: sl@0: //NOTIFICATION TESTS sl@0: void COpenwfTest::FastpathDispXNotificationsTestL(TBool aAutonomous) sl@0: { sl@0: SetupEmptySceneL(aAutonomous); sl@0: if (aAutonomous) sl@0: { //if we have manual pauses the test will complete early sl@0: iAllowManualPause = EFalse; sl@0: } sl@0: sl@0: //Create 2 fastpathable elements sl@0: TSurfaceId surfaceA = iUtility->CreateSurfaceL(TSize(iFastpathableWidth,iFastpathableHeight), sl@0: iFastpathablePixelFormat, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: sl@0: ASSERT_FALSE(surfaceA.IsNull()); sl@0: WFCSource sourceA = wfcCreateSourceFromStream(iDevice, iContext, reinterpret_cast(&surfaceA), NULL); sl@0: TInt err = iUtility->SubmitUpdate(surfaceA, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WFCElement elementA = wfcCreateElement(iDevice, iContext, NULL); sl@0: wfcSetElementAttribi(iDevice, elementA, WFC_ELEMENT_SOURCE, sourceA); sl@0: wfcSetElementAttribiv(iDevice, elementA, WFC_ELEMENT_SOURCE_RECTANGLE, 4, iFullScreenRect); sl@0: wfcSetElementAttribiv(iDevice, elementA, WFC_ELEMENT_DESTINATION_RECTANGLE, 4, iFullScreenRect); sl@0: sl@0: TSurfaceId surfaceB = iUtility->CreateSurfaceL(TSize(iFastpathableWidth/2,iFastpathableHeight/2), sl@0: iFastpathablePixelFormat, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: ASSERT_FALSE(surfaceB.IsNull()); sl@0: WFCSource sourceB = wfcCreateSourceFromStream(iDevice, iContext, reinterpret_cast(&surfaceB), NULL); sl@0: err = iUtility->SubmitUpdate(surfaceB, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WFCElement elementB = wfcCreateElement(iDevice, iContext, NULL); sl@0: wfcSetElementAttribi(iDevice, elementB, WFC_ELEMENT_SOURCE, sourceB); sl@0: wfcSetElementAttribiv(iDevice, elementB, WFC_ELEMENT_SOURCE_RECTANGLE, 4, iHalfSizeRect); sl@0: wfcSetElementAttribiv(iDevice, elementB, WFC_ELEMENT_DESTINATION_RECTANGLE, 4, iCenterRect); sl@0: sl@0: //**********STARTING ACTUAL TEST!********** sl@0: //Add A to scene sl@0: wfcInsertElement(iDevice, elementA, WFC_INVALID_HANDLE); sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: LOG(("OpenWFTest: Expecting FASTPATH after next commit")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: LOG(("OpenWFTest: Fastpath - now ON")); sl@0: //Set A buffer0 red sl@0: iUtility->FillSurfaceL(surfaceA, 0, KRed); sl@0: err = iUtility->SubmitUpdate(surfaceA, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: if(!aAutonomous) sl@0: { sl@0: wfcCompose(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: } sl@0: WaitL(iCompositionPause); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iFullScreenTRect,KRed,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: //Add surfaceB to scene infront of surfaceA sl@0: wfcInsertElement(iDevice, elementB, elementA); sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: LOG(("OpenWFTest: Expecting COMPOSITION after next commit")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: LOG(("OpenWFTest: Fastpath - now OFF")); sl@0: //Set B buffer0 green sl@0: iUtility->FillSurfaceL(surfaceB, 0, KBlue); sl@0: err = iUtility->SubmitUpdate(surfaceB, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: if(!aAutonomous) sl@0: { sl@0: wfcCompose(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: } sl@0: WaitL(iCompositionPause); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: //Check blue center of screen sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iCenterTRect,KBlue,iTolerance)); sl@0: //Check red around the borders sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(TRect(0,0,iCenterTRect.iTl.iX,iCenterTRect.iTl.iY),KRed,iTolerance)); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(TRect(iCenterTRect.iBr.iX+1,iCenterTRect.iBr.iY+1, sl@0: iFastpathableWidth,iFastpathableHeight),KRed,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: //Set A buffer1 yellow sl@0: iUtility->FillSurfaceL(surfaceA, 1, KYellow); sl@0: //Set B buffer1 KGreen sl@0: iUtility->FillSurfaceL(surfaceB, 1, KGreen); sl@0: sl@0: //Do content updated surfaceA dispXtimes 10 sl@0: CActiveNotification* surfAbuff1dispX = CActiveNotification::NewL(iUtility->Session(),ETrue); sl@0: CleanupStack::PushL(surfAbuff1dispX); sl@0: iUtility->NotifyWhenDisplayedXTimes(10,surfAbuff1dispX->iStatus); sl@0: err = iUtility->SubmitUpdate(surfaceA, 1, NULL); sl@0: //Do content updated surfaceB dispXtimes 5 sl@0: CActiveNotification* surfBbuff1dispX = CActiveNotification::NewL(iUtility->Session(),ETrue); sl@0: CleanupStack::PushL(surfBbuff1dispX); sl@0: iUtility->NotifyWhenDisplayedXTimes(5,surfBbuff1dispX->iStatus); sl@0: err = iUtility->SubmitUpdate(surfaceB, 1, NULL); sl@0: sl@0: if(!aAutonomous) sl@0: { sl@0: for(TInt i=0;i<4;i++) sl@0: { sl@0: wfcCompose(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: WaitL(iCompositionPause); sl@0: //Check A has not completed yet sl@0: ASSERT_EQUALS(surfAbuff1dispX->iStatus.Int(),KRequestPending); sl@0: //Check B has not completed yet sl@0: ASSERT_EQUALS(surfBbuff1dispX->iStatus.Int(),KRequestPending); sl@0: } sl@0: wfcCompose(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: } sl@0: //surfBbuff1dispX should complete, and its RunL will stop the scheduler sl@0: CActiveScheduler::Start(); sl@0: //Check B has completed sl@0: ASSERT_EQUALS(surfBbuff1dispX->iStatus.Int(),KErrNone); sl@0: //Check A has not completed yet sl@0: ASSERT_EQUALS(surfAbuff1dispX->iStatus.Int(),KRequestPending); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: //Check green center of screen sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iCenterTRect,KGreen,iTolerance)); sl@0: //Check yellow around the borders sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(TRect(0,0,iCenterTRect.iTl.iX,iCenterTRect.iTl.iY),KYellow,iTolerance)); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(TRect(iCenterTRect.iBr.iX+1,iCenterTRect.iBr.iY+1, sl@0: iFastpathableWidth,iFastpathableHeight),KYellow,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: //check it hasn't completed unexpectedly early while using on screen stream sl@0: ASSERT_EQUALS(surfAbuff1dispX->iStatus.Int(),KRequestPending); sl@0: sl@0: //Remove surfaceB from the scene sl@0: wfcRemoveElement(iDevice, elementB); sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: LOG(("OpenWFTest: Expecting FASTPATH after next commit")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: if(!aAutonomous) sl@0: { sl@0: for(TInt i=0;i<4;i++) sl@0: { sl@0: wfcCompose(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: LOG(("OpenWFTest: Fastpath - now ON")); sl@0: WaitL(iCompositionPause); sl@0: //Check A has not completed yet sl@0: ASSERT_EQUALS(surfAbuff1dispX->iStatus.Int(),KRequestPending); sl@0: } sl@0: wfcCompose(iDevice, iContext, WFC_TRUE); sl@0: } sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: sl@0: //surfAbuff1dispX should complete, and its RunL will stop the scheduler sl@0: CActiveScheduler::Start(); sl@0: ASSERT_EQUALS(surfAbuff1dispX->iStatus.Int(),KErrNone); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iFullScreenTRect,KYellow,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: ASSERT_EQUALS(wfcGetError(iDevice),WFC_ERROR_NONE); sl@0: //Shutdown sl@0: wfcDestroySource(iDevice, sourceA); sl@0: wfcDestroySource(iDevice, sourceB); sl@0: sl@0: CleanupStack::PopAndDestroy(2,surfAbuff1dispX); sl@0: } sl@0: sl@0: /* sl@0: @SYMTestCaseID GRAPHICS-OPENWFC-FASTPATH-0012 sl@0: @SYMTestCaseDesc Positive testing - Fastpath with notification checking DisplayXTime sl@0: @SYMREQ sl@0: @SYMPREQ PREQ417-54885 sl@0: @SYMTestType Integration Test sl@0: @SYMTestPriority High sl@0: @SYMTestPurpose Check fastpath does not cause any problem to notifications sl@0: @SYMTestActions sl@0: All compositions are autonomous: sl@0: Compose an empty scene sl@0: A) Create a scene containing a screen sized opaque element A sl@0: Commit the scene sl@0: Make a content update for available (iAvailable) and display time (aDisplayed) sl@0: Wait for the request status objects to complete sl@0: sl@0: B) Add a small element B in front of A sl@0: Compose the scene sl@0: Content update for both A and B, set display 10 times to A, set display 5 times to B sl@0: Wait for the 5 times sl@0: sl@0: C) Remove element B sl@0: Commit the scene sl@0: Compose the scene sl@0: Wait for the 10 times sl@0: @SYMTestExpectedResults sl@0: Composition should fastpath in sections A and C sl@0: Elements A's 10 times should not complete before element B's 5 times sl@0: */ sl@0: void COpenwfTest::GRAPHICS_OPENWFC_FASTPATH_0012L() sl@0: { sl@0: iTestName = _L("FASTPATH_0012"); sl@0: INFO_PRINTF2(_L("GRAPHICS_OPENWFC_%SL()"),&iTestName); sl@0: LOGL((_L("OpenWFTest: GRAPHICS_OPENWFC_%SL()"),&iTestName)); sl@0: FastpathDispXNotificationsTestL(ETrue); sl@0: } sl@0: sl@0: /* sl@0: @SYMTestCaseID GRAPHICS-OPENWFC-FASTPATH-0013 sl@0: @SYMTestCaseDesc Positive testing - Fastpath with notification checking DisplayXTime sl@0: @SYMREQ sl@0: @SYMPREQ PREQ417-54885 sl@0: @SYMTestType Integration Test sl@0: @SYMTestPriority High sl@0: @SYMTestPurpose Check fastpath does not cause any problem to notifications sl@0: @SYMTestActions sl@0: Repeats GRAPHICS-OPENWFC-FASTPATH-0013 in non autonomous mode. sl@0: This allows gives the added benefit of accurate counting of wfcCompose calls, checking the displayXtimes sl@0: notifications only complete after the correct number of composes. sl@0: @SYMTestExpectedResults sl@0: Composition should fastpath in sections A and C sl@0: Both should complete after their expect amount of compose calls with no errors sl@0: */ sl@0: void COpenwfTest::GRAPHICS_OPENWFC_FASTPATH_0013L() sl@0: { sl@0: iTestName = _L("FASTPATH_0013"); sl@0: INFO_PRINTF2(_L("GRAPHICS_OPENWFC_%SL()"),&iTestName); sl@0: LOGL((_L("OpenWFTest: GRAPHICS_OPENWFC_%SL()"),&iTestName)); sl@0: FastpathDispXNotificationsTestL(EFalse); sl@0: } sl@0: sl@0: /* sl@0: * NEGATIVE TESTING sl@0: * */ sl@0: /* sl@0: @SYMTestCaseID GRAPHICS-OPENWFC-FASTPATH-0020 sl@0: @SYMTestCaseDesc Negative testing - Fastpath one-element scene sl@0: @SYMREQ sl@0: @SYMPREQ PREQ417-54885 sl@0: @SYMTestType Unit Test sl@0: @SYMTestPriority High sl@0: @SYMTestPurpose Check a scene including a full screen element with source alpha cannot be fastpathed sl@0: @SYMTestActions sl@0: All compositions are autonomous: sl@0: Create a scene containing a screen sized element sl@0: Enable WFC_TRANSPARENCY_SOURCE sl@0: Set the value of WFC_ELEMENT_SOURCE between 0 and 255 (non-inclusive). sl@0: Compose the scene sl@0: @SYMTestExpectedResults sl@0: The scene cannot be fastpathed. sl@0: */ sl@0: void COpenwfTest::GRAPHICS_OPENWFC_FASTPATH_0020L() sl@0: { sl@0: iTestName = _L("FASTPATH_0020"); sl@0: INFO_PRINTF2(_L("GRAPHICS_OPENWFC_%SL()"),&iTestName); sl@0: LOGL((_L("OpenWFTest: GRAPHICS_OPENWFC_%SL()"),&iTestName)); sl@0: SetupEmptySceneL(); sl@0: sl@0: TSurfaceId surface=iUtility->CreateSurfaceL(TSize(iFastpathableWidth,iFastpathableHeight), sl@0: EUidPixelFormatARGB_8888, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: ASSERT_FALSE(surface.IsNull()); sl@0: sl@0: WFCSource fpSource = wfcCreateSourceFromStream(iDevice, iContext,reinterpret_cast(&surface), NULL); sl@0: TInt err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WFCElement fpElement = wfcCreateElement(iDevice, iContext, NULL); sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_SOURCE, fpSource); sl@0: sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_SOURCE_RECTANGLE, 4, iFullScreenRect); sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_DESTINATION_RECTANGLE, 4, iFullScreenRect); sl@0: //set per pixel alpha sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_TRANSPARENCY_TYPES, WFC_TRANSPARENCY_SOURCE); sl@0: sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: wfcInsertElement(iDevice, fpElement, WFC_INVALID_HANDLE); sl@0: LOG(("OpenWFTest: Expecting COMPOSITION after next commit - using source alpha")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: sl@0: for (TInt i=0;i<=256;i+=64) sl@0: { sl@0: i=(i==256)?255:i; sl@0: iUtility->FillSurfaceL(surface, 0, TRgb(0,255,0,i)); sl@0: err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WaitL(iCompositionPause); sl@0: } sl@0: ASSERT_EQUALS(wfcGetError(iDevice),WFC_ERROR_NONE); sl@0: wfcDestroySource(iDevice, fpSource); sl@0: } sl@0: sl@0: /* sl@0: @SYMTestCaseID GRAPHICS-OPENWFC-FASTPATH-0021 sl@0: @SYMTestCaseDesc Negative testing - Fastpath one-element scene sl@0: @SYMREQ sl@0: @SYMPREQ PREQ417-54885 sl@0: @SYMTestType Unit Test sl@0: @SYMTestPriority High sl@0: @SYMTestPurpose Check a scene including a full screen element with global alpha cannot be fastpathed sl@0: @SYMTestActions sl@0: All compositions are autonomous: sl@0: Create a scene containing a screen sized element sl@0: Enable WFC_TRANSPARENCY_ELEMENT_GLOBAL_ALPHA sl@0: Set the value of WFC_ELEMENT_GLOBAL_ALPHA between 0 and 255 (non-inclusive) sl@0: Compose the scene sl@0: @SYMTestExpectedResults sl@0: The scene cannot be fastpathed. sl@0: */ sl@0: void COpenwfTest::GRAPHICS_OPENWFC_FASTPATH_0021L() sl@0: { sl@0: iTestName = _L("FASTPATH_0021"); sl@0: INFO_PRINTF2(_L("GRAPHICS_OPENWFC_%SL()"),&iTestName); sl@0: LOGL((_L("OpenWFTest: GRAPHICS_OPENWFC_%SL()"),&iTestName)); sl@0: SetupEmptySceneL(); sl@0: sl@0: TSurfaceId surface=iUtility->CreateSurfaceL(TSize(iFastpathableWidth,iFastpathableHeight), sl@0: EUidPixelFormatXRGB_8888, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: ASSERT_FALSE(surface.IsNull()); sl@0: sl@0: WFCSource fpSource = wfcCreateSourceFromStream(iDevice, iContext,reinterpret_cast(&surface), NULL); sl@0: TInt err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WFCElement fpElement = wfcCreateElement(iDevice, iContext, NULL); sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_SOURCE, fpSource); sl@0: sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_SOURCE_RECTANGLE, 4, iFullScreenRect); sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_DESTINATION_RECTANGLE, 4, iFullScreenRect); sl@0: //set element global alpha sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_TRANSPARENCY_TYPES, WFC_TRANSPARENCY_ELEMENT_GLOBAL_ALPHA); sl@0: wfcSetElementAttribf(iDevice, fpElement, WFC_ELEMENT_GLOBAL_ALPHA, 0.0f); sl@0: sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: wfcInsertElement(iDevice, fpElement, WFC_INVALID_HANDLE); sl@0: iUtility->FillSurfaceL(surface, 0, KGreen); sl@0: err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: LOG(("OpenWFTest: Expecting COMPOSITION after next commit - using element global alpha not fully opaque")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: sl@0: for (TInt i=0;i<=256;i+=64) sl@0: { sl@0: i=(i==256)?255:i; sl@0: wfcSetElementAttribf(iDevice, fpElement, WFC_ELEMENT_GLOBAL_ALPHA, (TReal32)i/255); sl@0: if(i == 255) sl@0: { sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: } sl@0: if(i == 255) sl@0: { sl@0: LOG(("OpenWFTest: Expecting FASTPATH after next commit - using element global alpha fully opaque")); sl@0: } sl@0: else sl@0: { sl@0: LOG(("OpenWFTest: Expecting COMPOSITION after next commit - using element global alpha not fully opaque")); sl@0: } sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: WaitL(iCompositionPause); sl@0: } sl@0: ASSERT_EQUALS(wfcGetError(iDevice),WFC_ERROR_NONE); sl@0: wfcDestroySource(iDevice, fpSource); sl@0: } sl@0: sl@0: /* sl@0: @SYMTestCaseID GRAPHICS-OPENWFC-FASTPATH-0022 sl@0: @SYMTestCaseDesc Negative testing - Fastpath one-element scene sl@0: @SYMREQ sl@0: @SYMPREQ PREQ417-54885 sl@0: @SYMTestType Unit Test sl@0: @SYMTestPriority High sl@0: @SYMTestPurpose Check a scene with RGB 565 format cannot be fastpathed sl@0: @SYMTestActions sl@0: Create a scene containing a screen sized element with an unsupported source format, such as 565 sl@0: Compose the scene sl@0: @SYMTestExpectedResults sl@0: The scene cannot be fastpathed. sl@0: */ sl@0: void COpenwfTest::GRAPHICS_OPENWFC_FASTPATH_0022L() sl@0: { sl@0: iTestName = _L("FASTPATH_0022"); sl@0: INFO_PRINTF2(_L("GRAPHICS_OPENWFC_%SL()"),&iTestName); sl@0: LOGL((_L("OpenWFTest: GRAPHICS_OPENWFC_%SL()"),&iTestName)); sl@0: SetupEmptySceneL(); sl@0: sl@0: //NON fastpathable pixel format sl@0: TSurfaceId surface=iUtility->CreateSurfaceL(TSize(iFastpathableWidth,iFastpathableHeight), sl@0: iNonFastpathablePixelFormat, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: ASSERT_FALSE(surface.IsNull()); sl@0: sl@0: WFCSource fpSource = wfcCreateSourceFromStream(iDevice, iContext,reinterpret_cast(&surface), NULL); sl@0: TInt err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WFCElement fpElement = wfcCreateElement(iDevice, iContext, NULL); sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_SOURCE, fpSource); sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_SOURCE_RECTANGLE, 4, iFullScreenRect); sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_DESTINATION_RECTANGLE, 4, iFullScreenRect); sl@0: wfcInsertElement(iDevice, fpElement, WFC_INVALID_HANDLE); sl@0: sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: LOG(("OpenWFTest: Expecting COMPOSITION after next commit - using non fastpathable pixel format")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: sl@0: iUtility->FillSurfaceL(surface, 0, KGreen); sl@0: err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WaitL(iCompositionPause); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iFullScreenTRect,KGreen,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: ASSERT_EQUALS(wfcGetError(iDevice),WFC_ERROR_NONE); sl@0: wfcDestroySource(iDevice, fpSource); sl@0: } sl@0: sl@0: /* sl@0: @SYMTestCaseID GRAPHICS-OPENWFC-FASTPATH-0023 sl@0: @SYMTestCaseDesc Negative testing - Fastpath one-element scene sl@0: @SYMREQ sl@0: @SYMPREQ PREQ417-54885 sl@0: @SYMTestType Unit Test sl@0: @SYMTestPriority High sl@0: @SYMTestPurpose Check a scene with mask settings cannot be fastpathed sl@0: @SYMTestActions sl@0: All compositions are autonomous: sl@0: Create a scene containing a screen sized element A sl@0: Enable WFC_TRANSPARENCY_MASK sl@0: Set a value to WFC_ELEMENT_MASK sl@0: Create a mask element, set the size to be the same as element A's desitnation rectangle sl@0: Compose the scene sl@0: @SYMTestExpectedResults sl@0: The scene cannot be fastpathed. sl@0: */ sl@0: void COpenwfTest::GRAPHICS_OPENWFC_FASTPATH_0023L() sl@0: { sl@0: iTestName = _L("FASTPATH_0023"); sl@0: INFO_PRINTF2(_L("GRAPHICS_OPENWFC_%SL()"),&iTestName); sl@0: LOGL((_L("OpenWFTest: GRAPHICS_OPENWFC_%SL()"),&iTestName)); sl@0: SetupEmptySceneL(); sl@0: sl@0: TSurfaceId surface=iUtility->CreateSurfaceL(TSize(iFastpathableWidth,iFastpathableHeight), sl@0: iFastpathablePixelFormat, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: ASSERT_FALSE(surface.IsNull()); sl@0: sl@0: WFCSource fpSource = wfcCreateSourceFromStream(iDevice, iContext,reinterpret_cast(&surface), NULL); sl@0: TInt err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WFCElement fpElement = wfcCreateElement(iDevice, iContext, NULL); sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_SOURCE, fpSource); sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_SOURCE_RECTANGLE, 4, iFullScreenRect); sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_DESTINATION_RECTANGLE, 4, iFullScreenRect); sl@0: sl@0: TSurfaceId surfaceMask = iUtility->CreateSurfaceL(TSize(iFastpathableWidth,iFastpathableHeight), sl@0: iFastpathablePixelFormat, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: ASSERT_FALSE(surfaceMask.IsNull()); sl@0: WFCMask mask = wfcCreateMaskFromStream(iDevice, iContext, reinterpret_cast(&surfaceMask), NULL); sl@0: err = iUtility->SubmitUpdate(surfaceMask, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: sl@0: //set the mask to fpElement sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_TRANSPARENCY_TYPES, WFC_TRANSPARENCY_MASK); sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_MASK, mask); sl@0: ASSERT_EQUALS(wfcGetError(iDevice),WFC_ERROR_NONE); sl@0: sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: wfcInsertElement(iDevice, fpElement, WFC_INVALID_HANDLE); sl@0: LOG(("OpenWFTest: Expecting COMPOSITION after next commit - using a mask")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: LOG(("OpenWFTest:Fastpath - still off - using a mask")); sl@0: sl@0: iUtility->FillSurfaceL(surface, 0, KGreen); sl@0: err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: iUtility->FillSurfaceL(surfaceMask, 0, KBlack); sl@0: err = iUtility->SubmitUpdate(surfaceMask, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WaitL(iCompositionPause); sl@0: sl@0: ASSERT_EQUALS(wfcGetError(iDevice),WFC_ERROR_NONE); sl@0: wfcDestroySource(iDevice, fpSource); sl@0: } sl@0: sl@0: /* sl@0: @SYMTestCaseID GRAPHICS-OPENWFC-FASTPATH-0024 sl@0: @SYMTestCaseDesc Negative testing - Fastpath one-element scene sl@0: @SYMREQ sl@0: @SYMPREQ PREQ417-54885 sl@0: @SYMTestType Unit Test sl@0: @SYMTestPriority High sl@0: @SYMTestPurpose Check a scene with alpha and mask settings cannot be fastpathed sl@0: @SYMTestActions sl@0: All compositions are autonomous: sl@0: Create a scene containing a screen sized element A sl@0: Enable WFC_TRANSPARENCY_ELEMENT_GLOBAL_ALPHA sl@0: Set the value of WFC_ELEMENT_GLOBAL_ALPHA to be 255 sl@0: Enable WFC_TRANSPARENCY_MASK sl@0: Set a value to WFC_ELEMENT_MASK sl@0: Create a mask element, set it the same size of element A's destination rectangle sl@0: Compose the scene sl@0: @SYMTestExpectedResults sl@0: The scene cannot be fastpathed. sl@0: */ sl@0: void COpenwfTest::GRAPHICS_OPENWFC_FASTPATH_0024L() sl@0: { sl@0: iTestName = _L("FASTPATH_0024"); sl@0: INFO_PRINTF2(_L("GRAPHICS_OPENWFC_%SL()"),&iTestName); sl@0: LOGL((_L("OpenWFTest: GRAPHICS_OPENWFC_%SL()"),&iTestName)); sl@0: SetupEmptySceneL(); sl@0: sl@0: TSurfaceId surface=iUtility->CreateSurfaceL(TSize(iFastpathableWidth,iFastpathableHeight), sl@0: iFastpathablePixelFormat, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: ASSERT_FALSE(surface.IsNull()); sl@0: sl@0: WFCSource fpSource = wfcCreateSourceFromStream(iDevice, iContext,reinterpret_cast(&surface), NULL); sl@0: TInt err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WFCElement fpElement = wfcCreateElement(iDevice, iContext, NULL); sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_SOURCE, fpSource); sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_SOURCE_RECTANGLE, 4, iFullScreenRect); sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_DESTINATION_RECTANGLE, 4, iFullScreenRect); sl@0: sl@0: TSurfaceId surfaceMask = iUtility->CreateSurfaceL(TSize(iFastpathableWidth,iFastpathableHeight), sl@0: iFastpathablePixelFormat, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: ASSERT_FALSE(surfaceMask.IsNull()); sl@0: WFCMask mask = wfcCreateMaskFromStream(iDevice, iContext, reinterpret_cast(&surfaceMask), NULL); sl@0: err = iUtility->SubmitUpdate(surfaceMask, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: sl@0: //set the mask and global alpha for use with fpElement sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_MASK, mask); sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_TRANSPARENCY_TYPES, sl@0: WFC_TRANSPARENCY_ELEMENT_GLOBAL_ALPHA|WFC_TRANSPARENCY_MASK); sl@0: //set global alpha to fully opaque sl@0: wfcSetElementAttribf(iDevice, fpElement, WFC_ELEMENT_GLOBAL_ALPHA, 1.0f); sl@0: sl@0: wfcInsertElement(iDevice, fpElement, WFC_INVALID_HANDLE); sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: LOG(("OpenWFTest: Expecting COMPOSITION after next commit - using a mask and global alpha")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: LOG(("OpenWFTest: Fastpath - still off - using a mask and global alpha")); sl@0: sl@0: iUtility->FillSurfaceL(surface, 0, KGreen); sl@0: err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: iUtility->FillSurfaceL(surfaceMask, 0, KBlack); sl@0: err = iUtility->SubmitUpdate(surfaceMask, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WaitL(iCompositionPause); sl@0: sl@0: ASSERT_EQUALS(wfcGetError(iDevice),WFC_ERROR_NONE); sl@0: wfcDestroySource(iDevice, fpSource); sl@0: } sl@0: sl@0: /* sl@0: @SYMTestCaseID GRAPHICS-OPENWFC-FASTPATH-0025 sl@0: @SYMTestCaseDesc Negative testing - Fastpath a scene with scaling element sl@0: @SYMREQ sl@0: @SYMPREQ PREQ417-54885 sl@0: @SYMTestType Unit Test sl@0: @SYMTestPriority High sl@0: @SYMTestPurpose Check a scene with scaling cannot be fastpathed sl@0: @SYMTestActions sl@0: All compositions are autonomous: sl@0: Create an element containing source size smaller than full screen destination size sl@0: Add to scene and compose sl@0: @SYMTestExpectedResults sl@0: The scene cannot be fastpathed. sl@0: */ sl@0: void COpenwfTest::GRAPHICS_OPENWFC_FASTPATH_0025L() sl@0: { sl@0: iTestName = _L("FASTPATH_0025"); sl@0: INFO_PRINTF2(_L("GRAPHICS_OPENWFC_%SL()"),&iTestName); sl@0: LOGL((_L("OpenWFTest: GRAPHICS_OPENWFC_%SL()"),&iTestName)); sl@0: SetupEmptySceneL(); sl@0: sl@0: //create half screen size surface sl@0: TSurfaceId surface=iUtility->CreateSurfaceL(TSize(iFastpathableWidth/2,iFastpathableHeight/2), sl@0: iFastpathablePixelFormat, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: ASSERT_FALSE(surface.IsNull()); sl@0: sl@0: WFCSource fpSource = wfcCreateSourceFromStream(iDevice, iContext,reinterpret_cast(&surface), NULL); sl@0: TInt err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WFCElement fpElement = wfcCreateElement(iDevice, iContext, NULL); sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_SOURCE, fpSource); sl@0: sl@0: //note the source is only half the size of the screen sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_SOURCE_RECTANGLE, 4, iHalfSizeRect); sl@0: //set destination to fullscreen, causing it to stretch sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_DESTINATION_RECTANGLE, 4, iFullScreenRect); sl@0: wfcInsertElement(iDevice, fpElement, WFC_INVALID_HANDLE); sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: LOG(("OpenWFTest: Expecting COMPOSITION after next commit - using a mask and global alpha")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: LOG(("OpenWFTest: Fastpath - still off... - source not equal to destination")); sl@0: sl@0: iUtility->FillSurfaceL(surface, 0, KGreen); sl@0: err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WaitL(iCompositionPause); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iFullScreenTRect,KGreen,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: ASSERT_EQUALS(wfcGetError(iDevice),WFC_ERROR_NONE); sl@0: wfcDestroySource(iDevice, fpSource); sl@0: } sl@0: sl@0: /* sl@0: @SYMTestCaseID GRAPHICS-OPENWFC-FASTPATH-0026 sl@0: @SYMTestCaseDesc Negative testing - Fastpath a scene with rotation sl@0: @SYMREQ sl@0: @SYMPREQ PREQ417-54885 sl@0: @SYMTestType Unit Test sl@0: @SYMTestPriority High sl@0: @SYMTestPurpose Check a scene with rotation cannot be fastpathed sl@0: @SYMTestActions sl@0: All compositions are autonomous: sl@0: Create a scene containing a screen size element sl@0: Compose the scene sl@0: Rotate the element with 90, 180 and 270 degrees sl@0: Compose the scene sl@0: @SYMTestExpectedResults sl@0: The scene can be fastpathed only for the first scene commited composition. sl@0: */ sl@0: void COpenwfTest::GRAPHICS_OPENWFC_FASTPATH_0026L() sl@0: { sl@0: iTestName = _L("FASTPATH_0026"); sl@0: INFO_PRINTF2(_L("GRAPHICS_OPENWFC_%SL()"),&iTestName); sl@0: LOGL((_L("OpenWFTest: GRAPHICS_OPENWFC_%SL()"),&iTestName)); sl@0: SetupEmptySceneL(); sl@0: sl@0: TSurfaceId surface=iUtility->CreateSurfaceL(TSize(iFastpathableWidth,iFastpathableHeight), sl@0: iFastpathablePixelFormat, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: ASSERT_FALSE(surface.IsNull()); sl@0: sl@0: WFCSource fpSource = wfcCreateSourceFromStream(iDevice, iContext,reinterpret_cast(&surface), NULL); sl@0: TInt err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WFCElement fpElement = wfcCreateElement(iDevice, iContext, NULL); sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_SOURCE, fpSource); sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_SOURCE_RECTANGLE, 4, iFullScreenRect); sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_DESTINATION_RECTANGLE, 4, iFullScreenRect); sl@0: sl@0: wfcInsertElement(iDevice, fpElement, WFC_INVALID_HANDLE); sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: LOG(("OpenWFTest: Expecting FASTPATH after next commit")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: LOG(("OpenWFTest: Fastpath - now ON")); sl@0: sl@0: iUtility->FillSurfaceL(surface, 0, KGreen); sl@0: err = iUtility->SubmitUpdate(surface, 0, NULL); sl@0: ASSERT_EQUALS(err,KErrNone); sl@0: WaitL(iCompositionPause); sl@0: sl@0: //Set 90 degree rotation sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_SOURCE_ROTATION, WFC_ROTATION_90); sl@0: sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: iUtility->FillSurfaceL(surface, 0, KBlue); sl@0: LOG(("OpenWFTest: Expecting COMPOSITION after next commit")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: LOG(("OpenWFTest: Fastpath - now OFF")); sl@0: WaitL(iCompositionPause); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iFullScreenTRect,KBlue,iTolerance)); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: sl@0: //Set 180 degree rotation sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_SOURCE_ROTATION, WFC_ROTATION_180); sl@0: sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: iUtility->FillSurfaceL(surface, 0, KMagenta); sl@0: LOG(("OpenWFTest: Expecting FASTPATH after next commit")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: LOG(("OpenWFTest: Fastpath - now OFF")); sl@0: WaitL(iCompositionPause); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iFullScreenTRect,KMagenta,iTolerance)); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: //Set 270 degree rotation sl@0: wfcSetElementAttribi(iDevice, fpElement, WFC_ELEMENT_SOURCE_ROTATION, WFC_ROTATION_270); sl@0: sl@0: #ifdef BREAKPOINT_FASTPATH sl@0: __BREAKPOINT(); sl@0: #endif sl@0: iUtility->FillSurfaceL(surface, 0, KBrown); sl@0: LOG(("OpenWFTest: Expecting COMPOSITION after next commit")); sl@0: wfcCommit(iDevice, iContext, WFC_TRUE); sl@0: wfcFence(iDevice, iContext, iEGLDisplay, iSync); sl@0: ASSERT_EQUALS(eglClientWaitSyncKHR(iEGLDisplay,iSync,0,(EGLTimeKHR)EGL_FOREVER_KHR),EGL_CONDITION_SATISFIED_KHR); sl@0: LOG(("OpenWFTest: Fastpath - now OFF")); sl@0: WaitL(iCompositionPause); sl@0: sl@0: ASSERT_TRUE(AcquireOnScreenStream()); sl@0: ASSERT_TRUE(CheckOnScreenStreamRect(iFullScreenTRect,KBrown,iTolerance)); sl@0: ASSERT_TRUE(CheckOnScreenReferenceImage()); sl@0: ReleaseOnScreenStream(); sl@0: sl@0: ASSERT_EQUALS(wfcGetError(iDevice),WFC_ERROR_NONE); sl@0: wfcDestroySource(iDevice, fpSource); sl@0: } sl@0: sl@0: /* sl@0: @SYMTestCaseID GRAPHICS-OPENWFC-FASTPATH-0027 sl@0: @SYMTestCaseDesc Negative testing - Pass in bad parameter values sl@0: @SYMREQ sl@0: @SYMPREQ PREQ417-54885 sl@0: @SYMTestType Unit Test sl@0: @SYMTestPriority High sl@0: @SYMTestPurpose Check invalid parameter values passed in OWF APIs sl@0: @SYMTestActions sl@0: Use invalid values to call OWF APIs sl@0: @SYMTestExpectedResults sl@0: Test should pass without panic. sl@0: */ sl@0: void COpenwfTest::GRAPHICS_OPENWFC_FASTPATH_0027L() sl@0: { sl@0: iTestName = _L("FASTPATH_0027"); sl@0: INFO_PRINTF2(_L("GRAPHICS_OPENWFC_%SL()"),&iTestName); sl@0: LOGL((_L("OpenWFTest: GRAPHICS_OPENWFC_%SL()"),&iTestName)); sl@0: sl@0: WFCint deviceId; sl@0: WFCint filterList[] = { WFC_DEVICE_FILTER_SCREEN_NUMBER, WFC_DEFAULT_SCREEN_NUMBER, WFC_NONE}; sl@0: ASSERT_TRUE(wfcEnumerateDevices(&deviceId, 1, filterList) == 1); sl@0: sl@0: WFCint attribList = 1; sl@0: WFCDevice device = wfcCreateDevice(deviceId, &attribList); sl@0: WFCContext onScreenContext = wfcCreateOnScreenContext(NULL, WFC_DEFAULT_SCREEN_NUMBER, NULL); sl@0: WFCContext offScreenContext = wfcCreateOffScreenContext(NULL, WFC_DEFAULT_SCREEN_NUMBER, NULL); sl@0: sl@0: WFCfloat value = 1.0; sl@0: wfcGetContextAttribi(NULL, iContext, WFC_CONTEXT_TARGET_HEIGHT); sl@0: wfcSetContextAttribi(NULL, iContext, WFC_CONTEXT_ROTATION, WFC_ROTATION_0); sl@0: wfcGetContextAttribfv(NULL, iContext, WFC_CONTEXT_ROTATION, NULL, &value); sl@0: wfcSetContextAttribfv(NULL, iContext, WFC_CONTEXT_ROTATION, NULL, &value); sl@0: sl@0: TSurfaceId surface=iUtility->CreateSurfaceL(TSize(iFastpathableWidth,iFastpathableHeight), sl@0: iFastpathablePixelFormat, sl@0: iStride, iContiguous, iMaxBuffers); sl@0: ASSERT_FALSE(surface.IsNull()); sl@0: sl@0: WFCSource fpSource = wfcCreateSourceFromStream(NULL, iContext,reinterpret_cast(&surface), NULL); sl@0: wfcCreateMaskFromStream(NULL, iContext, reinterpret_cast(&surface), NULL); sl@0: WFCElement fpElement = wfcCreateElement(NULL, iContext, NULL); sl@0: wfcSetElementAttribi(NULL, fpElement, WFC_ELEMENT_SOURCE, fpSource); sl@0: wfcSetElementAttribf(NULL, fpElement, WFC_ELEMENT_SOURCE, NULL); sl@0: wfcSetElementAttribiv(NULL, fpElement, WFC_ELEMENT_SOURCE, NULL, NULL); sl@0: wfcSetElementAttribfv(NULL, fpElement, WFC_ELEMENT_SOURCE, NULL, NULL); sl@0: wfcSetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_SOURCE, NULL, NULL); sl@0: wfcSetElementAttribfv(iDevice, fpElement, WFC_ELEMENT_SOURCE, NULL, NULL); sl@0: sl@0: wfcGetElementAttribi(NULL, fpElement, WFC_ELEMENT_SOURCE); sl@0: wfcGetElementAttribf(NULL, fpElement, WFC_ELEMENT_SOURCE); sl@0: wfcGetElementAttribiv(NULL, fpElement, WFC_ELEMENT_SOURCE, NULL, NULL); sl@0: wfcGetElementAttribiv(iDevice, fpElement, WFC_ELEMENT_SOURCE, NULL, NULL); sl@0: wfcGetElementAttribfv(NULL, fpElement, WFC_ELEMENT_SOURCE, NULL, NULL); sl@0: wfcGetElementAttribfv(iDevice, fpElement, WFC_ELEMENT_SOURCE, NULL, NULL); sl@0: sl@0: wfcInsertElement(NULL, fpElement, NULL); sl@0: wfcGetElementAbove(NULL, fpElement); sl@0: wfcGetElementBelow(NULL, fpElement); sl@0: sl@0: WFCDeviceAttrib devAttrib = WFC_DEVICE_ID; sl@0: wfcGetDeviceAttribi(NULL, devAttrib); sl@0: sl@0: wfcActivate(NULL, iContext); sl@0: wfcActivate(iDevice, NULL); sl@0: wfcDeactivate(NULL, iContext); sl@0: wfcDeactivate(iDevice, NULL); sl@0: wfcCompose(NULL, iContext, WFC_TRUE); sl@0: wfcCompose(iDevice, NULL, WFC_TRUE); sl@0: wfcCommit(NULL, iContext, WFC_TRUE); sl@0: wfcCommit(iDevice, NULL, WFC_TRUE); sl@0: wfcFence(NULL, iContext, iEGLDisplay, iSync); sl@0: wfcFence(iDevice, NULL, iEGLDisplay, iSync); sl@0: sl@0: WFCMask mask = WFC_INVALID_HANDLE; sl@0: wfcDestroyMask(NULL, mask); sl@0: wfcRemoveElement(NULL, fpElement); sl@0: wfcDestroyElement(NULL, fpElement); sl@0: wfcDestroySource(NULL, fpSource); sl@0: wfcDestroyContext(NULL, onScreenContext); sl@0: } sl@0: