os/mm/mdfdevvideoextensions/nga_mdf_postprocessor/inc/NGAPostProcSessionManager.h
Update contrib.
2 * Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
19 #ifndef __NGAPOSTPROCSESSIONMANAGER_H__
20 #define __NGAPOSTPROCSESSIONMANAGER_H__
22 #include <graphics/surface.h> //TSurfaceId
23 #include <graphics/surfacemanager.h> //RSurfaceManager
27 class RSurfaceUpdateSession;
28 class MNGAPostProcSessionManagerObserver;
29 class CNGAPostProcNotifier;
31 class CNGAPostProcSessionManager
35 // === Constructors and destructor ===
37 * Two-phased constructor.
38 * @return pointer to an instance of CNGAPostProcSessionManager
40 static CNGAPostProcSessionManager* NewL();
45 ~CNGAPostProcSessionManager();
50 submits buffer to GCE for displaying.
52 @param "aBufId" "ID of the buffer that needs to be displayed."
53 @pre "This method can only be called before the hwdevice has been initialized with Initialize()."
55 void PostPicture(const TSurfaceId& aSurfaceId, TInt aBufId, TInt aNumOfBuf, TBool aNotifyRequired);
58 Sets the device output format.
63 Removes display from the system, if it is already existing.
65 @param "aDisplayId" "ID of the display that needs to be removed from the system"
67 void HandleBufferRelease(TInt aBufId, TInt aStatus);
70 Removes display from the system, if it is already existing.
72 @param "aDisplayId" "ID of the display that needs to be removed from the system"
74 void SetObserver(MNGAPostProcSessionManagerObserver& aObserver);
77 CNGAPostProcSessionManager();
79 * Symbian 2nd phase constructor .
86 RSurfaceUpdateSession* iSurfaceUpdateSession;
87 MNGAPostProcSessionManagerObserver* iObserver;
88 RArray<CNGAPostProcNotifier*> iAOList;
91 #endif //__NGAPOSTPROCSESSIONMANAGER_H__