Lines Matching defs:surface
1071 EGLSurface surface;
1081 surface = egl.createPbufferSurface(m_display, m_config, attributes);
1082 thread.getLog() << ThreadLog::BeginMessage << surface << " = eglCreatePbufferSurface(" << m_display << ", " << m_config << ", { EGL_WIDTH, 64, EGL_HEIGHT, 64, EGL_NONE })" << ThreadLog::EndMessage;
1085 pbuffers.push_back(surface);
1099 EGLSurface surface = EGL_NO_SURFACE;
1104 surface = eglu::createWindowSurface(m_eglTestCtx.getNativeDisplay(), *window, m_display, m_config, DE_NULL);
1106 thread.getLog() << ThreadLog::BeginMessage << surface << " = eglCreateWindowSurface()" << ThreadLog::EndMessage;
1107 windows.push_back(std::make_pair(window, surface));
1111 if (surface != EGL_NO_SURFACE)
1112 EGLU_CHECK_CALL(egl, destroySurface(m_display, surface));
1126 EGLSurface surface = EGL_NO_SURFACE;
1131 surface = eglu::createWindowSurface(m_eglTestCtx.getNativeDisplay(), *window, m_display, m_config, DE_NULL);
1133 thread.getLog() << ThreadLog::BeginMessage << surface << " = eglCreateWindowSurface()" << ThreadLog::EndMessage;
1134 windows.push_back(std::make_pair(window, surface));
1138 if (surface != EGL_NO_SURFACE)
1139 EGLU_CHECK_CALL(egl, destroySurface(m_display, surface));
1151 EGLSurface surface = EGL_NO_SURFACE;
1156 surface = eglu::createPixmapSurface(m_eglTestCtx.getNativeDisplay(), *pixmap, m_display, m_config, DE_NULL);
1158 thread.getLog() << ThreadLog::BeginMessage << surface << " = eglCreatePixmapSurface()" << ThreadLog::EndMessage;
1159 pixmaps.push_back(std::make_pair(pixmap, surface));
1163 if (surface != EGL_NO_SURFACE)
1164 EGLU_CHECK_CALL(egl, destroySurface(m_display, surface));
1354 EGLSurface surface = EGL_NO_SURFACE;
1360 surface = m_sharedPbuffers[rnd.getInt(0, (int)(m_sharedPbuffers.size()-1))];
1364 surface = m_sharedNativePixmaps[rnd.getInt(0, (int)(m_sharedNativePixmaps.size()-1))].second;
1368 surface = m_sharedNativeWindows[rnd.getInt(0, (int)(m_sharedNativeWindows.size()-1))].second;
1379 if (surface != EGL_NO_SURFACE)
1392 result = egl.querySurface(m_display, surface, attribute, &value);
1393 thread.getLog() << ThreadLog::BeginMessage << result << " = eglQuerySurface(" << m_display << ", " << surface << ", " << attribute << ", " << value << ")" << ThreadLog::EndMessage;