Lines Matching refs:conf1
591 _eglCompareConfigs(const _EGLConfig *conf1, const _EGLConfig *conf2, in _eglCompareConfigs() argument
605 if (conf1 == conf2) in _eglCompareConfigs()
611 val1 = conf1->ConfigCaveat - conf2->ConfigCaveat; in _eglCompareConfigs()
617 val1 = conf1->ColorBufferType - conf2->ColorBufferType; in _eglCompareConfigs()
623 if (conf1->ColorBufferType == EGL_RGB_BUFFER) { in _eglCompareConfigs()
625 val1 += conf1->RedSize; in _eglCompareConfigs()
629 val1 += conf1->GreenSize; in _eglCompareConfigs()
633 val1 += conf1->BlueSize; in _eglCompareConfigs()
639 val1 += conf1->LuminanceSize; in _eglCompareConfigs()
644 val1 += conf1->AlphaSize; in _eglCompareConfigs()
658 val1 = _eglGetConfigKey(conf1, compare_attribs[i]); in _eglCompareConfigs()
666 return (compare_id) ? (conf1->ConfigID - conf2->ConfigID) : 0; in _eglCompareConfigs()
671 void _eglSwapConfigs(const _EGLConfig **conf1, const _EGLConfig **conf2) in _eglSwapConfigs() argument
673 const _EGLConfig *tmp = *conf1; in _eglSwapConfigs()
674 *conf1 = *conf2; in _eglSwapConfigs()
781 _eglFallbackCompare(const _EGLConfig *conf1, const _EGLConfig *conf2, in _eglFallbackCompare() argument
784 return _eglCompareConfigs(conf1, conf2, in _eglFallbackCompare()