Lines Matching refs:Vertex4RGBA
85 vector<Vertex4RGBA> createQuads (deUint32 numQuads, float size) in createQuads()
87 vector<Vertex4RGBA> vertices; in createQuads()
93 const Vertex4RGBA lowerLeftVertex = {tcu::Vec4(-size + xOffset, -size, 0.0f, 1.0f), color}; in createQuads()
94 const Vertex4RGBA lowerRightVertex = {tcu::Vec4(size + xOffset, -size, 0.0f, 1.0f), color}; in createQuads()
95 const Vertex4RGBA UpperLeftVertex = {tcu::Vec4(-size + xOffset, size, 0.0f, 1.0f), color}; in createQuads()
96 const Vertex4RGBA UpperRightVertex = {tcu::Vec4(size + xOffset, size, 0.0f, 1.0f), color}; in createQuads()
166 vector<Vertex4RGBA> m_vertices;
531 sizeof(Vertex4RGBA), // deUint32 strideInBytes; in init()
547 DE_OFFSET_OF(Vertex4RGBA, color), // deUint32 offset; in init()
591 (VkDeviceSize)(sizeof(Vertex4RGBA) * m_vertices.size()), // VkDeviceSize size; in init()
604 …cpy(m_vertexBufferAlloc->getHostPtr(), m_vertices.data(), m_vertices.size() * sizeof(Vertex4RGBA)); in init()