Home | History | Annotate | Download | only in src

Lines Matching refs:reqValue

785     bool (*match)(GLint reqValue, GLint confValue);
786 static bool atLeast(GLint reqValue, GLint confValue) {
787 return (reqValue == EGL_DONT_CARE) || (confValue >= reqValue);
789 static bool exact(GLint reqValue, GLint confValue) {
790 return (reqValue == EGL_DONT_CARE) || (confValue == reqValue);
792 static bool mask(GLint reqValue, GLint confValue) {
793 return (confValue & reqValue) == reqValue;
795 static bool ignore(GLint reqValue, GLint confValue) {