Lines Matching refs:Vertex4RGBA
72 struct Vertex4RGBA
78 std::vector<Vertex4RGBA> createQuad (void)
80 std::vector<Vertex4RGBA> vertices;
84 const Vertex4RGBA lowerLeftVertex = {tcu::Vec4(-size, -size, 0.0f, 1.0f), color};
85 const Vertex4RGBA lowerRightVertex = {tcu::Vec4(size, -size, 0.0f, 1.0f), color};
86 const Vertex4RGBA upperLeftVertex = {tcu::Vec4(-size, size, 0.0f, 1.0f), color};
87 const Vertex4RGBA upperRightVertex = {tcu::Vec4(size, size, 0.0f, 1.0f), color};
282 std::vector<Vertex4RGBA> m_vertices;
734 sizeof(Vertex4RGBA), // deUint32 strideInBytes;
810 (VkDeviceSize)(sizeof(Vertex4RGBA) * m_vertices.size()), // VkDeviceSize size;
823 deMemcpy(m_vertexBufferAlloc->getHostPtr(), m_vertices.data(), m_vertices.size() * sizeof(Vertex4RGBA));