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

/external/skia/src/gpu/glsl/
H A DGrGLSLGeometryShaderBuilder.cpp41 void GrGLSLGeometryBuilder::configure(InputType inputType, OutputType outputType, int maxVertices, argument
46 maxVertices *= numInvocations;
53 this->addLayoutQualifier(SkStringPrintf("max_vertices = %i", maxVertices).c_str(),
/external/skia/src/sksl/ir/
H A DSkSLLayout.h94 int maxVertices, int invocations)
108 , fMaxVertices(maxVertices)
91 Layout(int location, int offset, int binding, int index, int set, int builtin, int inputAttachmentIndex, bool originUpperLeft, bool overrideCoverage, bool blendSupportAllEquations, Format format, bool pushconstant, Primitive primitive, int maxVertices, int invocations) argument
/external/skia/src/gpu/ops/
H A DGrAALinearizingConvexPathRenderer.cpp237 int maxVertices = DEFAULT_BUFFER_SIZE; variable
239 uint8_t* vertices = (uint8_t*) sk_malloc_throw(maxVertices * vertexStride);
261 if (vertexCount + currentVertices > maxVertices) {
262 maxVertices = SkTMax(vertexCount + currentVertices, maxVertices * 2);
263 vertices = (uint8_t*) sk_realloc_throw(vertices, maxVertices * vertexStride);
H A DGrDefaultPathRenderer.cpp164 int maxVertices = 0; variable
172 maxVertices += GrPathUtils::worstCasePointCount(args.fPath, &contourCount,
178 if (maxVertices == 0 || maxVertices > ((int)SK_MaxU16 + 1)) {
179 //SkDebugf("Cannot render path (%d)\n", maxVertices);
188 maxIndices = 2 * maxVertices;
195 maxIndices = 3 * maxVertices;
206 void* verts = target->makeVertexSpace(vertexStride, maxVertices,
249 SkASSERT(vertexOffset <= maxVertices && indexOffset <= maxIndices);
263 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::__anon14572::__anon14575
/external/deqp/external/vulkancts/modules/vulkan/geometry/
H A DvktGeometryLayeredRenderingTests.cpp658 const int maxVertices = (params.testType == TEST_TYPE_DIFFERENT_CONTENT) ? (numLayers + 1) * numLayers : local
671 src << "layout(triangle_strip, max_vertices = " << maxVertices << ") out;\n"
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
H A DvktSparseResourcesShaderIntrinsicsSampled.cpp296 const deInt32 maxVertices = 3u * numLayers; local
303 << "layout(triangle_strip, max_vertices = " << static_cast<deInt32>(maxVertices) << ") out;\n"
/external/skia/src/sksl/
H A DSkSLParser.cpp554 int maxVertices = -1; local
561 pushConstant, primitive, maxVertices, invocations);
626 maxVertices = this->layoutInt();
649 pushConstant, primitive, maxVertices, invocations);
/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 240 milliseconds