HomeSort by relevance Sort by last modified time
    Searched refs:attribList (Results 1 - 25 of 79) 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...]
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);
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...]
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);
egluNativePixmap.hpp 84 virtual NativePixmap* createPixmap (NativeDisplay* nativeDisplay, eglw::EGLDisplay display, eglw::EGLConfig config, const eglw::EGLAttrib* attribList, int width, int height) const;
  /external/deqp/framework/platform/win32/
tcuWin32EGLNativeDisplayFactory.hpp 42 virtual eglu::NativeDisplay* createDisplay (const eglw::EGLAttrib* attribList) const;
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...]
  /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/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/mesa3d/src/glx/windows/
windowsgl.h 34 windowsContext *windows_create_context_attribs(int pxfi, windowsContext *shared, const int *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/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/
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...]
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);
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));
  /external/deqp/framework/platform/nullws/
tcuNullWSPlatform.cpp 130 eglu::NativeDisplay* createDisplay (const eglw::EGLAttrib* attribList = DE_NULL) const
  /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...]
  /cts/tests/tests/opengl/src/android/opengl/cts/
FramebufferTest.java 259 int[] attribList = {
271 attribList[attribList.length - 3] = EGLExt.EGL_RECORDABLE_ANDROID;
272 attribList[attribList.length - 2] = 1;
276 if (!EGL14.eglChooseConfig(mEGLDisplay, attribList, 0, configs, 0, configs.length,
  /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);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
CtsMediaOutputSurface.java 139 int[] attribList = {
149 if (!EGL14.eglChooseConfig(mEGLDisplay, attribList, 0, configs, 0, configs.length,

Completed in 589 milliseconds

1 2 3 4