Home
last modified time | relevance | path

Searched refs:maxVertices (Results 1 – 15 of 15) sorted by relevance

/external/skia/src/gpu/glsl/
DGrGLSLGeometryShaderBuilder.cpp41 void GrGLSLGeometryBuilder::configure(InputType inputType, OutputType outputType, int maxVertices, in configure() argument
49 this->addLayoutQualifier(SkStringPrintf("max_vertices = %i", maxVertices).c_str(), in configure()
DGrGLSLGeometryShaderBuilder.h33 void configure(InputType, OutputType, int maxVertices, int numInvocations = 1);
/external/skia/src/gpu/ops/
DGrAALinearizingConvexPathRenderer.cpp247 int maxVertices = DEFAULT_BUFFER_SIZE; in onPrepareDraws() local
249 uint8_t* vertices = (uint8_t*) sk_malloc_throw(maxVertices * vertexStride); in onPrepareDraws()
271 if (vertexCount + currentVertices > maxVertices) { in onPrepareDraws()
272 maxVertices = SkTMax(vertexCount + currentVertices, maxVertices * 2); in onPrepareDraws()
273 vertices = (uint8_t*) sk_realloc_throw(vertices, maxVertices * vertexStride); in onPrepareDraws()
/external/skia/src/gpu/ccpr/
DGrCCPRQuadraticProcessor.cpp138 int maxVertices = this->emitEdgeGeometry(g, emitVertexFn, "left", "right", in emitQuadraticGeometry() local
142 GrGLSLGeometryBuilder::OutputType::kTriangleStrip, maxVertices, 1); in emitQuadraticGeometry()
DGrCCPRCubicProcessor.cpp269 int maxVertices = this->emitHullGeometry(g, emitVertexFn, "bezierpts", 4, "sk_InvocationID", in emitCubicGeometry() local
274 maxVertices, 4); in emitCubicGeometry()
/external/skia/src/sksl/ir/
DSkSLLayout.h103 int maxVertices, int invocations, String when, Key key) in Layout()
117 , fMaxVertices(maxVertices) in Layout()
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
Dnv50_ir_driver.h139 unsigned maxVertices; member
Dnv50_ir.cpp1180 info->prop.gp.maxVertices = 1; in nv50_ir_init_prog_info()
Dnv50_ir_from_tgsi.cpp1118 info->prop.gp.maxVertices = prop->u[0].Data; in scanProperty()
3406 if (info->prop.gp.maxVertices == 0) in handleInstruction()
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
DvktSparseResourcesShaderIntrinsicsSampled.cpp296 const deInt32 maxVertices = 3u * numLayers; in initPrograms() local
303 << "layout(triangle_strip, max_vertices = " << static_cast<deInt32>(maxVertices) << ") out;\n" in initPrograms()
/external/skia/src/sksl/
DSkSLParser.cpp661 int maxVertices = -1; in layout() local
669 pushConstant, primitive, maxVertices, invocations, when, key); in layout()
734 maxVertices = this->layoutInt(); in layout()
762 pushConstant, primitive, maxVertices, invocations, when, key); in layout()
/external/deqp/external/vulkancts/modules/vulkan/geometry/
DvktGeometryLayeredRenderingTests.cpp659 …const int maxVertices = (params.testType == TEST_TYPE_DIFFERENT_CONTENT) ? (numLayers + 1… in initPrograms() local
672 src << "layout(triangle_strip, max_vertices = " << maxVertices << ") out;\n" in initPrograms()
/external/deqp/modules/gles31/functional/
Des31fGeometryShaderTests.cpp1592 const int maxVertices = (int)getNumVertices(numInvocations, testCase); in genGeometrySource() local
1598 "layout(triangle_strip, max_vertices = " << maxVertices << ") out;\n" in genGeometrySource()
2491 glw::GLint maxVertices = 0; in init() local
2498 …ntext.getRenderContext().getFunctions().getIntegerv(GL_MAX_GEOMETRY_OUTPUT_VERTICES, &maxVertices); in init()
2501 …() << tcu::TestLog::Message << "GL_MAX_GEOMETRY_OUTPUT_VERTICES = " << maxVertices << tcu::TestLog… in init()
2509 m_spec.pattern[0] = de::min(maxVertices, maxComponents / componentsPerVertex); in init()
2520 if (testVertices > maxVertices) in init()
3084 …const int maxVertices = (m_test == TEST_DIFFERENT_LAYERS) ? ((2 + m_numLayers-1) * m_numLayers)… in genGeometrySource() local
3099 buf << "layout(triangle_strip, max_vertices = " << maxVertices << ") out;\n" in genGeometrySource()
3755 glw::GLint maxVertices = 0; in init() local
[all …]
/external/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv50_program.c415 prog->gp.vert_count = CLAMP(info->prop.gp.maxVertices, 1, 1024); in nv50_program_translate()
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dnvc0_program.c405 gp->hdr[4] = CLAMP(info->prop.gp.maxVertices, 1, 1024); in nvc0_gp_gen_header()