Searched refs:firstVertex (Results 1 - 25 of 31) sorted by relevance

12

/external/skia/src/gpu/batches/
H A DGrVertexBatch.cpp28 int firstVertex; local
30 void* vertices = target->makeVertexSpace(vertexStride, vertexCount, &vertexBuffer, &firstVertex);
40 firstVertex, verticesPerInstance, indicesPerInstance, instancesToDraw,
H A DGrDrawVerticesBatch.cpp110 int firstVertex; local
112 void* verts = target->makeVertexSpace(vertexStride, fVertexCount, &vertexBuffer, &firstVertex);
161 vertices.initIndexed(this->primitiveType(), vertexBuffer, indexBuffer, firstVertex,
165 vertices.init(this->primitiveType(), vertexBuffer, firstVertex, fVertexCount);
H A DGrNonAAStrokeRectBatch.cpp134 int firstVertex; variable
137 &firstVertex);
161 vertices.init(primType, vertexBuffer, firstVertex, vertexCount);
H A DGrAAHairLinePathRenderer.cpp866 int firstVertex; local
871 target->makeVertexSpace(vertexStride, vertexCount, &vertexBuffer, &firstVertex));
887 firstVertex, kLineSegNumVertices, kIdxsPerLineSeg, lineCount,
895 int firstVertex; local
903 &vertexBuffer, &firstVertex);
930 firstVertex, kQuadNumVertices, kIdxsPerQuad, quadCount,
933 firstVertex += quadCount * kQuadNumVertices;
943 firstVertex, kQuadNumVertices, kIdxsPerQuad, conicCount,
H A DGrAAConvexPathRenderer.cpp818 int firstVertex; local
821 &firstVertex);
841 firstVertex, firstIndex,
904 int firstVertex; variable
908 vertexStride, vertexCount, &vertexBuffer, &firstVertex));
932 firstVertex, firstIndex, draw.fVertexCnt, draw.fIndexCnt);
934 firstVertex += draw.fVertexCnt;
H A DGrAALinearizingConvexPathRenderer.cpp169 int firstVertex; local
171 &firstVertex);
186 info.initIndexed(kTriangles_GrPrimitiveType, vertexBuffer, indexBuffer, firstVertex,
H A DGrDefaultPathRenderer.cpp317 int firstVertex; variable
320 &vertexBuffer, &firstVertex);
367 vertices.initIndexed(primitiveType, vertexBuffer, indexBuffer, firstVertex, firstIndex,
370 vertices.init(primitiveType, vertexBuffer, firstVertex, vertexOffset);
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/NarrowPhaseCollision/
H A DbtPolyhedralContactClipping.cpp41 btVector3 firstVertex=pVtxIn[pVtxIn.size()-1];
44 ds = planeNormalWS.dot(firstVertex)+planeEqWS;
62 ppVtxOut.push_back( firstVertex.lerp(endVertex,btScalar(ds * 1.f/(ds - de))));
70 ppVtxOut.push_back(firstVertex.lerp(endVertex,btScalar(ds * 1.f/(ds - de))));
74 firstVertex = endVertex;
/external/skia/src/gpu/vk/
H A DGrVkCommandBuffer.h156 uint32_t firstVertex,
H A DGrVkCommandBuffer.cpp362 uint32_t firstVertex,
369 firstVertex,
359 draw(const GrVkGpu* gpu, uint32_t vertexCount, uint32_t instanceCount, uint32_t firstVertex, uint32_t firstInstance) const argument
/external/opencv3/modules/calib3d/src/
H A Dcirclesgrid.hpp108 int firstVertex; member in struct:Path
116 firstVertex = first;
H A Dcirclesgrid.cpp1304 bool needReverse = (bestGraphIdx == 0 && keypoints[bestPath.lastVertex].x < keypoints[bestPath.firstVertex].x)
1305 || (bestGraphIdx == 1 && keypoints[bestPath.lastVertex].y < keypoints[bestPath.firstVertex].y);
1308 std::swap(bestPath.lastVertex, bestPath.firstVertex);
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkTypeUtil.inl361 inline VkDrawIndirectCommand makeDrawIndirectCommand (deUint32 vertexCount, deUint32 instanceCount, deUint32 firstVertex, deUint32 firstInstance)
366 res.firstVertex = firstVertex;
H A DvkDeviceDriverImpl.inl450 void DeviceDriver::cmdDraw (VkCommandBuffer commandBuffer, deUint32 vertexCount, deUint32 instanceCount, deUint32 firstVertex, deUint32 firstInstance) const
452 m_vk.cmdDraw(commandBuffer, vertexCount, instanceCount, firstVertex, firstInstance);
H A DvkConcreteDeviceInterface.inl93 virtual void cmdDraw (VkCommandBuffer commandBuffer, deUint32 vertexCount, deUint32 instanceCount, deUint32 firstVertex, deUint32 firstInstance) const;
H A DvkVirtualDeviceInterface.inl93 virtual void cmdDraw (VkCommandBuffer commandBuffer, deUint32 vertexCount, deUint32 instanceCount, deUint32 firstVertex, deUint32 firstInstance) const = 0;
H A DvkNullDriverImpl.inl704 VKAPI_ATTR void VKAPI_CALL cmdDraw (VkCommandBuffer commandBuffer, deUint32 vertexCount, deUint32 instanceCount, deUint32 firstVertex, deUint32 firstInstance)
709 DE_UNREF(firstVertex);
H A DvkFunctionPointerTypes.inl110 typedef VKAPI_ATTR void (VKAPI_CALL* CmdDrawFunc) (VkCommandBuffer commandBuffer, deUint32 vertexCount, deUint32 instanceCount, deUint32 firstVertex, deUint32 firstInstance);
H A DvkStructTypes.inl1182 deUint32 firstVertex;
/external/vulkan-validation-layers/tests/
H A Dvkrenderframework.h203 uint32_t firstVertex, uint32_t firstInstance);
H A Dvkrenderframework.cpp1574 uint32_t firstVertex, uint32_t firstInstance) {
1575 vkCmdDraw(handle(), vertexCount, instanceCount, firstVertex, firstInstance); local
1573 Draw(uint32_t vertexCount, uint32_t instanceCount, uint32_t firstVertex, uint32_t firstInstance) argument
/external/deqp/modules/glshared/
H A DglsVertexArrayTests.cpp1148 void ContextArrayPack::render (Array::Primitive primitive, int firstVertex, int vertexCount, bool useVao, float coordScale, float colorScale) argument
1188 DE_ASSERT((firstVertex % 6) == 0);
1189 m_ctx.drawArrays(ContextArray::primitiveToGL(primitive), firstVertex, vertexCount - firstVertex); local
H A DglsVertexArrayTests.hpp224 virtual void render (Array::Primitive primitive, int firstVertex, int vertexCount, bool useVao, float coordScale, float colorScale);
H A DglsDrawTest.cpp1846 void render (DrawTestSpec::Primitive primitive, DrawTestSpec::DrawMethod drawMethod, int firstVertex, int vertexCount, DrawTestSpec::IndexType indexType, const void* indexOffset, int rangeStart, int rangeEnd, int instanceCount, int indirectOffset, int baseVertex, float coordScale, float colorScale, AttributeArray* indexArray);
1925 void AttributePack::render (DrawTestSpec::Primitive primitive, DrawTestSpec::DrawMethod drawMethod, int firstVertex, int vertexCount, DrawTestSpec::IndexType indexType, const void* indexOffset, int rangeStart, int rangeEnd, int instanceCount, int indirectOffset, int baseVertex, float coordScale, float colorScale, AttributeArray* indexArray) argument
1964 m_ctx.drawArrays(primitiveToGL(primitive), firstVertex, vertexCount); local
1969 m_ctx.drawArraysInstanced(primitiveToGL(primitive), firstVertex, vertexCount, instanceCount); local
2003 command.first = firstVertex;
/external/vulkan-validation-layers/loader/
H A Dtrampoline.c1822 uint32_t instanceCount, uint32_t firstVertex,
1828 disp->CmdDraw(commandBuffer, vertexCount, instanceCount, firstVertex,
1821 vkCmdDraw(VkCommandBuffer commandBuffer, uint32_t vertexCount, uint32_t instanceCount, uint32_t firstVertex, uint32_t firstInstance) argument

Completed in 325 milliseconds

12