Update contrib.
1 // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Reference EGL implementation to support EGL sync objects and OpenWF extensions
21 #include <e32hashtab.h>
24 #ifndef EGL_VERSION_1_4
25 #error Reference EGL requires at least EGL version 1.4 headers
28 // Panic category and codes
30 _LIT(KEglPanicCategory, "EGL");
33 EEglPanicNotSupported = 1,
34 EEglPanicPlsMutexError,
37 EEglPanicDisplayStateInvalid,
38 EEglPanicInvalidSyncObj,
39 EEglPanicCondVarWaitFail,
40 EEglPanicCondVarTimedWaitFail,
41 EEglPanicInvalidSession,
42 EEglPanicOutstandingSyncObj,
43 EEglPanicSyncObjHasBeenDestroyed
46 // Forward declarations
50 class CEglThreadSession;
53 // Helper class to manage PLS
55 NONSHARABLE_CLASS(XEglPls)
74 typedef void (*TFuncPtrEglProc)(...);
77 typedef TFuncPtrEglProc (*TFuncPtrOwfGetProcAddress)(const char*);
79 // Function table used by OWF implementation
80 // The actual type and name of the structure is irrelevant here,
81 // as long as its size and offset match it should be ok
83 NONSHARABLE_STRUCT(TOwfFuncTable)
85 TFuncPtrOwfGetProcAddress iOwfGetProcAddress;
90 NONSHARABLE_CLASS(CEglDriver): public CBase
95 static CEglDriver* GetDriver();
97 CEglDisplay* FindDisplay(EGLDisplay aDisplay) const;
98 TFuncPtrEglProc GetProcAddress(const char* aName) const;
100 inline void Unlock();
103 inline RHeap& Heap() const;
107 CEglDriver(RHeap& aHeap);
110 inline TBool IsDisplayValid(EGLDisplay aDisplay) const;
115 CEglDisplay* iDisplay;
117 TOwfFuncTable iOwfFuncTable;
121 // Thread state and thread-specific tasks
123 NONSHARABLE_CLASS(CEglThreadSession): public CBase
126 static CEglThreadSession* Static();
127 ~CEglThreadSession();
130 EGLint EglGetError();
131 EGLDisplay EglGetDisplay(NativeDisplayType aDisplayId);
132 EGLBoolean EglInitialize(EGLDisplay aDisplay, EGLint* aMajor, EGLint* aMinor);
133 EGLBoolean EglTerminate(EGLDisplay aDisplay);
134 const char* EglQueryString(EGLDisplay aDisplay, EGLint aName);
135 TFuncPtrEglProc EglGetProcAddress(const char* aName);
138 EGLSyncKHR EglCreateSyncKhr(EGLDisplay aDisplay, EGLenum aType, const EGLint *aAttribList);
139 EGLBoolean EglDestroySyncKhr(EGLDisplay aDisplay, EGLSyncKHR aSync);
140 EGLint EglClientWaitSyncKhr(EGLDisplay aDisplay, EGLSyncKHR aSync, EGLint aFlags, EGLTimeKHR aTimeout);
141 EGLBoolean EglSignalSyncKhr(EGLDisplay aDisplay, EGLSyncKHR aSync, EGLenum aMode);
142 EGLBoolean EglGetSyncAttribKhr(EGLDisplay aDisplay, EGLSyncKHR aSync, EGLint aAttribute, EGLint *aValue);
145 EGLint EglSignalSyncInternal(EGLDisplay aDisplay, EGLSyncKHR aSync, EGLenum aMode);
149 void EglHeapMarkStart();
150 EGLint EglHeapMarkEnd(EGLint aCount);
151 void EglHeapSetBurstAllocFail(EGLenum aType, EGLint aRate, EGLint aBurst);
155 CEglThreadSession(CEglDriver& aDriver);
156 void SetError(EGLint aErrror);
164 // EGLDisplay implementation
166 const EGLDisplay KEglDefaultDisplayHandle = 0x01;
168 NONSHARABLE_CLASS(CEglDisplay): public CBase
171 CEglDisplay(RHeap& aHeap);
176 inline TBool IsInitialized() const;
177 inline RHeap& Heap() const;
178 inline EGLDisplay Handle() const;
180 CEglSync* CreateSyncObj();
181 TInt DestroySyncObj(EGLSyncKHR aSyncObj);
182 CEglSync* FindSyncObj(EGLSyncKHR aSyncObj) const;
184 TInt RegisterSyncObj(CEglSync& aSyncObj);
185 void UnregisterSyncObj(CEglSync& aSyncObj);
188 typedef RHashMap<TInt,CEglSync*> REglSyncHashMap;
192 TBool iIsInitialized;
193 REglSyncHashMap* iSyncObjList;
196 // EGLSync implementation
198 NONSHARABLE_CLASS(CEglSync): public CBase
201 static CEglSync* Create(CEglDisplay& aDisplay);
206 void Signal(EGLenum aMode);
207 EGLint Wait(EGLTimeKHR aTimeOut);
208 inline EGLenum Type() const;
209 inline EGLenum Status() const;
210 inline TBool IsDestroyed() const;
213 CEglSync(CEglDisplay& aDisplay);
218 CEglDisplay& iDisplay;
223 TInt iRefCount; // to determine when to delete this object
224 TBool iIsDestroyed; // to prevent object from being used when its handle has been explicitly destroyed by client
227 #include "eglprivate.inl"
229 #endif /* EGLPRIVATE_H */