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

  /external/skia/src/gpu/ccpr/
GrCCPRCubicProcessor.cpp 269 int maxVertices = this->emitHullGeometry(g, emitVertexFn, "bezierpts", 4, "sk_InvocationID",
274 maxVertices, 4);
GrCCPRQuadraticProcessor.cpp 138 int maxVertices = this->emitEdgeGeometry(g, emitVertexFn, "left", "right",
142 GrGLSLGeometryBuilder::OutputType::kTriangleStrip, maxVertices, 1);
  /external/skia/src/gpu/ops/
GrAALinearizingConvexPathRenderer.cpp 247 int maxVertices = DEFAULT_BUFFER_SIZE;
249 uint8_t* vertices = (uint8_t*) sk_malloc_throw(maxVertices * vertexStride);
271 if (vertexCount + currentVertices > maxVertices) {
272 maxVertices = SkTMax(vertexCount + currentVertices, maxVertices * 2);
273 vertices = (uint8_t*) sk_realloc_throw(vertices, maxVertices * vertexStride);
  /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/deqp/external/vulkancts/modules/vulkan/geometry/
vktGeometryLayeredRenderingTests.cpp 659 const int maxVertices = (params.testType == TEST_TYPE_DIFFERENT_CONTENT) ? (numLayers + 1) * numLayers :
672 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/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_driver.h 139 unsigned maxVertices;
  /external/skia/src/sksl/
SkSLParser.cpp 661 int maxVertices = -1;
669 pushConstant, primitive, maxVertices, invocations, when, key);
734 maxVertices = this->layoutInt();
762 pushConstant, primitive, maxVertices, invocations, when, key);
    [all...]
  /external/deqp/modules/gles31/functional/
es31fGeometryShaderTests.cpp     [all...]

Completed in 200 milliseconds