Lines Matching refs:conf1
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()
606 if (conf1->ColorBufferType == EGL_RGB_BUFFER) { in _eglCompareConfigs()
608 val1 += conf1->RedSize; in _eglCompareConfigs()
612 val1 += conf1->GreenSize; in _eglCompareConfigs()
616 val1 += conf1->BlueSize; in _eglCompareConfigs()
622 val1 += conf1->LuminanceSize; in _eglCompareConfigs()
627 val1 += conf1->AlphaSize; in _eglCompareConfigs()
641 val1 = _eglGetConfigKey(conf1, 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
656 const _EGLConfig *tmp = *conf1; in _eglSwapConfigs()
657 *conf1 = *conf2; in _eglSwapConfigs()
764 _eglFallbackCompare(const _EGLConfig *conf1, const _EGLConfig *conf2, in _eglFallbackCompare() argument
767 return _eglCompareConfigs(conf1, conf2, in _eglFallbackCompare()