Lines Matching defs:vertices

166 																					 const std::vector<Vertex4RGBA>&				vertices,
198 const std::vector<Vertex4RGBA>& vertices,
229 const std::vector<Vertex4RGBA>& vertices,
261 const std::vector<Vertex4RGBA>& vertices,
287 const std::vector<Vertex4RGBA>& vertices,
316 const std::vector<Vertex4RGBA>& vertices,
344 const std::vector<Vertex4RGBA>& vertices,
373 const std::vector<Vertex4RGBA>& vertices,
448 const std::vector<Vertex4RGBA>& vertices,
580 const std::vector<Vertex4RGBA>& vertices,
611 const std::vector<Vertex4RGBA>& vertices,
642 const std::vector<Vertex4RGBA>& vertices,
661 const std::vector<Vertex4RGBA>& vertices,
691 const std::vector<Vertex4RGBA>& vertices,
720 const std::vector<Vertex4RGBA>& vertices,
755 const std::vector<Vertex4RGBA>& vertices,
787 const std::vector<Vertex4RGBA>& vertices,
1159 std::vector<Vertex4RGBA> vertices;
1188 vertices = std::vector<Vertex4RGBA>(vertexData, vertexData + 3);
1206 vertices = std::vector<Vertex4RGBA>(vertexData, vertexData + 2);
1218 vertices = std::vector<Vertex4RGBA>(1, vertex);
1269 vertices = std::vector<Vertex4RGBA>(vertexData, vertexData + de::arrayLength(vertexData));
1276 return vertices;
1421 const std::vector<Vertex4RGBA>& vertices,
1425 return new RasterizationSamplesInstance(context, m_pipelineConstructionType, topology, pointSize, vertices, multisampleStateParams, colorBlendState, m_modeFlags, m_backingMode, m_useFragmentShadingRate);
1464 const std::vector<Vertex4RGBA>& vertices,
1469 return new MinSampleShadingInstance(context, m_pipelineConstructionType, topology, pointSize, vertices, multisampleStateParams, colorBlendState, m_backingMode, m_useFragmentShadingRate);
1471 return new MinSampleShadingDisabledInstance(context, m_pipelineConstructionType, topology, pointSize, vertices, multisampleStateParams, colorBlendState, m_backingMode, m_useFragmentShadingRate);
1512 const std::vector<Vertex4RGBA>& vertices,
1517 return new SampleMaskInstance(context, m_pipelineConstructionType, topology, pointSize, vertices, multisampleStateParams, colorBlendState, m_backingMode, m_useFragmentShadingRate);
1562 const std::vector<Vertex4RGBA>& vertices,
1567 return new AlphaToOneInstance(context, m_pipelineConstructionType, topology, vertices, multisampleStateParams, colorBlendState, m_backingMode, m_useFragmentShadingRate);
1662 const std::vector<Vertex4RGBA>& vertices,
1667 return new AlphaToCoverageInstance(context, m_pipelineConstructionType, topology, vertices, multisampleStateParams, colorBlendState, m_geometryType, m_backingMode, m_useFragmentShadingRate, m_checkDepthBuffer);
1706 const std::vector<Vertex4RGBA>& vertices,
1711 return new AlphaToCoverageNoColorAttachmentInstance(context, m_pipelineConstructionType, topology, vertices, multisampleStateParams, colorBlendState, m_geometryType, m_backingMode, m_useFragmentShadingRate);
1755 const std::vector<Vertex4RGBA>& vertices,
1760 return new AlphaToCoverageColorUnusedAttachmentInstance(context, m_pipelineConstructionType, topology, vertices, multisampleStateParams, colorBlendState, m_geometryType, m_backingMode, m_useFragmentShadingRate);
2061 const std::vector<Vertex4RGBA>& vertices,
2072 , m_vertices (vertices)
2098 context, pipelineConstructionType, m_colorFormat, m_renderSize, topology, vertices, multisampleStateParams,
2173 const std::vector<Vertex4RGBA>& vertices,
2183 , m_vertices (vertices)
2303 const std::vector<Vertex4RGBA>& vertices,
2308 : MinSampleShadingInstance (context, pipelineConstructionType, topology, pointSize, vertices, multisampleStateParams, blendState, backingMode, useFragmentShadingRate)
2369 const std::vector<Vertex4RGBA>& vertices,
2379 , m_vertices (vertices)
2476 const std::vector<Vertex4RGBA> vertices (vertexData, vertexData + 3);
2502 MultisampleRenderer renderer (context, params.pipelineConstructionType, VK_FORMAT_R8G8B8A8_UNORM, tcu::IVec2(32, 32), VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST, vertices, multisampleStateParams, getDefaultColorBlendAttachmentState(), RENDER_TYPE_RESOLVE, params.backingMode, params.useFragmentShadingRate);
2535 const std::vector<Vertex4RGBA>& vertices,
2545 , m_vertices (vertices)
2613 const std::vector<Vertex4RGBA>& vertices,
2626 , m_vertices (vertices)
2728 const std::vector<Vertex4RGBA>& vertices,
2740 , m_vertices (vertices)
2786 const std::vector<Vertex4RGBA>& vertices,
2797 , m_vertices (vertices)
2957 std::vector<Vertex4RGBA> vertices;
2961 vertices.push_back(vertexInput);
2965 vertices.push_back(vertexInput);
2969 vertices.push_back(vertexInput);
2972 return vertices;
3227 std::vector<Vertex4RGBA> vertices;
3231 vertices.push_back(vertexInput);
3235 vertices.push_back(vertexInput);
3239 vertices.push_back(vertexInput);
3242 return vertices;
3353 const std::vector<Vertex4RGBA>& vertices,
3376 initialize(context, 1u, &topology, &vertices);
4411 // Load vertices into vertex buffer
4419 std::vector<Vertex4RGBA> vertices = pVertices[0];
4422 for (size_t i = 0; i < vertices.size(); i++)
4423 vertices[i].color.w() = 0.0f;
4425 deMemcpy(pDst, &vertices[0], vertices.size() * sizeof(Vertex4RGBA));
4427 pDst += vertices.size();
4429 // The second draw uses original vertices which are pure red.
5175 const std::vector<tcu::Vec2> vertices =
5182 const auto vertexBinding = vk::makeVertexInputBindingDescription(0u, static_cast<deUint32>(sizeof(decltype(vertices)::value_type)), vk::VK_VERTEX_INPUT_RATE_VERTEX);
5302 const auto vertexBufferSize = vertices.size() * sizeof(decltype(vertices)::value_type);
5307 deMemcpy(vertexAlloc.getHostPtr(), vertices.data(), vertexBufferSize);
5379 vkd.cmdDraw(cmdBuffer, static_cast<deUint32>(vertices.size()), 1u, 0u, 0u);
5399 vkd.cmdDraw(cmdBuffer, static_cast<deUint32>(vertices.size()), 1u, 0u, 0u);