HomeSort by relevance Sort by last modified time
    Searched refs:maxVertices (Results 1 - 15 of 15) sorted by null

  /external/skia/src/gpu/glsl/
GrGLSLGeometryShaderBuilder.h 33 void configure(InputType, OutputType, int maxVertices, int numInvocations = 1);
GrGLSLGeometryShaderBuilder.cpp 41 void GrGLSLGeometryBuilder::configure(InputType inputType, OutputType outputType, int maxVertices,
46 maxVertices *= numInvocations;
53 this->addLayoutQualifier(SkStringPrintf("max_vertices = %i", maxVertices).c_str(),
  /frameworks/base/libs/hwui/
Patch.cpp 57 uint32_t maxVertices = ((xCount + 1) * (yCount + 1) - emptyQuads) * 4;
58 if (maxVertices == 0) return;
60 vertices.reset(new TextureVertex[maxVertices]);
140 if (verticesCount != maxVertices) {
  /external/skia/src/gpu/ops/
GrDefaultPathRenderer.cpp 164 int maxVertices = 0;
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 - vertexOffset), (size_t)vertexStride)
    [all...]
GrAALinearizingConvexPathRenderer.cpp 237 int maxVertices = DEFAULT_BUFFER_SIZE;
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);
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_driver.h 150 unsigned maxVertices;
nv50_ir.cpp 1077 info->prop.gp.maxVertices = 1;
nv50_ir_from_sm4.cpp 959 info.prop.gp.maxVertices = dcl.num;
    [all...]
nv50_ir_from_tgsi.cpp 731 info->prop.gp.maxVertices = prop->u[0].Data;
    [all...]
  /external/skia/src/sksl/ir/
SkSLLayout.h 94 int maxVertices, int invocations)
108 , fMaxVertices(maxVertices)
  /external/skia/src/sksl/
SkSLParser.cpp 554 int maxVertices = -1;
561 pushConstant, primitive, maxVertices, invocations);
626 maxVertices = this->layoutInt();
649 pushConstant, primitive, maxVertices, invocations);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/geometry/
vktGeometryLayeredRenderingTests.cpp 658 const int maxVertices = (params.testType == TEST_TYPE_DIFFERENT_CONTENT) ? (numLayers + 1) * numLayers :
671 src << "layout(triangle_strip, max_vertices = " << maxVertices << ") out;\n"
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesShaderIntrinsicsSampled.cpp 296 const deInt32 maxVertices = 3u * numLayers;
303 << "layout(triangle_strip, max_vertices = " << static_cast<deInt32>(maxVertices) << ") out;\n"
    [all...]
  /external/deqp/modules/gles31/functional/
es31fGeometryShaderTests.cpp     [all...]
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_program.c 415 gp->hdr[4] = info->prop.gp.maxVertices & 0x1ff;

Completed in 2486 milliseconds