Lines Matching refs:conf2
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()
629 val2 += conf2->RedSize; in _eglCompareConfigs()
633 val2 += conf2->GreenSize; in _eglCompareConfigs()
637 val2 += conf2->BlueSize; in _eglCompareConfigs()
643 val2 += conf2->LuminanceSize; in _eglCompareConfigs()
648 val2 += conf2->AlphaSize; in _eglCompareConfigs()
662 val2 = _eglGetConfigKey(conf2, 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
677 *conf1 = *conf2; in _eglSwapConfigs()
678 *conf2 = tmp; in _eglSwapConfigs()
781 _eglFallbackCompare(const _EGLConfig *conf1, const _EGLConfig *conf2, in _eglFallbackCompare() argument
784 return _eglCompareConfigs(conf1, conf2, in _eglFallbackCompare()