HomeSort by relevance Sort by last modified time
    Searched refs:Vertex4RGBA (Results 1 - 17 of 17) sorted by null

  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineInputAssemblyTests.cpp 86 std::vector<Vertex4RGBA>& vertexData) const = 0;
109 std::vector<Vertex4RGBA>& vertexData) const;
129 std::vector<Vertex4RGBA>& vertexData) const;
145 const std::vector<Vertex4RGBA>& vertexBufferData);
158 std::vector<Vertex4RGBA> m_vertices;
224 std::vector<Vertex4RGBA> vertexBufferData;
287 void PrimitiveTopologyTest::createBufferData (VkPrimitiveTopology topology, int primitiveCount, VkIndexType indexType, std::vector<deUint32>& indexData, std::vector<Vertex4RGBA>& vertexData) const
297 const Vertex4RGBA defaultVertex = { tcu::Vec4(-1.0f, -1.0f, 0.0f, 1.0f), green };
301 std::vector<Vertex4RGBA> vertices;
346 const Vertex4RGBA vertex
    [all...]
vktPipelineVertexUtil.hpp 38 struct Vertex4RGBA
75 std::vector<Vertex4RGBA> createOverlappingQuads (void);
vktPipelineMultisampleTests.cpp 119 std::vector<Vertex4RGBA> generateVertices (const GeometryType geometryType);
143 const std::vector<Vertex4RGBA>& vertices,
171 const std::vector<Vertex4RGBA>& vertices,
199 const std::vector<Vertex4RGBA>& vertices,
227 const std::vector<Vertex4RGBA>& vertices,
251 const std::vector<Vertex4RGBA>& vertices,
277 const std::vector<Vertex4RGBA>& vertices,
314 const std::vector<Vertex4RGBA>& vertices,
328 const std::vector<Vertex4RGBA>* pVertices,
344 const std::vector<Vertex4RGBA>* pVertices)
    [all...]
vktPipelineVertexUtil.cpp 883 std::vector<Vertex4RGBA> createOverlappingQuads (void)
888 std::vector<Vertex4RGBA> vertices;
913 const Vertex4RGBA lowerLeftVertex =
918 const Vertex4RGBA upperLeftVertex =
923 const Vertex4RGBA lowerRightVertex =
928 const Vertex4RGBA upperRightVertex =
vktPipelineDynamicOffsetTests.cpp 76 vector<Vertex4RGBA> createQuads (deUint32 numQuads, float size)
78 vector<Vertex4RGBA> vertices;
84 const Vertex4RGBA lowerLeftVertex = {tcu::Vec4(-size + xOffset, -size, 0.0f, 1.0f), color};
85 const Vertex4RGBA lowerRightVertex = {tcu::Vec4(size + xOffset, -size, 0.0f, 1.0f), color};
86 const Vertex4RGBA UpperLeftVertex = {tcu::Vec4(-size + xOffset, size, 0.0f, 1.0f), color};
87 const Vertex4RGBA UpperRightVertex = {tcu::Vec4(size + xOffset, size, 0.0f, 1.0f), color};
142 vector<Vertex4RGBA> m_vertices;
442 sizeof(Vertex4RGBA), // deUint32 strideInBytes;
458 DE_OFFSET_OF(Vertex4RGBA, color), // deUint32 offset;
502 (VkDeviceSize)(sizeof(Vertex4RGBA) * m_vertices.size()), // VkDeviceSize size
    [all...]
