HomeSort by relevance Sort by last modified time
    Searched full:attriblist (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /external/deqp/framework/egl/
egluGLUtil.cpp 89 vector<EGLint> attribList;
97 attribList.push_back(EGL_CONTEXT_CLIENT_VERSION);
98 attribList.push_back(contextType.getMajorVersion());
105 attribList.push_back(EGL_CONTEXT_MAJOR_VERSION_KHR);
106 attribList.push_back(contextType.getMajorVersion());
107 attribList.push_back(EGL_CONTEXT_MINOR_VERSION_KHR);
108 attribList.push_back(contextType.getMinorVersion());
120 attribList.push_back(EGL_CONTEXT_MAJOR_VERSION_KHR);
121 attribList.push_back(contextType.getMajorVersion());
122 attribList.push_back(EGL_CONTEXT_MINOR_VERSION_KHR)
    [all...]
egluUtil.cpp 48 vector<EGLint> attribList;
52 attribList.push_back(it->first);
53 attribList.push_back(it->second);
56 attribList.push_back(EGL_NONE);
58 return attribList;
113 vector<EGLConfig> chooseConfigs (const Library& egl, EGLDisplay display, const EGLint* attribList)
117 EGLU_CHECK_CALL(egl, chooseConfig(display, attribList, DE_NULL, 0, &numConfigs));
123 EGLU_CHECK_CALL(egl, chooseConfig(display, attribList, &configs.front(), numConfigs, &numConfigs));
156 EGLConfig chooseSingleConfig (const Library& egl, EGLDisplay display, const EGLint* attribList)
158 const vector<EGLConfig> configs (chooseConfigs(egl, display, attribList));
    [all...]
egluGLContextFactory.cpp 238 const EGLAttrib attribList[] = { EGL_NONE };
240 nativeWindow = windowFactory->createWindow(nativeDisplay, eglDisplay, eglConfig, &attribList[0], WindowParams(width, height, visibility));
244 surface = eglu::createWindowSurface(*nativeDisplay, *nativeWindow, eglDisplay, eglConfig, attribList);
261 const EGLAttrib attribList[] = { EGL_NONE };
263 nativePixmap = pixmapFactory->createPixmap(nativeDisplay, eglDisplay, eglConfig, &attribList[0], width, height);
267 surface = eglu::createPixmapSurface(*nativeDisplay, *nativePixmap, eglDisplay, eglConfig, attribList);
283 const EGLint attribList[] =
290 surface = egl.createPbufferSurface(display, eglConfig, &(attribList[0]));
egluNativePixmap.cpp 68 NativePixmap* NativePixmapFactory::createPixmap (NativeDisplay* nativeDisplay, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, int width, int height) const
70 DE_UNREF(display && config && attribList);
egluNativeWindow.cpp 94 NativeWindow* NativeWindowFactory::createWindow (NativeDisplay* nativeDisplay, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, const WindowParams& params) const
96 DE_UNREF(display && config && attribList);
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_ext_context.c 58 wglCreateContextAttribsARB(HDC hDC, HGLRC hShareContext, const int *attribList)
71 if (attribList) {
72 for (i = 0; !done && attribList[i]; i++) {
73 switch (attribList[i]) {
75 majorVersion = attribList[++i];
78 minorVersion = attribList[++i];
81 layerPlane = attribList[++i];
84 contextFlags = attribList[++i];
87 profileMask = attribList[++i];
  /external/deqp/framework/platform/win32/
tcuWGL.cpp 136 typedef HGLRC (WINAPI* wglCreateContextAttribsARBFunc) (HDC hdc, HGLRC hshareContext, const int* attribList);
412 std::vector<int> attribList;
440 attribList.push_back(WGL_CONTEXT_MAJOR_VERSION_ARB);
441 attribList.push_back(major);
442 attribList.push_back(WGL_CONTEXT_MINOR_VERSION_ARB);
443 attribList.push_back(minor);
444 attribList.push_back(WGL_CONTEXT_PROFILE_MASK_ARB);
445 attribList.push_back(profileBit);
470 attribList.push_back(WGL_CONTEXT_OPENGL_NO_ERROR_ARB);
471 attribList.push_back(1)
    [all...]
tcuWin32EGLNativeDisplayFactory.cpp 90 virtual eglu::NativePixmap* createPixmap (eglu::NativeDisplay* nativeDisplay, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, int width, int height) const;
191 eglu::NativePixmap* NativePixmapFactory::createPixmap (eglu::NativeDisplay* nativeDisplay, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, int width, int height) const
395 eglu::NativeDisplay* EGLNativeDisplayFactory::createDisplay (const EGLAttrib* attribList) const
397 DE_UNREF(attribList);
  /external/swiftshader/src/OpenGL/libEGL/
Display.cpp 238 bool Display::getConfigs(EGLConfig *configs, const EGLint *attribList, EGLint configSize, EGLint *numConfig)
240 return mConfigSet.getConfigs(configs, attribList, configSize, numConfig);
291 EGLSurface Display::createWindowSurface(EGLNativeWindowType window, EGLConfig config, const EGLint *attribList)
295 if(attribList)
297 while(*attribList != EGL_NONE)
299 switch(attribList[0])
302 switch(attribList[1])
320 attribList += 2;
343 EGLSurface Display::createPBufferSurface(EGLConfig config, const EGLint *attribList, EGLClientBuffer clientBuffer)
353 if(attribList)
    [all...]
Display.h 59 bool getConfigs(EGLConfig *configs, const EGLint *attribList, EGLint configSize, EGLint *numConfig);
62 EGLSurface createWindowSurface(EGLNativeWindowType window, EGLConfig config, const EGLint *attribList);
63 EGLSurface createPBufferSurface(EGLConfig config, const EGLint *attribList, EGLClientBuffer clientBuffer = nullptr);
Config.cpp 242 explicit SortConfig(const EGLint *attribList);
256 SortConfig::SortConfig(const EGLint *attribList)
262 for(const EGLint *attr = attribList; attr[0] != EGL_NONE; attr += 2)
342 bool ConfigSet::getConfigs(EGLConfig *configs, const EGLint *attribList, EGLint configSize, EGLint *numConfig)
351 const EGLint *attribute = attribList;
421 sort(passed.begin(), passed.end(), SortConfig(attribList));
  /external/deqp/framework/platform/lnx/wayland/
tcuLnxWaylandEglDisplayFactory.cpp 132 const eglw::EGLAttrib* attribList,
152 const eglw::EGLAttrib* attribList,
157 DE_UNREF(attribList);
169 NativeDisplay* createDisplay (const eglw::EGLAttrib* attribList) const;
185 NativeDisplay* DisplayFactory::createDisplay (const eglw::EGLAttrib* attribList) const
187 DE_UNREF(attribList);
  /external/deqp/framework/platform/lnx/X11/
tcuLnxX11EglDisplayFactory.cpp 181 const eglw::EGLAttrib* attribList,
201 const eglw::EGLAttrib* attribList,
204 DE_UNREF(attribList);
266 NativeDisplay* createDisplay (const eglw::EGLAttrib* attribList) const;
283 NativeDisplay* DisplayFactory::createDisplay (const eglw::EGLAttrib* attribList) const
285 DE_UNREF(attribList);
  /external/deqp/modules/egl/
teglThreadCleanUpTests.cpp 99 const EGLint attribList[] =
109 const eglu::UniqueContext context (m_egl, m_display, m_egl.createContext(m_display, m_config, EGL_NO_CONTEXT, attribList));
201 const EGLint attribList[] =
209 m_context = egl.createContext(m_display, m_config, EGL_NO_CONTEXT, attribList);
teglCreateContextExtTests.cpp 80 size_t getAttribListLength (const EGLint* attribList)
84 while (attribList[size] != EGL_NONE)
178 CreateContextExtCase (EglTestContext& eglTestCtx, EGLenum api, const EGLint* attribList, const eglu::FilterList& filter, const char* name, const char* description);
204 glu::ContextType attribListToContextType (EGLenum api, const EGLint* attribList)
210 const EGLint* iter = attribList;
274 CreateContextExtCase::CreateContextExtCase (EglTestContext& eglTestCtx, EGLenum api, const EGLint* attribList, const eglu::FilterList& filter, const char* name, const char* description)
279 , m_attribList (attribList, attribList + getAttribListLength(attribList))
282 , m_glContextType (attribListToContextType(api, attribList))
    [all...]
teglChooseConfigTests.cpp 167 vector<EGLint> attribList;
170 attribList.push_back(i->first);
171 attribList.push_back(i->second);
173 attribList.push_back(EGL_NONE);
175 // Print attribList to log
186 EGLU_CHECK_CALL(egl, chooseConfig(m_display, &attribList[0], DE_NULL, 0, &numConfigs));
190 EGLU_CHECK_CALL(egl, chooseConfig(m_display, &attribList[0], &resultConfigs[0], (EGLint)resultConfigs.size(), &numConfigs));
teglWideColorTests.cpp 363 const EGLint attribList[] =
377 EGLU_CHECK_CALL(egl, chooseConfig(m_eglDisplay, &attribList[0], DE_NULL, 0, &numConfigs));
387 EGLU_CHECK_CALL(egl, chooseConfig(m_eglDisplay, &attribList[0], &config, 1, &numConfigs));
414 const EGLint attribList[] =
427 EGLU_CHECK_CALL(egl, chooseConfig(m_eglDisplay, &attribList[0], DE_NULL, 0, &numConfigs));
437 EGLBoolean success = egl.chooseConfig(m_eglDisplay, &attribList[0], &config, 1, &numConfigs);
560 const EGLint* attribList,
596 WideColorSurfaceTest::WideColorSurfaceTest (EglTestContext& eglTestCtx, const char* name, const char* description, const EGLint* attribList, EGLint colorSpace, const std::vector<struct Iteration>& iterations)
602 while (attribList[idx] != EGL_NONE)
604 if (attribList[idx] == EGL_COLOR_COMPONENT_TYPE_EXT
    [all...]
teglMemoryStressTests.cpp 202 const EGLint attribList[] =
209 EGLSurface surface = egl.createPbufferSurface(m_display, m_config, attribList);
266 const EGLint attribList[] =
273 EGLContext context = egl.createContext(m_display, m_config, EGL_NO_CONTEXT, attribList);
360 const EGLint attribList[] =
375 EGLU_CHECK_CALL(egl, chooseConfig(m_display, attribList, &m_config, 1, &configCount));
teglNegativePartialUpdateTests.cpp 118 EGLContext initAndMakeCurrentEGLContext (const Library& egl, EGLDisplay eglDisplay, EGLSurface eglSurface, EGLConfig eglConfig, const EGLint* attribList)
123 eglContext = egl.createContext(eglDisplay, eglConfig, EGL_NO_CONTEXT, attribList);
276 const EGLint attribList[] =
282 const eglu::UniqueSurface dummyPbuffer (egl, m_eglDisplay, egl.createPbufferSurface(m_eglDisplay, config, attribList));
500 const EGLint attribList[] =
506 const eglu::UniqueSurface dummyPbuffer (egl, m_eglDisplay, egl.createPbufferSurface(m_eglDisplay, config, attribList));
  /external/deqp/framework/platform/android/
tcuAndroidPlatform.cpp 74 virtual eglu::NativeDisplay* createDisplay (const EGLAttrib* attribList) const;
102 virtual eglu::NativeWindow* createWindow (eglu::NativeDisplay* nativeDisplay, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, const eglu::WindowParams& params) const;
157 eglu::NativeWindow* NativeWindowFactory::createWindow (eglu::NativeDisplay* nativeDisplay, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, const eglu::WindowParams& params) const
160 DE_UNREF(nativeDisplay && attribList);
182 eglu::NativeDisplay* NativeDisplayFactory::createDisplay (const EGLAttrib* attribList) const
184 DE_UNREF(attribList);
  /external/mesa3d/include/GL/
glx.h 188 int *attribList );
243 const int *attribList, int *nitems );
255 Window win, const int *attribList );
260 Pixmap pixmap, const int *attribList );
265 const int *attribList );
366 extern Bool glXDrawableAttribARB(Display *dpy, GLXDrawable draw, const int *attribList);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/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/src/glx/windows/
windowsgl.h 34 windowsContext *windows_create_context_attribs(int pxfi, windowsContext *shared, const int *attribList);
  /external/mesa3d/src/mesa/drivers/x11/
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/gallium/state_trackers/osmesa/
osmesa.c 569 OSMesaCreateContextAttribs(const int *attribList, OSMesaContext sharelist)
588 for (i = 0; attribList[i]; i += 2) {
589 switch (attribList[i]) {
591 format = attribList[i+1];
607 depthBits = attribList[i+1];
612 stencilBits = attribList[i+1];
617 accumBits = attribList[i+1];
622 profile = attribList[i+1];
628 version_major = attribList[i+1];
633 version_minor = attribList[i+1]
    [all...]

Completed in 854 milliseconds

1 2 3 4