Lines Matching refs:Vertex4RGBA
76 vector<Vertex4RGBA> createQuads (deUint32 numQuads, float size) in createQuads()
78 vector<Vertex4RGBA> vertices; in createQuads()
84 const Vertex4RGBA lowerLeftVertex = {tcu::Vec4(-size + xOffset, -size, 0.0f, 1.0f), color}; in createQuads()
85 const Vertex4RGBA lowerRightVertex = {tcu::Vec4(size + xOffset, -size, 0.0f, 1.0f), color}; in createQuads()
86 const Vertex4RGBA UpperLeftVertex = {tcu::Vec4(-size + xOffset, size, 0.0f, 1.0f), color}; in createQuads()
87 const Vertex4RGBA UpperRightVertex = {tcu::Vec4(size + xOffset, size, 0.0f, 1.0f), color}; in createQuads()
142 vector<Vertex4RGBA> m_vertices;
442 sizeof(Vertex4RGBA), // deUint32 strideInBytes; in init()
458 DE_OFFSET_OF(Vertex4RGBA, color), // deUint32 offset; in init()
502 (VkDeviceSize)(sizeof(Vertex4RGBA) * m_vertices.size()), // VkDeviceSize size; in init()
515 …cpy(m_vertexBufferAlloc->getHostPtr(), m_vertices.data(), m_vertices.size() * sizeof(Vertex4RGBA)); in init()