Lines Matching defs:vertices
509 std::vector<PositionColor> vertices;
532 vertices.push_back(PositionColor(Vec4(loc.x(), loc.y() - y1, cd.depth, 1.0f), cd.color));
533 vertices.push_back(PositionColor(Vec4(loc.x() - x1, loc.y() + y2, cd.depth, 1.0f), cd.color));
534 vertices.push_back(PositionColor(Vec4(loc.x() + x1, loc.y() + y2, cd.depth, 1.0f), cd.color));
538 return vertices;
698 deUint32 numVertices; //!< Number of vertices defined in the vertex buffer
1243 std::vector<PositionColor> vertices;
1253 vertices = generateSubpixelTriangles(wd.renderSize, compareData, getSampleLocations(*subpassData.pixelGrid, wd.renderSize));
1258 vertices = generateSubpixelTriangles(wd.renderSize, compareData, locations);
1261 const VkDeviceSize vertexBufferSize = static_cast<VkDeviceSize>(sizeof(vertices[0]) * vertices.size());
1262 subpassData.numVertices = static_cast<deUint32>(vertices.size());
1266 deMemcpy(subpassData.vertexBufferAlloc->getHostPtr(), dataOrNullPtr(vertices), static_cast<std::size_t>(vertexBufferSize));
1434 deUint32 numVertices; //!< Number of vertices defined in the vertex buffer