Home
last modified time | relevance | path

Searched refs:vertexDataSizeBytes (Results 1 – 9 of 9) sorted by relevance

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/geometry/
DvktGeometryBasicClass.cpp94 …const VkDeviceSize vertexDataSizeBytes = sizeInBytes(m_vertexPosData) + sizeInBytes(m_vertexAt… in iterate() local
114 const Buffer vertexBuffer (vk, device, memAlloc, makeBufferCreateInfo(vertexDataSizeBytes, in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/tessellation/
DvktTessellationMiscDrawTests.cpp146 const VkDeviceSize vertexDataSizeBytes = sizeInBytes(vertexData); in runTest() local
149 …makeBufferCreateInfo(vertexDataSizeBytes, VK_BUFFER_USAGE_VERTEX_BUFFER_BIT), MemoryRequirement::H… in runTest()
157 deMemcpy(alloc.getHostPtr(), &vertexData[0], static_cast<std::size_t>(vertexDataSizeBytes)); in runTest()
DvktTessellationPrimitiveDiscardTests.cpp409 const VkDeviceSize vertexDataSizeBytes = sizeInBytes(attributes); in test() local
410 …const Buffer vertexBuffer (vk, device, allocator, makeBufferCreateInfo(vertexDataSizeBytes,… in test()
418 deMemcpy(alloc.getHostPtr(), &attributes[0], static_cast<std::size_t>(vertexDataSizeBytes)); in test()
DvktTessellationGeometryPassthroughTests.cpp459 const VkDeviceSize vertexDataSizeBytes = sizeInBytes(m_params.vertices); in iterate() local
461 …const Buffer vertexBuffer (vk, device, allocator, makeBufferCreateInfo(vertexDataSizeBytes, VK_B… in iterate()
466 …deMemcpy(alloc.getHostPtr(), &m_params.vertices[0], static_cast<std::size_t>(vertexDataSizeBytes)); in iterate()
DvktTessellationShaderInputOutputTests.cpp72 const VkDeviceSize vertexDataSizeBytes, in runTest() argument
86 …makeBufferCreateInfo(vertexDataSizeBytes, VK_BUFFER_USAGE_VERTEX_BUFFER_BIT), MemoryRequirement::H… in runTest()
91 deMemcpy(alloc.getHostPtr(), vertexData, static_cast<std::size_t>(vertexDataSizeBytes)); in runTest()
DvktTessellationCommonEdgeTests.cpp331 …const VkDeviceSize vertexDataSizeBytes = sizeInBytes(gridPosComps) + sizeInBytes(gridTessParams… in test() local
337 …makeBufferCreateInfo(vertexDataSizeBytes, VK_BUFFER_USAGE_VERTEX_BUFFER_BIT | VK_BUFFER_USAGE_INDE… in test()
DvktTessellationUserDefinedIO.cpp783 const VkDeviceSize vertexDataSizeBytes = numAttributes * vertexStride; in iterate() local
784 … vertexBuffer (vk, device, allocator, makeBufferCreateInfo(vertexDataSizeBytes, VK_BUFFER_… in iterate()
789 deMemcpy(alloc.getHostPtr(), &attributes[0], static_cast<std::size_t>(vertexDataSizeBytes)); in iterate()
DvktTessellationInvarianceTests.cpp1387 const VkDeviceSize vertexDataSizeBytes = NUM_TESS_LEVELS * numPatchesPerDrawCall * vertexStride; in iterate() local
1388 …const Buffer vertexBuffer (vk, device, allocator, makeBufferCreateInfo(vertexDataSizeBytes, VK_B… in iterate()
2039 const VkDeviceSize vertexDataSizeBytes = NUM_TESS_LEVELS * vertexStride; in test() local
2040 …const Buffer vertexBuffer (vk, device, allocator, makeBufferCreateInfo(vertexDataSizeBytes, VK_B… in test()
2042 DE_ASSERT(vertexDataSizeBytes == sizeof(TessLevels)); in test()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationOperation.cpp142 const VkDeviceSize vertexDataSizeBytes = m_vertexData.size() * sizeof(m_vertexData[0]); in VertexGrid() local
144 …Ptr<Buffer>(new Buffer(vk, device, allocator, makeBufferCreateInfo(vertexDataSizeBytes, VK_BUFFER_… in VertexGrid()
150 deMemcpy(alloc.getHostPtr(), &m_vertexData[0], static_cast<std::size_t>(vertexDataSizeBytes)); in VertexGrid()