vktPipelineStencilTests.cpp 163 std::vector<Vertex4RGBA> m_vertices;
468 sizeof(Vertex4RGBA), // deUint32 strideInBytes;
484 DE_OFFSET_OF(Vertex4RGBA, color), // deUint32 offsetInBytes;
583 deMemcpy(m_vertexBufferAlloc->getHostPtr(), m_vertices.data(), m_vertices.size() * sizeof(Vertex4RGBA));
637 const VkDeviceSize quadOffset = (m_vertices.size() / StencilTest::QUAD_COUNT) * sizeof(Vertex4RGBA);
701 std::vector<Vertex4RGBA> cwVertices(m_vertices);
704 const Vertex4RGBA cwVertex1 = cwVertices[vertexNdx + 1];
722 std::vector<Vertex4RGBA>(cwVertices.begin() + quadNdx * 6,
    [all...]
vktPipelinePushConstantTests.cpp 169 std::vector<Vertex4RGBA> createQuad (const float size);
173 std::vector<Vertex4RGBA> m_vertices;
224 std::vector<Vertex4RGBA> PushConstantGraphicsTestInstance::createQuad(const float size)
226 std::vector<Vertex4RGBA> vertices;
229 const Vertex4RGBA lowerLeftVertex = {tcu::Vec4(-size, -size, 0.0f, 1.0f), color};
230 const Vertex4RGBA lowerRightVertex = {tcu::Vec4(size, -size, 0.0f, 1.0f), color};
231 const Vertex4RGBA UpperLeftVertex = {tcu::Vec4(-size, size, 0.0f, 1.0f), color};
232 const Vertex4RGBA UpperRightVertex = {tcu::Vec4(size, size, 0.0f, 1.0f), color};
452 sizeof(Vertex4RGBA), // deUint32 strideInBytes;
468 DE_OFFSET_OF(Vertex4RGBA, color), // deUint32 offset
    [all...]
vktPipelineBlendTests.cpp 149 std::vector<Vertex4RGBA> m_vertices;
406 sizeof(Vertex4RGBA), // deUint32 strideInBytes;
513 deMemcpy(m_vertexBufferAlloc->getHostPtr(), m_vertices.data(), m_vertices.size() * sizeof(Vertex4RGBA));
549 const VkDeviceSize quadOffset = (m_vertices.size() / BlendTest::QUAD_COUNT) * sizeof(Vertex4RGBA);
    [all...]
vktPipelineDepthTests.cpp 183 std::vector<Vertex4RGBA> m_vertices;
438 sizeof(Vertex4RGBA), // deUint32 strideInBytes;
454 DE_OFFSET_OF(Vertex4RGBA, color), // deUint32 offset;
553 deMemcpy(m_vertexBufferAlloc->getHostPtr(), m_vertices.data(), m_vertices.size() * sizeof(Vertex4RGBA));
607 const VkDeviceSize quadOffset = (m_vertices.size() / DepthTest::QUAD_COUNT) * sizeof(Vertex4RGBA);
665 std::vector<Vertex4RGBA>(m_vertices.begin() + quadNdx * 6,
    [all...]
vktPipelinePushDescriptorTests.cpp 158 vector<Vertex4RGBA> createQuads (deUint32 numQuads, float size)
160 vector<Vertex4RGBA> vertices;
166 const Vertex4RGBA lowerLeftVertex = {tcu::Vec4(-size + xOffset, -size, 0.0f, 1.0f), color};
167 const Vertex4RGBA lowerRightVertex = {tcu::Vec4(size + xOffset, -size, 0.0f, 1.0f), color};
168 const Vertex4RGBA UpperLeftVertex = {tcu::Vec4(-size + xOffset, size, 0.0f, 1.0f), color};
169 const Vertex4RGBA UpperRightVertex = {tcu::Vec4(size + xOffset, size, 0.0f, 1.0f), color};
252 vector<Vertex4RGBA> m_vertices;
427 sizeof(Vertex4RGBA), // deUint32 strideInBytes;
443 DE_OFFSET_OF(Vertex4RGBA, color), // deUint32 offset;
487 (VkDeviceSize)(sizeof(Vertex4RGBA) * m_vertices.size()), // VkDeviceSize size
    [all...]
vktPipelineMultisampleImageTests.cpp 100 sizeof(Vertex4RGBA), // uint32_t stride;
610 std::vector<Vertex4RGBA> genTriangleVertices (void)
612 static const Vertex4RGBA data[] =
627 return std::vector<Vertex4RGBA>(data, data + DE_LENGTH_OF_ARRAY(data));
631 std::vector<Vertex4RGBA> genFullQuadVertices (void)
633 static const Vertex4RGBA data[] =
652 return std::vector<Vertex4RGBA>(data, data + DE_LENGTH_OF_ARRAY(data));
784 const std::vector<Vertex4RGBA> vertices = genTriangleVertices();
    [all...]
vktPipelineReferenceRenderer.cpp 256 const std::vector<Vertex4RGBA>& vertexBuffer)
265 const Vertex4RGBA& v = vertexBuffer[vertexNdx];
vktPipelineReferenceRenderer.hpp 239 const std::vector<Vertex4RGBA>& vertexBuffer);
vktPipelineRenderToImageTests.cpp 244 sizeof(Vertex4RGBA), // uint32_t stride;
587 vector<Vertex4RGBA> genFullQuadVertices (const int subpassCount)
589 vector<Vertex4RGBA> vectorData;
592 Vertex4RGBA data =
    [all...]
vktPipelineCacheTests.cpp 231 sizeof(Vertex4RGBA), // deUint32 strideInBytes;
247 DE_OFFSET_OF(Vertex4RGBA, color), // deUint32 offsetInBytes;
620 std::vector<Vertex4RGBA> m_vertices;
    [all...]
vktPipelineTimestampTests.cpp 423 sizeof(Vertex4RGBA), // deUint32 strideInBytes;
439 DE_OFFSET_OF(Vertex4RGBA, color), // deUint32 offsetInBytes;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/renderpass/
vktRenderPassUnusedAttachmentTests.cpp 71 struct Vertex4RGBA
77 std::vector<Vertex4RGBA> createQuad (void)
79 std::vector<Vertex4RGBA> vertices;
83 const Vertex4RGBA lowerLeftVertex = {tcu::Vec4(-size, -size, 0.0f, 1.0f), color};
84 const Vertex4RGBA lowerRightVertex = {tcu::Vec4(size, -size, 0.0f, 1.0f), color};
85 const Vertex4RGBA upperLeftVertex = {tcu::Vec4(-size, size, 0.0f, 1.0f), color};
86 const Vertex4RGBA upperRightVertex = {tcu::Vec4(size, size, 0.0f, 1.0f), color};
282 std::vector<Vertex4RGBA> m_vertices;
735 sizeof(Vertex4RGBA), // deUint32 strideInBytes;
    [all...]

Completed in 523 milliseconds