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

/frameworks/native/opengl/libagl/
H A Degl.cpp786 bool (*match)(GLint reqValue, GLint confValue);
787 static bool atLeast(GLint reqValue, GLint confValue) { argument
788 return (reqValue == EGL_DONT_CARE) || (confValue >= reqValue);
790 static bool exact(GLint reqValue, GLint confValue) { argument
791 return (reqValue == EGL_DONT_CARE) || (confValue == reqValue);
793 static bool mask(GLint reqValue, GLint confValue) { argument
794 return (confValue & reqValue) == reqValue;
796 static bool ignore(GLint reqValue, GLint confValue) { argument

Completed in 41 milliseconds