Lines Matching refs:conf2
574 _eglCompareConfigs(const _EGLConfig *conf1, const _EGLConfig *conf2, in _eglCompareConfigs() argument
588 if (conf1 == conf2) in _eglCompareConfigs()
594 val1 = conf1->ConfigCaveat - conf2->ConfigCaveat; in _eglCompareConfigs()
600 val1 = conf1->ColorBufferType - conf2->ColorBufferType; in _eglCompareConfigs()
609 val2 += conf2->RedSize; in _eglCompareConfigs()
613 val2 += conf2->GreenSize; in _eglCompareConfigs()
617 val2 += conf2->BlueSize; in _eglCompareConfigs()
623 val2 += conf2->LuminanceSize; in _eglCompareConfigs()
628 val2 += conf2->AlphaSize; in _eglCompareConfigs()
642 val2 = _eglGetConfigKey(conf2, compare_attribs[i]); in _eglCompareConfigs()
649 return (compare_id) ? (conf1->ConfigID - conf2->ConfigID) : 0; in _eglCompareConfigs()
654 void _eglSwapConfigs(const _EGLConfig **conf1, const _EGLConfig **conf2) in _eglSwapConfigs() argument
657 *conf1 = *conf2; in _eglSwapConfigs()
658 *conf2 = tmp; in _eglSwapConfigs()
764 _eglFallbackCompare(const _EGLConfig *conf1, const _EGLConfig *conf2, in _eglFallbackCompare() argument
767 return _eglCompareConfigs(conf1, conf2, in _eglFallbackCompare()