Home | History | Annotate | Download | only in egl

Lines Matching refs: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)
530 if (info.renderableType & EGL_MULTISAMPLE_RESOLVE_BOX_BIT)
550 if (info.renderableType & EGL_SWAP_BEHAVIOR_PRESERVED_BIT)
579 ConfigInfo info;
580 display.describeConfig(config, info);
582 log << TestLog::Message << "Creating window surface with config ID " << info.configId << TestLog::EndMessage;
588 testAttributes(surface, info);
606 ConfigInfo info;
607 display.describeConfig(config, info);
609 log << TestLog::Message << "Creating pixmap surface with config ID " << info.configId << TestLog::EndMessage;
615 testAttributes(surface, info);
633 ConfigInfo info;
634 display.describeConfig(config, info);
636 log << TestLog::Message << "Creating pbuffer surface with config ID " << info.configId << TestLog::EndMessage;
660 testAttributes(surface, info);
682 ConfigInfo info;
683 display.describeConfig(eglConfigs[ndx], info);
685 if (info.surfaceType & surfaceType)
686 out.push_back(info.configId);