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

  /external/mesa3d/test/
egl.cpp 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;
    [all...]
  /frameworks/base/opengl/libagl/
egl.cpp 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;
    [all...]
  /frameworks/base/opengl/libagl2/src/
egl.cpp 785 bool (*match)(GLint reqValue, GLint confValue);
786 static bool atLeast(GLint reqValue, GLint confValue) {
787 return (reqValue == EGL_DONT_CARE) || (confValue >= reqValue);
789 static bool exact(GLint reqValue, GLint confValue) {
790 return (reqValue == EGL_DONT_CARE) || (confValue == reqValue);
792 static bool mask(GLint reqValue, GLint confValue) {
793 return (confValue & reqValue) == reqValue;
    [all...]
  /frameworks/base/include/utils/
ResourceTypes.h     [all...]

Completed in 248 milliseconds