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

/external/chromium_org/third_party/angle/src/libGLESv2/
H A Dqueryconversions.cpp94 GLboolean *boolParams = NULL; local
95 boolParams = new GLboolean[numParams];
97 context->getBooleanv(pname, boolParams);
101 outParams[i] = (boolParams[i] == GL_FALSE ? static_cast<QueryT>(0) : static_cast<QueryT>(1));
104 delete [] boolParams;
H A DProgramBinary.cpp576 GLint *boolParams = reinterpret_cast<GLint*>(targetUniform->data) + mUniformIndex[location].element * 4;
580 GLint *dest = boolParams + (i * 4);
844 GLint *boolParams = (GLint*)targetUniform->data + mUniformIndex[location].element * 4;
848 params[i] = (boolParams[i] == GL_FALSE) ? static_cast<T>(0) : static_cast<T>(1);

Completed in 375 milliseconds