Home
last modified time | relevance | path

Searched refs:minValues (Results 1 – 4 of 4) sorted by relevance

/external/deqp/modules/gles2/functional/
Des2fTextureStateQueryTests.cpp316 …const GLenum minValues[] = {GL_NEAREST, GL_LINEAR, GL_NEAREST_MIPMAP_NEAREST, GL_NEAREST_MIPMAP_LI… in testTexture() local
321 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(minValues); ++ndx) in testTexture()
323 glTexParameteri(m_textureTarget, GL_TEXTURE_MIN_FILTER, minValues[ndx]); in testTexture()
326 m_verifier->verifyInteger(m_testCtx, m_textureTarget, GL_TEXTURE_MIN_FILTER, minValues[ndx]); in testTexture()
332 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(minValues); ++ndx) in testTexture()
334 glTexParameterf(m_textureTarget, GL_TEXTURE_MIN_FILTER, (GLfloat)minValues[ndx]); in testTexture()
337 m_verifier->verifyInteger(m_testCtx, m_textureTarget, GL_TEXTURE_MIN_FILTER, minValues[ndx]); in testTexture()
/external/perfetto/ui/src/tracks/counter/
Dfrontend.ts127 assertTrue(data.timestamps.length === data.minValues.length);
134 let minValues = data.minValues;
141 minValues = data.totalDeltas;
202 const minY = calculateY(minValues[i]);
Dcontroller.ts128 minValues: new Float64Array(numRows),
147 data.minValues[i] = it.row.minValue;
Dcommon.ts28 minValues: Float64Array; property