Searched defs:maxVertices (Results 1 - 4 of 4) sorted by relevance

/external/skia/src/gpu/batches/
H A DGrAALinearizingConvexPathRenderer.cpp216 int maxVertices = DEFAULT_BUFFER_SIZE; variable
218 uint8_t* vertices = (uint8_t*) sk_malloc_throw(maxVertices * vertexStride);
239 if (vertexCount + currentVertices > maxVertices) {
240 maxVertices = SkTMax(vertexCount + currentVertices, maxVertices * 2);
241 vertices = (uint8_t*) sk_realloc_throw(vertices, maxVertices * vertexStride);
H A DGrDefaultPathRenderer.cpp277 int maxVertices = 0; variable
285 maxVertices += GrPathUtils::worstCasePointCount(args.fPath, &contourCount,
291 if (maxVertices == 0 || maxVertices > ((int)SK_MaxU16 + 1)) {
292 //SkDebugf("Cannot render path (%d)\n", maxVertices);
301 maxIndices = 2 * maxVertices;
308 maxIndices = 3 * maxVertices;
319 void* verts = target->makeVertexSpace(vertexStride, maxVertices,
362 SkASSERT(vertexOffset <= maxVertices && indexOffset <= maxIndices);
376 target->putBackVertices((size_t)(maxVertices
[all...]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_driver.h150 unsigned maxVertices; member in struct:nv50_ir_prog_info::__anon13572::__anon13575
/external/deqp/modules/gles31/functional/
H A Des31fGeometryShaderTests.cpp1592 const int maxVertices = (int)getNumVertices(numInvocations, testCase); local
1598 "layout(triangle_strip, max_vertices = " << maxVertices << ") out;\n"
2491 glw::GLint maxVertices = 0; local
2498 m_context.getRenderContext().getFunctions().getIntegerv(GL_MAX_GEOMETRY_OUTPUT_VERTICES, &maxVertices);
2501 m_testCtx.getLog() << tcu::TestLog::Message << "GL_MAX_GEOMETRY_OUTPUT_VERTICES = " << maxVertices << tcu::TestLog::EndMessage;
2509 m_spec.pattern[0] = de::min(maxVertices, maxComponents / componentsPerVertex);
2520 if (testVertices > maxVertices)
3084 const int maxVertices = (m_test == TEST_DIFFERENT_LAYERS) ? ((2 + m_numLayers-1) * m_numLayers) : local
3099 buf << "layout(triangle_strip, max_vertices = " << maxVertices << ") out;\n" local
3755 glw::GLint maxVertices
[all...]

Completed in 507 milliseconds