Lines Matching full:confvalue
776 bool (*match)(GLint reqValue, GLint confValue);
777 static bool atLeast(GLint reqValue, GLint confValue) {
778 return (reqValue == EGL_DONT_CARE) || (confValue >= reqValue);
780 static bool exact(GLint reqValue, GLint confValue) {
781 return (reqValue == EGL_DONT_CARE) || (confValue == reqValue);
783 static bool mask(GLint reqValue, GLint confValue) {
784 return (confValue & reqValue) == reqValue;
786 static bool ignore(GLint reqValue, GLint confValue) {