Lines Matching refs:conf1
594 _eglCompareConfigs(const _EGLConfig *conf1, const _EGLConfig *conf2, in _eglCompareConfigs() argument
608 if (conf1 == conf2) in _eglCompareConfigs()
614 val1 = conf1->ConfigCaveat - conf2->ConfigCaveat; in _eglCompareConfigs()
620 val1 = conf1->ColorBufferType - conf2->ColorBufferType; in _eglCompareConfigs()
626 if (conf1->ColorBufferType == EGL_RGB_BUFFER) { in _eglCompareConfigs()
628 val1 += conf1->RedSize; in _eglCompareConfigs()
632 val1 += conf1->GreenSize; in _eglCompareConfigs()
636 val1 += conf1->BlueSize; in _eglCompareConfigs()
642 val1 += conf1->LuminanceSize; in _eglCompareConfigs()
647 val1 += conf1->AlphaSize; in _eglCompareConfigs()
661 val1 = _eglGetConfigKey(conf1, compare_attribs[i]); in _eglCompareConfigs()
669 return (compare_id) ? (conf1->ConfigID - conf2->ConfigID) : 0; in _eglCompareConfigs()
674 void _eglSwapConfigs(const _EGLConfig **conf1, const _EGLConfig **conf2) in _eglSwapConfigs() argument
676 const _EGLConfig *tmp = *conf1; in _eglSwapConfigs()
677 *conf1 = *conf2; in _eglSwapConfigs()
781 _eglFallbackCompare(const _EGLConfig *conf1, const _EGLConfig *conf2, in _eglFallbackCompare() argument
784 return _eglCompareConfigs(conf1, conf2, in _eglFallbackCompare()