Searched refs:gridHeight (Results 1 - 17 of 17) sorted by relevance

/external/deqp/framework/randomshaders/
H A DrsgProgramExecutor.hpp45 ProgramExecutor (const tcu::PixelBufferAccess& dst, int gridWidth, int gridHeight);
H A DrsgProgramExecutor.cpp167 ProgramExecutor::ProgramExecutor (const tcu::PixelBufferAccess& dst, int gridWidth, int gridHeight) argument
170 , m_gridHeight (gridHeight)
/external/deqp/modules/gles3/functional/
H A Des3fFragmentOutputTests.cpp397 static void renderFloatReference (const tcu::PixelBufferAccess& dst, int gridWidth, int gridHeight, int numComponents, const float* vertices) argument
401 const float cellH = (float)dst.getHeight() / (float)(gridHeight-1);
408 const int cellY = de::clamp(deFloorFloatToInt32((float)y / cellH), 0, gridHeight-2);
428 static void renderIntReference (const tcu::PixelBufferAccess& dst, int gridWidth, int gridHeight, int numComponents, const int* vertices) argument
431 float cellH = (float)dst.getHeight() / (float)(gridHeight-1);
438 int cellY = de::clamp(deFloorFloatToInt32((float)y / cellH), 0, gridHeight-2);
554 const int gridHeight = de::clamp(minBufSize.y()/minCellSize, 1, 255)+1; local
555 const int numVertices = gridWidth*gridHeight;
556 const int numQuads = (gridWidth-1)*(gridHeight-1);
608 for (int y = 0; y < gridHeight;
[all...]
H A Des3fTextureMipmapTests.cpp316 int gridHeight = 4; local
318 int cellHeight = viewport.height / gridHeight;
355 for (int gridY = 0; gridY < gridHeight; gridY++)
362 const int curH = gridY+1 == gridHeight ? (viewport.height-curY) : cellHeight;
407 for (int gridY = 0; gridY < gridHeight; gridY++)
414 const int curH = gridY+1 == gridHeight ? (viewport.height-curY) : cellHeight;
1261 const int gridHeight = 4; local
1263 const int cellHeight = viewport.height / gridHeight;
1300 for (int gridY = 0; gridY < gridHeight; gridY++)
1307 const int curH = gridY+1 == gridHeight
1511 const int gridHeight = 4; local
2134 const int gridHeight = 4; local
[all...]
/external/deqp/external/vulkancts/modules/vulkan/tessellation/
H A DvktTessellationCommonEdgeTests.cpp259 const int gridHeight = 4; local
260 const int numVertices = (gridWidth+1)*(gridHeight+1);
261 const int numIndices = gridWidth*gridHeight * (caseDef.primitiveType == TESSPRIMITIVETYPE_TRIANGLES ? 3*2 : 4);
270 for (int i = 0; i < gridHeight+1; ++i)
274 gridPosComps.push_back(-1.0f + 2.0f * ((float)i + 0.5f) / (float)(gridHeight+1));
285 for (int i = 0; i < gridHeight; i++)
306 for (int i = 0; i < gridHeight; ++i)
/external/deqp/external/vulkancts/modules/vulkan/texture/
H A DvktTextureMipmapTests.cpp276 const int gridHeight = 4; local
278 const int cellHeight = viewportHeight / gridHeight;
299 for (int gridY = 0; gridY < gridHeight; gridY++)
306 const int curH = gridY+1 == gridHeight ? (viewportHeight-curY) : cellHeight;
348 for (int gridY = 0; gridY < gridHeight; gridY++)
355 const int curH = gridY+1 == gridHeight ? (viewportHeight-curY) : cellHeight;
781 const int gridHeight = 4; local
783 const int cellHeight = viewportHeight / gridHeight;
811 for (int gridY = 0; gridY < gridHeight; gridY++)
818 const int curH = gridY+1 == gridHeight
1000 const int gridHeight = 4; local
1519 const int gridHeight = 4; local
[all...]
/external/deqp/modules/gles2/accuracy/
H A Des2aTextureMipmapTests.cpp276 int gridHeight = 4; local
278 int cellHeight = viewport.height / gridHeight;
319 for (int gridY = 0; gridY < gridHeight; gridY++)
326 int curH = gridY+1 == gridHeight ? (viewport.height-curY) : cellHeight;
/external/deqp/modules/gles3/accuracy/
H A Des3aTextureMipmapTests.cpp268 int gridHeight = 4; local
270 int cellHeight = viewport.height / gridHeight;
311 for (int gridY = 0; gridY < gridHeight; gridY++)
318 int curH = gridY+1 == gridHeight ? (viewport.height-curY) : cellHeight;
/external/deqp/modules/gles2/functional/
H A Des2fTextureMipmapTests.cpp272 int gridHeight = 4; local
274 int cellHeight = viewport.height / gridHeight;
311 for (int gridY = 0; gridY < gridHeight; gridY++)
318 const int curH = gridY+1 == gridHeight ? (viewport.height-curY) : cellHeight;
363 for (int gridY = 0; gridY < gridHeight; gridY++)
370 const int curH = gridY+1 == gridHeight ? (viewport.height-curY) : cellHeight;
/external/deqp/modules/gles3/performance/
H A Des3pBufferDataUploadTests.cpp3873 int gridHeight;
3879 return scene.gridWidth * scene.gridHeight * scene.gridLayers * 6;
3890 for (int cellY = 0; cellY < scene.gridHeight; ++cellY)
3897 const float cellTop = (float(cellY+1) / (float)scene.gridHeight - 0.5f) * 2.0f;
3898 const float cellBottom = (float(cellY ) / (float)scene.gridHeight - 0.5f) * 2.0f;
3924 for (int ndx = 0; ndx < scene.gridLayers * scene.gridHeight * scene.gridWidth * 6; ++ndx)
4108 m_results.back().scene.gridHeight = gridSizes[gridNdx];
5494 scene.gridHeight = 93;
5573 scene.gridHeight = 40;
/external/deqp/modules/gles31/functional/
H A Des31fTessellationTests.cpp1707 const int gridHeight = 4;
1708 const int numVertices = (gridWidth+1)*(gridHeight+1);
1709 const int numIndices = gridWidth*gridHeight * (m_primitiveType == TESSPRIMITIVETYPE_TRIANGLES ? 3*2 : m_primitiveType == TESSPRIMITIVETYPE_QUADS ? 4 : -1);
1721 for (int i = 0; i < gridHeight+1; i++)
1725 gridPosComps.push_back(-1.0f + 2.0f * ((float)i + 0.5f) / (float)(gridHeight+1));
1736 for (int i = 0; i < gridHeight; i++)
1760 for (int i = 0; i < gridHeight; i++)
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 596 milliseconds