/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/ |
stw_ext_context.c | 36 wglCreateContextAttribsARB(HDC hDC, HGLRC hShareContext, const int *attribList) 45 if (attribList) { 46 for (i = 0; !done && attribList[i]; i++) { 47 switch (attribList[i]) { 49 majorVersion = attribList[++i]; 52 minorVersion = attribList[++i]; 55 layerPlane = attribList[++i]; 58 contextFlags = attribList[++i]; 61 profileMask = attribList[++i];
|
/external/mesa3d/src/gallium/state_trackers/wgl/ |
stw_ext_context.c | 36 wglCreateContextAttribsARB(HDC hDC, HGLRC hShareContext, const int *attribList) 45 if (attribList) { 46 for (i = 0; !done && attribList[i]; i++) { 47 switch (attribList[i]) { 49 majorVersion = attribList[++i]; 52 minorVersion = attribList[++i]; 55 layerPlane = attribList[++i]; 58 contextFlags = attribList[++i]; 61 profileMask = attribList[++i];
|
/external/chromium_org/third_party/angle/src/libEGL/ |
Display.cpp | 143 bool Display::getConfigs(EGLConfig *configs, const EGLint *attribList, EGLint configSize, EGLint *numConfig) 145 return mConfigSet.getConfigs(configs, attribList, configSize, numConfig); 195 EGLSurface Display::createWindowSurface(HWND window, EGLConfig config, const EGLint *attribList) 204 if (attribList) 206 while (*attribList != EGL_NONE) 208 switch (attribList[0]) 211 switch (attribList[1]) 222 postSubBufferSupported = attribList[1]; 225 width = attribList[1]; 228 height = attribList[1] [all...] |
Display.h | 43 bool getConfigs(EGLConfig *configs, const EGLint *attribList, EGLint configSize, EGLint *numConfig); 46 EGLSurface createWindowSurface(HWND window, EGLConfig config, const EGLint *attribList); 47 EGLSurface createOffscreenSurface(EGLConfig config, HANDLE shareHandle, const EGLint *attribList);
|
Config.h | 75 explicit SortConfig(const EGLint *attribList); 81 void scanForWantedComponents(const EGLint *attribList); 100 bool getConfigs(EGLConfig *configs, const EGLint *attribList, EGLint configSize, EGLint *numConfig);
|
Config.cpp | 145 SortConfig::SortConfig(const EGLint *attribList) 148 scanForWantedComponents(attribList); 151 void SortConfig::scanForWantedComponents(const EGLint *attribList) 156 for (const EGLint *attr = attribList; attr[0] != EGL_NONE; attr += 2) 257 bool ConfigSet::getConfigs(EGLConfig *configs, const EGLint *attribList, EGLint configSize, EGLint *numConfig) 265 const EGLint *attribute = attribList; 323 sort(passed.begin(), passed.end(), SortConfig(attribList));
|
/external/deqp/framework/egl/ |
tcuEgl.cpp | 71 void Display::chooseConfig (const EGLint* attribList, std::vector<EGLConfig>& configs) const 74 TCU_CHECK_EGL_CALL(eglChooseConfig(m_display, attribList, DE_NULL, 0, &numConfigs)); 77 TCU_CHECK_EGL_CALL(eglChooseConfig(m_display, attribList, &configs[0], (EGLint)configs.size(), &numConfigs)); 166 WindowSurface::WindowSurface (Display& display, EGLConfig config, EGLNativeWindowType nativeWindow, const EGLint* attribList) 169 m_surface = eglCreateWindowSurface(display.getEGLDisplay(), config, nativeWindow, attribList); 191 PixmapSurface::PixmapSurface (Display& display, EGLConfig config, EGLNativePixmapType nativePixmap, const EGLint* attribList) 194 m_surface = eglCreatePixmapSurface(m_display.getEGLDisplay(), config, nativePixmap, attribList); 212 PbufferSurface::PbufferSurface (Display& display, EGLConfig config, const EGLint* attribList) 215 m_surface = eglCreatePbufferSurface(m_display.getEGLDisplay(), config, attribList); 226 Context::Context (const Display& display, EGLConfig config, const EGLint* attribList, EGLenum api [all...] |
egluUtil.cpp | 105 vector<EGLint> attribList; 109 attribList.push_back(it->first); 110 attribList.push_back(it->second); 113 attribList.push_back(EGL_NONE); 117 EGLU_CHECK_CALL(eglChooseConfig(display, &attribList.front(), DE_NULL, 0, &numConfigs)); 123 EGLU_CHECK_CALL(eglChooseConfig(display, &attribList.front(), &configs.front(), numConfigs, &numConfigs)); 212 EGLSurface createWindowSurface (NativeDisplay& nativeDisplay, NativeWindow& window, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList) 232 const vector<EGLint> legacyAttribs = toLegacyAttribList(attribList); 243 const vector<EGLint> legacyAttribs = toLegacyAttribList(attribList); 256 EGLSurface createPixmapSurface (NativeDisplay& nativeDisplay, NativePixmap& pixmap, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList) [all...] |
egluGLContextFactory.cpp | 328 const EGLAttrib attribList[] = { EGL_NONE }; 330 nativeWindow = windowFactory->createWindow(nativeDisplay, eglDisplay, eglConfig, &attribList[0], WindowParams(width, height, visibility)); 334 surface = eglu::createWindowSurface(*nativeDisplay, *nativeWindow, eglDisplay, eglConfig, attribList); 351 const EGLAttrib attribList[] = { EGL_NONE }; 353 nativePixmap = pixmapFactory->createPixmap(nativeDisplay, eglDisplay, eglConfig, &attribList[0], width, height); 357 surface = eglu::createPixmapSurface(*nativeDisplay, *nativePixmap, eglDisplay, eglConfig, attribList); 373 const EGLint attribList[] = 380 surface = eglCreatePbufferSurface(display, eglConfig, &(attribList[0])); 397 vector<EGLint> attribList; 405 attribList.push_back(EGL_CONTEXT_CLIENT_VERSION) [all...] |
tcuEgl.hpp | 115 WindowSurface (Display& display, EGLConfig config, EGLNativeWindowType nativeWindow, const EGLint* attribList); 125 PixmapSurface (Display& display, EGLConfig config, EGLNativePixmapType nativePixmap, const EGLint* attribList); 132 PbufferSurface (Display& display, EGLConfig config, const EGLint* attribList); 139 Context (const Display& display, EGLConfig config, const EGLint* attribList, EGLenum api);
|
egluNativePixmap.cpp | 66 NativePixmap* NativePixmapFactory::createPixmap (NativeDisplay* nativeDisplay, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, int width, int height) const 68 DE_UNREF(display && config && attribList);
|
egluNativeWindow.cpp | 92 NativeWindow* NativeWindowFactory::createWindow (NativeDisplay* nativeDisplay, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, const WindowParams& params) const 94 DE_UNREF(display && config && attribList);
|
egluUtil.hpp | 57 EGLSurface createWindowSurface (NativeDisplay& nativeDisplay, NativeWindow& window, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList); 58 EGLSurface createPixmapSurface (NativeDisplay& nativeDisplay, NativePixmap& pixmap, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList);
|
/external/deqp/framework/platform/X11/ |
tcuX11EglPlatform.cpp | 132 const EGLAttrib* attribList, 152 const EGLAttrib* attribList, 155 DE_UNREF(attribList); 217 NativeDisplay* createDisplay (const EGLAttrib* attribList) const; 234 NativeDisplay* DisplayFactory::createDisplay (const EGLAttrib* attribList) const 236 DE_UNREF(attribList);
|
/external/deqp/framework/platform/android/ |
tcuAndroidPlatform.cpp | 56 virtual eglu::NativeDisplay* createDisplay (const EGLAttrib* attribList) const; 84 virtual eglu::NativeWindow* createWindow (eglu::NativeDisplay* nativeDisplay, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, const eglu::WindowParams& params) const; 139 eglu::NativeWindow* NativeWindowFactory::createWindow (eglu::NativeDisplay* nativeDisplay, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, const eglu::WindowParams& params) const 142 DE_UNREF(nativeDisplay && attribList); 165 eglu::NativeDisplay* NativeDisplayFactory::createDisplay (const EGLAttrib* attribList) const 167 DE_UNREF(attribList);
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/ |
realglx.h | 112 const int *attribList, int *nitems ); 126 const int *attribList ); 133 const int *attribList ); 140 const int *attribList );
|
glxapi.h | 91 GLXFBConfig *(*ChooseFBConfig)(Display *dpy, int screen, const int *attribList, int *nitems); 93 GLXPbuffer (*CreatePbuffer)(Display *dpy, GLXFBConfig config, const int *attribList); 94 GLXPixmap (*CreatePixmap)(Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attribList); 95 GLXWindow (*CreateWindow)(Display *dpy, GLXFBConfig config, Window win, const int *attribList);
|
/external/mesa3d/src/mesa/drivers/x11/ |
realglx.h | 112 const int *attribList, int *nitems ); 126 const int *attribList ); 133 const int *attribList ); 140 const int *attribList );
|
glxapi.h | 91 GLXFBConfig *(*ChooseFBConfig)(Display *dpy, int screen, const int *attribList, int *nitems); 93 GLXPbuffer (*CreatePbuffer)(Display *dpy, GLXFBConfig config, const int *attribList); 94 GLXPixmap (*CreatePixmap)(Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attribList); 95 GLXWindow (*CreateWindow)(Display *dpy, GLXFBConfig config, Window win, const int *attribList);
|
/external/deqp/modules/egl/ |
teglCreateContextExtTests.cpp | 115 size_t getAttribListLength (const EGLint* attribList) 119 while (attribList[size] != EGL_NONE) 213 CreateContextExtCase (EglTestContext& eglTestCtx, EGLenum api, const EGLint* attribList, const eglu::FilterList& filter, const char* name, const char* description); 238 glu::ContextType attribListToContextType (EGLenum api, const EGLint* attribList) 244 const EGLint* iter = attribList; 308 CreateContextExtCase::CreateContextExtCase (EglTestContext& eglTestCtx, EGLenum api, const EGLint* attribList, const eglu::FilterList& filter, const char* name, const char* description) 313 , m_attribList (attribList, attribList + getAttribListLength(attribList)) 315 , m_glContextType (attribListToContextType(api, attribList)) [all...] |
teglTestCase.cpp | 216 eglu::NativeWindow* EglTestContext::createNativeWindow (EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, int width, int height, eglu::WindowParams::Visibility visibility) 221 return m_windowFactory->createWindow(m_defaultNativeDisplay, display, config, attribList, eglu::WindowParams(width, height, visibility)); 224 eglu::NativePixmap* EglTestContext::createNativePixmap (EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, int width, int height) 229 return m_pixmapFactory->createPixmap(m_defaultNativeDisplay, display, config, attribList, width, height);
|
/external/chromium_org/third_party/mesa/src/include/GL/ |
glx.h | 201 int *attribList ); 256 const int *attribList, int *nitems ); 268 Window win, const int *attribList ); 273 Pixmap pixmap, const int *attribList ); 278 const int *attribList ); 379 extern Bool glXDrawableAttribARB(Display *dpy, GLXDrawable draw, const int *attribList);
|
/external/mesa3d/include/GL/ |
glx.h | 201 int *attribList ); 256 const int *attribList, int *nitems ); 268 Window win, const int *attribList ); 273 Pixmap pixmap, const int *attribList ); 278 const int *attribList ); 379 extern Bool glXDrawableAttribARB(Display *dpy, GLXDrawable draw, const int *attribList);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/GL/ |
glx.h | 191 int *attribList ); 246 const int *attribList, int *nitems ); 258 Window win, const int *attribList ); 263 Pixmap pixmap, const int *attribList ); 268 const int *attribList ); 385 extern Bool glXDrawableAttribARB(Display *dpy, GLXDrawable draw, const int *attribList);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/GL/ |
glx.h | 191 int *attribList ); 246 const int *attribList, int *nitems ); 258 Window win, const int *attribList ); 263 Pixmap pixmap, const int *attribList ); 268 const int *attribList ); 385 extern Bool glXDrawableAttribARB(Display *dpy, GLXDrawable draw, const int *attribList);
|