HomeSort by relevance Sort by last modified time
    Searched refs:EglDisplay (Results 1 - 17 of 17) sorted by null

  /sdk/emulator/opengl/host/libs/Translator/EGL/
ThreadInfo.h 21 class EglDisplay;
25 ThreadInfo():eglDisplay(NULL),glesContext(NULL),objManager(NULL){}
28 EglDisplay* dpy,
34 EglDisplay* eglDisplay;
EglPixmapSurface.h 23 class EglDisplay;
27 EglPixmapSurface(EglDisplay *dpy, EGLNativePixmapType pix,EglConfig* config);
EglWindowSurface.h 24 class EglDisplay;
28 EglWindowSurface(EglDisplay *dpy, EGLNativeWindowType win,EglConfig* config,unsigned width,unsigned int height);
EglDisplay.cpp 16 #include "EglDisplay.h"
21 EglDisplay::EglDisplay(EGLNativeInternalDisplayType dpy,bool isDefault) :
33 EglDisplay::~EglDisplay() {
59 EGLNativeInternalDisplayType EglDisplay::nativeType(){return m_dpy;}
61 void EglDisplay::initialize(int renderableType) {
68 bool EglDisplay::isInitialize() { return m_initialized;}
70 void EglDisplay::terminate(){
81 void EglDisplay::addMissingConfigs(void
    [all...]
EglGlobalInfo.h 23 #include "EglDisplay.h"
27 typedef std::map<EglDisplay*,EGLNativeDisplayType>DisplaysMap;
33 EglDisplay* addDisplay(EGLNativeDisplayType dpy,EGLNativeInternalDisplayType idpy);
34 EglDisplay* getDisplay(EGLNativeDisplayType dpy);
35 EglDisplay* getDisplay(EGLDisplay dpy);
36 bool removeDisplay(EGLDisplay dpy);
EglGlobalInfo.cpp 52 EglDisplay* EglGlobalInfo::addDisplay(EGLNativeDisplayType dpy,EGLNativeInternalDisplayType idpy) {
59 EglDisplay* p_dpy = new EglDisplay(idpy);
67 bool EglGlobalInfo::removeDisplay(EGLDisplay dpy) {
70 if(static_cast<EGLDisplay>((*it).first) == dpy) {
79 EglDisplay* EglGlobalInfo::getDisplay(EGLNativeDisplayType dpy) {
87 EglDisplay* EglGlobalInfo::getDisplay(EGLDisplay dpy) {
89 DisplaysMap::iterator it = m_displays.find(static_cast<EglDisplay*>(dpy));
EglPbufferSurface.h 21 class EglDisplay;
25 EglPbufferSurface(EglDisplay *dpy, EglConfig* config):
EglThreadInfo.h 20 #include "EglDisplay.h"
38 EglDisplay* m_currentDisplay;
EglContext.h 35 class EglDisplay;
41 EglContext(EglDisplay *dpy, EGLNativeContextType context,ContextPtr shared_context,EglConfig* config,GLEScontext* glesCtx,GLESVersion ver,ObjectNameManager* mngr);
60 EglDisplay *m_dpy;
EglSurface.h 28 class EglDisplay;
52 EglSurface(EglDisplay *dpy,
72 EglDisplay *m_dpy;
EglDisplay.h 37 class EglDisplay {
41 EglDisplay(EGLNativeInternalDisplayType dpy,bool isDefault = true);
60 ~EglDisplay();
EglPixmapSurface.cpp 26 EglPixmapSurface::EglPixmapSurface(EglDisplay *dpy,
EglWindowSurface.cpp 26 EglWindowSurface::EglWindowSurface(EglDisplay *dpy,
ThreadInfo.cpp 21 EglDisplay* dpy,
27 eglDisplay = dpy;
EglContext.cpp 17 #include "EglDisplay.h"
29 EglContext::EglContext(EglDisplay *dpy, EGLNativeContextType context,ContextPtr shared_context,
Android.mk 37 EglDisplay.cpp \
EglImp.cpp 35 #include "EglDisplay.h"
75 EGLImageKHR eglCreateImageKHR(EGLDisplay display, EGLContext context, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list);
76 EGLBoolean eglDestroyImageKHR(EGLDisplay display, EGLImageKHR image);
98 #define VALIDATE_DISPLAY_RETURN(EGLDisplay,ret) \
99 EglDisplay* dpy = g_eglInfo->getDisplay(EGLDisplay); \
126 #define VALIDATE_DISPLAY(EGLDisplay) \
127 VALIDATE_DISPLAY_RETURN(EGLDisplay,EGL_FALSE)
152 EGLAPI EGLDisplay EGLAPIENTRY eglGetDisplay(EGLNativeDisplayType display_id) {
153 EglDisplay* dpy = NULL
    [all...]

Completed in 88 milliseconds