Searched refs:confValue (Results 1 - 1 of 1) sorted by relevance

/frameworks/native/opengl/libagl/
H A Degl.cpp805 bool (*match)(GLint reqValue, GLint confValue);
806 static bool atLeast(GLint reqValue, GLint confValue) { argument
807 return (reqValue == EGL_DONT_CARE) || (confValue >= reqValue);
809 static bool exact(GLint reqValue, GLint confValue) { argument
810 return (reqValue == EGL_DONT_CARE) || (confValue == reqValue);
812 static bool mask(GLint reqValue, GLint confValue) { argument
813 return (confValue & reqValue) == reqValue;
815 static bool ignore(GLint /*reqValue*/, GLint /*confValue*/) {

Completed in 28 milliseconds