Lines Matching defs:config

216 	EGLint			getValue	(EGLConfig config, EGLenum attrib, bool logValue=true);
218 virtual void executeTest (EGLConfig config) = 0;
262 const EGLConfig config = *m_configsIter;
265 eglGetConfigAttrib(m_display, config, EGL_CONFIG_ID, &id);
269 executeTest(config);
282 EGLint GetConfigAttribCase::getValue (EGLConfig config, EGLenum attrib, bool logValue)
287 eglGetConfigAttrib(m_display, config, attrib, &value);
363 log << TestLog::Message << "Fail, config IDs should be positive integer values beginning from 1." << TestLog::EndMessage;
376 log << TestLog::Message << "Fail, config does not actually support creation of any surface type?" << TestLog::EndMessage;
412 void executeTest (EGLConfig config)
432 eglGetConfigAttrib(m_display, config, m_attrib, &value);
454 void executeTest (EGLConfig config)
458 const EGLint colorBufferType = getValue(config, EGL_COLOR_BUFFER_TYPE);
460 const EGLint bufferSize = getValue(config, EGL_BUFFER_SIZE);
461 const EGLint redSize = getValue(config, EGL_RED_SIZE);
462 const EGLint greenSize = getValue(config, EGL_GREEN_SIZE);
463 const EGLint blueSize = getValue(config, EGL_BLUE_SIZE);
464 const EGLint luminanceSize = getValue(config, EGL_LUMINANCE_SIZE);
465 const EGLint alphaSize = getValue(config, EGL_ALPHA_SIZE);
524 void executeTest (EGLConfig config)
528 const EGLint transparentType = getValue(config, EGL_TRANSPARENT_TYPE);
529 const EGLint redValue = getValue(config, EGL_TRANSPARENT_RED_VALUE);
530 const EGLint greenValue = getValue(config, EGL_TRANSPARENT_GREEN_VALUE);
531 const EGLint blueValue = getValue(config, EGL_TRANSPARENT_BLUE_VALUE);
533 const EGLint redSize = getValue(config, EGL_RED_SIZE);
534 const EGLint greenSize = getValue(config, EGL_GREEN_SIZE);
535 const EGLint blueSize = getValue(config, EGL_BLUE_SIZE);
551 : TestCaseGroup(eglTestCtx, "query_config", "Surface config query tests")