/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/video/spherical/ |
D | ProjectionDecoder.java | 65 ArrayList<Mesh> meshes = null; in decode() local 67 meshes = isProj(input) ? parseProj(input) : parseMshp(input); in decode() 71 if (meshes == null) { in decode() 74 switch (meshes.size()) { in decode() 76 return new Projection(meshes.get(0), stereoMode); in decode() 78 return new Projection(meshes.get(0), meshes.get(1), stereoMode); in decode() 141 ArrayList<Mesh> meshes = new ArrayList<>(); in parseRawMshpData() local 155 meshes.add(mesh); in parseRawMshpData() 160 return meshes; in parseRawMshpData()
|
/external/skqp/src/gpu/ |
D | GrGpuCommandBuffer.cpp | 37 const GrMesh meshes[], int meshCount, const SkRect& bounds) { in draw() argument 41 SkASSERT(!GrPrimTypeRequiresGeometryShaderSupport(meshes[i].primitiveType()) || in draw() 43 SkASSERT(primProc.hasVertexAttributes() == meshes[i].hasVertexData()); in draw() 44 SkASSERT(primProc.hasInstanceAttributes() == meshes[i].isInstanced()); in draw() 94 this->onDraw(primProc, pipeline, fixedDynamicState, dynamicStateArrays, meshes, meshCount, in draw()
|
D | GrOpFlushState.cpp | 103 const GrMesh meshes[], int meshCnt) { in draw() argument 124 draw.fMeshes = meshes; in draw()
|
/external/skqp/src/gpu/ccpr/ |
D | GrCCCoverageProcessor.cpp | 233 const SkIRect scissorRects[], const GrMesh meshes[], int meshCount, in draw() argument 238 cmdBuff->draw(*this, pipeline, nullptr, &dynamicStateArrays, meshes, meshCount, drawBounds); in draw() 244 cmdBuff->draw(cornerProc, pipeline, nullptr, &dynamicStateArrays, meshes, meshCount, in draw()
|
/external/skqp/tests/ |
D | GrPipelineDynamicStateTest.cpp | 140 SkSTArray<kNumMeshes, GrMesh> meshes; in onExecute() local 142 GrMesh& mesh = meshes.emplace_back(GrPrimitiveType::kTriangleStrip); in onExecute() 149 &dynamicState, meshes.begin(), 4, in onExecute()
|
/external/skia/tests/ |
D | GrPipelineDynamicStateTest.cpp | 155 SkSTArray<kNumMeshes, GrSimpleMesh> meshes; in onExecute() local 157 GrSimpleMesh& mesh = meshes.push_back(); in onExecute() 176 flushState->drawMesh(meshes[i]); in onExecute()
|
/external/skqp/src/gpu/mtl/ |
D | GrMtlGpuCommandBuffer.mm | 111 const GrMesh meshes[], 116 if (meshes[i].primitiveType() == GrPrimitiveType::kPoints) { 153 const GrMesh meshes[], 164 this->prepareDrawState(primProc, pipeline, fixedDynamicState, meshes, meshCount)); 178 const GrMesh& mesh = meshes[i];
|
D | GrMtlGpuCommandBuffer.h | 76 const GrMesh meshes[],
|
/external/skia/src/gpu/ops/ |
D | GrMeshDrawOp.h | 158 const GrSimpleMesh meshes[], in recordDraw() argument 161 this->recordDraw(gp, meshes, meshCnt, nullptr, primitiveType); in recordDraw()
|
D | GrAAConvexPathRenderer.cpp | 850 GrSimpleMesh* meshes = target->allocMeshes(draws.count()); in onPrepareDraws() local 853 meshes[j].setIndexed(indexBuffer, draw.fIndexCnt, firstIndex, 0, in onPrepareDraws() 860 fDraws.push_back({ meshes, draws.count() }); in onPrepareDraws()
|
D | GrDefaultPathRenderer.cpp | 71 SkTDArray<GrSimpleMesh*>* meshes) in PathGeoBuilder() argument 78 , fMeshes(meshes) { in PathGeoBuilder()
|
/external/skqp/src/gpu/ops/ |
D | GrAAConvexPathRenderer.cpp | 788 GrMesh* meshes = target->allocMeshes(draws.count()); in onPrepareDraws() local 791 meshes[j].setPrimitiveType(GrPrimitiveType::kTriangles); in onPrepareDraws() 792 meshes[j].setIndexed(indexBuffer, draw.fIndexCnt, firstIndex, 0, in onPrepareDraws() 794 meshes[j].setVertexData(vertexBuffer, firstVertex); in onPrepareDraws() 798 target->draw(quadProcessor, pipe.fPipeline, pipe.fFixedDynamicState, nullptr, meshes, in onPrepareDraws()
|
D | GrTextureOp.cpp | 397 GrMesh* meshes = target->allocMeshes(numProxies); in onPrepareDraws() local 425 if (!GrQuadPerEdgeAA::ConfigureMeshIndices(target, &(meshes[m]), vertexSpec, in onPrepareDraws() 430 meshes[m].setVertexData(vbuffer, vertexOffsetInBuffer); in onPrepareDraws() 444 target->draw(std::move(gp), pipeline, fixedDynamicState, dynamicStateArrays, meshes, in onPrepareDraws()
|
/external/skia/src/gpu/ |
D | GrOpFlushState.cpp | 147 const GrSimpleMesh meshes[], in recordDraw() argument 162 draw.fMeshes = meshes; in recordDraw()
|
/external/skqp/src/gpu/vk/ |
D | GrVkGpuCommandBuffer.cpp | 708 const GrMesh meshes[], in onDraw() argument 760 GrPrimitiveType primitiveType = meshes[0].primitiveType(); in onDraw() 772 const GrMesh& mesh = meshes[i]; in onDraw()
|
/external/eigen/unsupported/Eigen/ |
D | BVH | 51 * - Determine how far two meshes are from colliding (this is also a cartesian product query)
|
/external/skqp/src/gpu/gl/ |
D | GrGLGpu.cpp | 2528 const GrMesh meshes[], in draw() argument 2534 if (meshes[i].primitiveType() == GrPrimitiveType::kPoints) { in draw() 2567 GrIsPrimTypeLines(meshes[m].primitiveType()) && in draw() 2572 meshes[m].sendToGpu(this); in draw() 2573 fLastPrimitiveType = meshes[m].primitiveType(); in draw()
|
/external/rust/crates/plotters/ |
D | README.md | 406 For example, you can define the label areas, meshes, and put a data series onto the drawing area wi…
|
/external/kotlinx.coroutines/benchmarks/src/jmh/resources/ |
D | words.shakespeare.txt.gz | 1a
2A
3Aaron
4AARON
5abaissiez
6abandon
7abandoned
8abase
9Abase
10 ... |
D | ospd.txt.gz |
|
/external/rust/crates/plotters/plotters-doc-data/ |
D | evcxr-jupyter-integration.ipynb | 4924 …`Plotters` chart specific APIs to draw a chart, including, labels, axis, meshes, etc. To draw a ch… 4985 …"We can also make `Plotters` draws common components for us, such as, meshes, axis, legend. In thi…
|
/external/icu/icu4j/main/shared/data/ |
D | Transliterator_Han_Latin_Definition.txt | 1321 䍟 < a\-kind\-of\-fish\-net\-with\-fine\-meshes; 36840 䍟 > a\-kind\-of\-fish\-net\-with\-fine\-meshes;
|
/external/one-true-awk/testdir/ |
D | funstack.in | 1360 …nted for constructing cubic splines, periodic or nonperiodic, on uniform meshes. Arcs of two cubic…
|
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/ |
D | internal_raw_IPA-old.txt | 126795 meshes %13165 mˈɛʃəz
|
D | internal_raw_IPA.txt | 106904 meshes %27767 mˈɛʃəz
|