HomeSort by relevance Sort by last modified time
    Searched refs:reqValue (Results 1 - 3 of 3) 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 776 bool (*match)(GLint reqValue, GLint confValue);
777 static bool atLeast(GLint reqValue, GLint confValue) {
778 return (reqValue == EGL_DONT_CARE) || (confValue >= reqValue);
780 static bool exact(GLint reqValue, GLint confValue) {
781 return (reqValue == EGL_DONT_CARE) || (confValue == reqValue);
783 static bool mask(GLint reqValue, GLint confValue) {
784 return (confValue & reqValue) == reqValue;
    [all...]
  /frameworks/base/include/utils/
ResourceTypes.h     [all...]

Completed in 282 milliseconds