Lines Matching defs:info
108 void checkCommonAttributes (const tcu::egl::Surface& surface, const ConfigInfo& info);
117 void QuerySurfaceCase::checkCommonAttributes (const tcu::egl::Surface& surface, const ConfigInfo& info)
127 if (id != info.configId)
190 if (multisampleResolve == EGL_MULTISAMPLE_RESOLVE_BOX && !(info.surfaceType & EGL_MULTISAMPLE_RESOLVE_BOX_BIT))
207 if (swapBehavior == EGL_BUFFER_PRESERVED && !(info.surfaceType & EGL_SWAP_BEHAVIOR_PRESERVED_BIT))
224 if (vgAlphaFormat == EGL_VG_ALPHA_FORMAT_PRE && !(info.surfaceType & EGL_VG_ALPHA_FORMAT_PRE_BIT))
241 if (vgColorspace == EGL_VG_COLORSPACE_LINEAR && !(info.surfaceType & EGL_VG_COLORSPACE_LINEAR_BIT))
306 ConfigInfo info;
307 display.describeConfig(config, info);
309 log << TestLog::Message << "Creating window surface with config ID " << info.configId << TestLog::EndMessage;
317 checkCommonAttributes(surface, info);
336 ConfigInfo info;
337 display.describeConfig(config, info);
339 log << TestLog::Message << "Creating pixmap surface with config ID " << info.configId << TestLog::EndMessage;
347 checkCommonAttributes(surface, info);
366 ConfigInfo info;
367 display.describeConfig(config, info);
369 log << TestLog::Message << "Creating pbuffer surface with config ID " << info.configId << TestLog::EndMessage;
397 checkCommonAttributes(surface, info);
454 void testAttributes (tcu::egl::Surface& surface, const ConfigInfo& info);
462 void SurfaceAttribCase::testAttributes (tcu::egl::Surface& surface, const ConfigInfo& info)
477 if (info.renderableType & EGL_OPENGL_ES_BIT || info.renderableType & EGL_OPENGL_ES2_BIT)
519 if (info.renderableType & EGL_MULTISAMPLE_RESOLVE_BOX_BIT)
539 if (info.renderableType & EGL_SWAP_BEHAVIOR_PRESERVED_BIT)
568 ConfigInfo info;
569 display.describeConfig(config, info);
571 log << TestLog::Message << "Creating window surface with config ID " << info.configId << TestLog::EndMessage;
577 testAttributes(surface, info);
595 ConfigInfo info;
596 display.describeConfig(config, info);
598 log << TestLog::Message << "Creating pixmap surface with config ID " << info.configId << TestLog::EndMessage;
604 testAttributes(surface, info);
622 ConfigInfo info;
623 display.describeConfig(config, info);
625 log << TestLog::Message << "Creating pbuffer surface with config ID " << info.configId << TestLog::EndMessage;
649 testAttributes(surface, info);
671 ConfigInfo info;
672 display.describeConfig(eglConfigs[ndx], info);
674 if (info.surfaceType & surfaceType)
675 out.push_back(info.configId);