Home | History | Annotate | Download | only in test

Lines Matching refs:reqValue

827    bool (*match)(GLint reqValue, GLint confValue);
828 static bool atLeast(GLint reqValue, GLint confValue) {
829 return (reqValue == EGL_DONT_CARE) || (confValue >= reqValue);
831 static bool exact(GLint reqValue, GLint confValue) {
832 return (reqValue == EGL_DONT_CARE) || (confValue == reqValue);
834 static bool mask(GLint reqValue, GLint confValue) {
835 return (confValue & reqValue) == reqValue;
837 static bool ignore(GLint reqValue, GLint confValue) {