Home | History | Annotate | Download | only in libagl

Lines Matching refs:reqValue

771     bool (*match)(GLint reqValue, GLint confValue);
772 static bool atLeast(GLint reqValue, GLint confValue) {
773 return (reqValue == EGL_DONT_CARE) || (confValue >= reqValue);
775 static bool exact(GLint reqValue, GLint confValue) {
776 return (reqValue == EGL_DONT_CARE) || (confValue == reqValue);
778 static bool mask(GLint reqValue, GLint confValue) {
779 return (confValue & reqValue) == reqValue;
781 static bool ignore(GLint reqValue, GLint confValue) {