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

/frameworks/base/opengl/libagl/
H A Degl.cpp862 bool (*match)(GLint reqValue, GLint confValue);
863 static bool atLeast(GLint reqValue, GLint confValue) { argument
864 return (reqValue == EGL_DONT_CARE) || (confValue >= reqValue);
866 static bool exact(GLint reqValue, GLint confValue) { argument
867 return (reqValue == EGL_DONT_CARE) || (confValue == reqValue);
869 static bool mask(GLint reqValue, GLint confValue) { argument
870 return (confValue & reqValue) == reqValue;
[all...]
/frameworks/base/include/utils/
H A DResourceTypes.h1251 int reqValue = (requested->density?requested->density:160); local
1252 if (reqValue >= h) {
1256 if (l >= reqValue) {
1261 if (((2 * l) - reqValue) * h > reqValue * reqValue) {

Completed in 141 milliseconds