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

/frameworks/base/opengl/libagl/
H A Degl.cpp776 bool (*match)(GLint reqValue, GLint confValue);
777 static bool atLeast(GLint reqValue, GLint confValue) { argument
778 return (reqValue == EGL_DONT_CARE) || (confValue >= reqValue);
780 static bool exact(GLint reqValue, GLint confValue) { argument
781 return (reqValue == EGL_DONT_CARE) || (confValue == reqValue);
783 static bool mask(GLint reqValue, GLint confValue) { argument
784 return (confValue & reqValue) == reqValue;
786 ignore(GLint reqValue, GLint confValue) argument
[all...]
/frameworks/base/include/utils/
H A DResourceTypes.h1350 int reqValue = (requested->density?requested->density:160); local
1351 if (reqValue >= h) {
1355 if (l >= reqValue) {
1360 if (((2 * l) - reqValue) * h > reqValue * reqValue) {

Completed in 3531 milliseconds