/external/skqp/src/gpu/ops/ |
D | GrAALinearizingConvexPathRenderer.cpp | 245 int64_t maxVertices = DEFAULT_BUFFER_SIZE; in onPrepareDraws() local 247 uint8_t* vertices = (uint8_t*) sk_malloc_throw(maxVertices * vertexStride); in onPrepareDraws() 267 if (vertexCount + currentVertices > maxVertices) { in onPrepareDraws() 268 maxVertices = SkTMax(vertexCount + currentVertices, maxVertices * 2); in onPrepareDraws() 269 if (maxVertices * vertexStride > SK_MaxS32) { in onPrepareDraws() 274 vertices = (uint8_t*) sk_realloc_throw(vertices, maxVertices * vertexStride); in onPrepareDraws()
|
/external/skia/src/gpu/ops/ |
D | GrAALinearizingConvexPathRenderer.cpp | 245 int64_t maxVertices = DEFAULT_BUFFER_SIZE; in onPrepareDraws() local 247 uint8_t* vertices = (uint8_t*) sk_malloc_throw(maxVertices * vertexStride); in onPrepareDraws() 267 if (vertexCount + currentVertices > maxVertices) { in onPrepareDraws() 268 maxVertices = SkTMax(vertexCount + currentVertices, maxVertices * 2); in onPrepareDraws() 269 if (maxVertices * vertexStride > SK_MaxS32) { in onPrepareDraws() 274 vertices = (uint8_t*) sk_realloc_throw(vertices, maxVertices * vertexStride); in onPrepareDraws()
|
/external/skqp/src/gpu/glsl/ |
D | GrGLSLVertexGeoBuilder.cpp | 70 void GrGLSLGeometryBuilder::configure(InputType inputType, OutputType outputType, int maxVertices, in configure() argument 78 this->addLayoutQualifier(SkStringPrintf("max_vertices = %i", maxVertices).c_str(), in configure()
|
D | GrGLSLVertexGeoBuilder.h | 66 void configure(InputType, OutputType, int maxVertices, int numInvocations = 1);
|
/external/skia/src/gpu/glsl/ |
D | GrGLSLVertexGeoBuilder.cpp | 70 void GrGLSLGeometryBuilder::configure(InputType inputType, OutputType outputType, int maxVertices, in configure() argument 78 this->addLayoutQualifier(SkStringPrintf("max_vertices = %i", maxVertices).c_str(), in configure()
|
D | GrGLSLVertexGeoBuilder.h | 66 void configure(InputType, OutputType, int maxVertices, int numInvocations = 1);
|
/external/skia/src/sksl/ir/ |
D | SkSLLayout.h | 179 int inputAttachmentIndex, Format format, Primitive primitive, int maxVertices, in Layout() 191 , fMaxVertices(maxVertices) in Layout()
|
/external/skqp/src/sksl/ir/ |
D | SkSLLayout.h | 179 int inputAttachmentIndex, Format format, Primitive primitive, int maxVertices, in Layout() 191 , fMaxVertices(maxVertices) in Layout()
|
/external/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | nv50_ir_driver.h | 136 unsigned maxVertices; member
|
D | nv50_ir.cpp | 1178 info->prop.gp.maxVertices = 1; in nv50_ir_init_prog_info()
|
D | nv50_ir_from_tgsi.cpp | 1221 info->prop.gp.maxVertices = prop->u[0].Data; in scanProperty() 3614 if (info->prop.gp.maxVertices == 0) in handleInstruction()
|
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/ |
D | vktSparseResourcesShaderIntrinsicsSampled.cpp | 170 const deInt32 maxVertices = 3u * numLayers; in initPrograms() local 177 << "layout(triangle_strip, max_vertices = " << static_cast<deInt32>(maxVertices) << ") out;\n" in initPrograms()
|
/external/deqp/modules/gles31/functional/ |
D | es31fGeometryShaderTests.cpp | 1592 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/skqp/src/sksl/ |
D | SkSLParser.cpp | 760 int maxVertices = -1; in layout() local 768 inputAttachmentIndex, format, primitive, maxVertices, invocations, when, in layout() 880 maxVertices = this->layoutInt(); in layout() 912 format, primitive, maxVertices, invocations, when, key, ctype); in layout()
|
/external/skia/src/sksl/ |
D | SkSLParser.cpp | 761 int maxVertices = -1; in layout() local 769 inputAttachmentIndex, format, primitive, maxVertices, invocations, when, in layout() 881 maxVertices = this->layoutInt(); in layout() 913 format, primitive, maxVertices, invocations, when, key, ctype); in layout()
|
/external/mesa3d/src/gallium/drivers/nouveau/nv50/ |
D | nv50_program.c | 420 prog->gp.vert_count = CLAMP(info->prop.gp.maxVertices, 1, 1024); in nv50_program_translate()
|
/external/deqp/external/vulkancts/modules/vulkan/geometry/ |
D | vktGeometryLayeredRenderingTests.cpp | 737 …const int maxVertices = (params.testType == TEST_TYPE_DIFFERENT_CONTENT) ? (n… in initPrograms() local 755 src << "layout(triangle_strip, max_vertices = " << maxVertices << ") out;\n" in initPrograms()
|
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
D | nvc0_program.c | 405 gp->hdr[4] = CLAMP(info->prop.gp.maxVertices, 1, 1024); in nvc0_gp_gen_header()
|