HomeSort by relevance Sort by last modified time
    Searched refs:reqValue (Results 1 - 2 of 2) sorted by null

  /frameworks/base/include/utils/
ResourceTypes.h     [all...]
  /frameworks/base/opengl/libagl/
egl.cpp 826 bool (*match)(GLint reqValue, GLint confValue);
827 static bool atLeast(GLint reqValue, GLint confValue) {
828 return (reqValue == EGL_DONT_CARE) || (confValue >= reqValue);
830 static bool exact(GLint reqValue, GLint confValue) {
831 return (reqValue == EGL_DONT_CARE) || (confValue == reqValue);
833 static bool mask(GLint reqValue, GLint confValue) {
834 return (confValue & reqValue) == reqValue;
    [all...]

Completed in 21 milliseconds