HomeSort by relevance Sort by last modified time
    Searched refs:firstVertex (Results 1 - 25 of 41) sorted by null

1 2

  /external/skia/src/gpu/batches/
GrVertexBatch.cpp 28 int firstVertex;
30 void* vertices = target->makeVertexSpace(vertexStride, vertexCount, &vertexBuffer, &firstVertex);
40 firstVertex, verticesPerInstance, indicesPerInstance, instancesToDraw,
GrDrawVerticesBatch.cpp 110 int firstVertex;
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);
GrNonAAStrokeRectBatch.cpp 134 int firstVertex;
137 &firstVertex);
161 vertices.init(primType, vertexBuffer, firstVertex, vertexCount);
GrAAHairLinePathRenderer.cpp 866 int firstVertex;
871 target->makeVertexSpace(vertexStride, vertexCount, &vertexBuffer, &firstVertex));
887 firstVertex, kLineSegNumVertices, kIdxsPerLineSeg, lineCount,
895 int firstVertex;
    [all...]
GrAAConvexPathRenderer.cpp 818 int firstVertex;
821 &firstVertex);
841 firstVertex, firstIndex,
    [all...]
GrAALinearizingConvexPathRenderer.cpp 169 int firstVertex;
171 &firstVertex);
186 info.initIndexed(kTriangles_GrPrimitiveType, vertexBuffer, indexBuffer, firstVertex,
GrDefaultPathRenderer.cpp 317 int firstVertex;
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/
btPolyhedralContactClipping.cpp 41 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/
GrVkCommandBuffer.h 156 uint32_t firstVertex,
GrVkCommandBuffer.cpp 362 uint32_t firstVertex,
369 firstVertex,
  /external/opencv3/modules/calib3d/src/
circlesgrid.hpp 108 int firstVertex;
116 firstVertex = first;
circlesgrid.cpp     [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkTypeUtil.inl 361 inline VkDrawIndirectCommand makeDrawIndirectCommand (deUint32 vertexCount, deUint32 instanceCount, deUint32 firstVertex, deUint32 firstInstance)
366 res.firstVertex = firstVertex;
vkDeviceDriverImpl.inl 450 void DeviceDriver::cmdDraw (VkCommandBuffer commandBuffer, deUint32 vertexCount, deUint32 instanceCount, deUint32 firstVertex, deUint32 firstInstance) const
452 m_vk.cmdDraw(commandBuffer, vertexCount, instanceCount, firstVertex, firstInstance);
vkConcreteDeviceInterface.inl 93 virtual void cmdDraw (VkCommandBuffer commandBuffer, deUint32 vertexCount, deUint32 instanceCount, deUint32 firstVertex, deUint32 firstInstance) const;
vkVirtualDeviceInterface.inl 93 virtual void cmdDraw (VkCommandBuffer commandBuffer, deUint32 vertexCount, deUint32 instanceCount, deUint32 firstVertex, deUint32 firstInstance) const = 0;
vkNullDriverImpl.inl 704 VKAPI_ATTR void VKAPI_CALL cmdDraw (VkCommandBuffer commandBuffer, deUint32 vertexCount, deUint32 instanceCount, deUint32 firstVertex, deUint32 firstInstance)
709 DE_UNREF(firstVertex);
    [all...]
vkFunctionPointerTypes.inl 110 typedef VKAPI_ATTR void (VKAPI_CALL* CmdDrawFunc) (VkCommandBuffer commandBuffer, deUint32 vertexCount, deUint32 instanceCount, deUint32 firstVertex, deUint32 firstInstance);
  /external/vulkan-validation-layers/tests/
vkrenderframework.h 203 uint32_t firstVertex, uint32_t firstInstance);
vkrenderframework.cpp     [all...]
  /external/deqp/modules/glshared/
glsVertexArrayTests.cpp 1148 void ContextArrayPack::render (Array::Primitive primitive, int firstVertex, int vertexCount, bool useVao, float coordScale, float colorScale)
1188 DE_ASSERT((firstVertex % 6) == 0);
1189 m_ctx.drawArrays(ContextArray::primitiveToGL(primitive), firstVertex, vertexCount - firstVertex)
    [all...]
glsVertexArrayTests.hpp 224 virtual void render (Array::Primitive primitive, int firstVertex, int vertexCount, bool useVao, float coordScale, float colorScale);
glsDrawTest.cpp     [all...]
  /frameworks/native/vulkan/libvulkan/
api_gen.cpp 386 VKAPI_ATTR void CmdDraw(VkCommandBuffer commandBuffer, uint32_t vertexCount, uint32_t instanceCount, uint32_t firstVertex, uint32_t firstInstance);
    [all...]
  /frameworks/native/vulkan/nulldrv/
null_driver_gen.h 137 VKAPI_ATTR void CmdDraw(VkCommandBuffer commandBuffer, uint32_t vertexCount, uint32_t instanceCount, uint32_t firstVertex, uint32_t firstInstance);

Completed in 3950 milliseconds

1 2