Searched refs:vertexBufferMemory (Results 1 - 5 of 5) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/api/
H A DvktApiSmokeTests.cpp360 const UniquePtr<Allocation> vertexBufferMemory (memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *vertexBuffer), MemoryRequirement::HostVisible));
362 VK_CHECK(vk.bindBufferMemory(vkDevice, *vertexBuffer, vertexBufferMemory->getMemory(), vertexBufferMemory->getOffset()));
865 vertexBufferMemory->getMemory(), // memory
869 void* vertexBufPtr = vertexBufferMemory->getHostPtr();
972 const UniquePtr<Allocation> vertexBufferMemory (memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *vertexBuffer), MemoryRequirement::HostVisible));
974 VK_CHECK(vk.bindBufferMemory(vkDevice, *vertexBuffer, vertexBufferMemory->getMemory(), vertexBufferMemory->getOffset()));
1482 vertexBufferMemory->getMemory(), // memory
1486 void* vertexBufPtr = vertexBufferMemory
[all...]
/external/deqp/external/vulkancts/modules/vulkan/texture/
H A DvktTextureTestUtil.cpp1108 de::MovePtr<Allocation> vertexBufferMemory; local
1421 vertexBufferMemory = allocator.allocate(getBufferMemoryRequirements(vkd, vkDevice, *vertexBuffer), MemoryRequirement::HostVisible);
1423 VK_CHECK(vkd.bindBufferMemory(vkDevice, *vertexBuffer, vertexBufferMemory->getMemory(), vertexBufferMemory->getOffset()));
1426 deMemcpy(vertexBufferMemory->getHostPtr(), position, positionDataSize);
1427 deMemcpy(reinterpret_cast<deUint8*>(vertexBufferMemory->getHostPtr()) + positionDataSize, texCoord, textureCoordDataSize);
1428 flushMappedMemoryRange(vkd, vkDevice, vertexBufferMemory->getMemory(), vertexBufferMemory->getOffset(), VK_WHOLE_SIZE);
/external/deqp/external/vulkancts/modules/vulkan/device_group/
H A DvktDeviceGroupRendering.cpp443 vk::Move<vk::VkDeviceMemory> vertexBufferMemory; local
561 vertexBufferMemory = allocateMemory(vk, *m_deviceGroup, &allocInfo);
582 vertexBufferMemory.get(), // memory
588 VK_CHECK(vk.bindBufferMemory(*m_deviceGroup, *vertexBuffer, vertexBufferMemory.get(), 0));
/external/deqp/external/vulkancts/modules/vulkan/rasterization/
H A DvktRasterizationTests.cpp621 de::MovePtr<Allocation> vertexBufferMemory; local
779 vertexBufferMemory = allocator.allocate(getBufferMemoryRequirements(vkd, vkDevice, *vertexBuffer), MemoryRequirement::HostVisible);
781 VK_CHECK(vkd.bindBufferMemory(vkDevice, *vertexBuffer, vertexBufferMemory->getMemory(), vertexBufferMemory->getOffset()));
784 deMemcpy(vertexBufferMemory->getHostPtr(), positionData.data(), attributeBatchSize);
785 deMemcpy(reinterpret_cast<deUint8*>(vertexBufferMemory->getHostPtr()) + attributeBatchSize, colorData.data(), attributeBatchSize);
786 flushMappedMemoryRange(vkd, vkDevice, vertexBufferMemory->getMemory(), vertexBufferMemory->getOffset(), vertexBufferParams.size);
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
H A DvktSpvAsmGraphicsShaderTestUtil.cpp2389 const UniquePtr<Allocation> vertexBufferMemory (allocator.allocate(getBufferMemoryRequirements(vk, *vkDevice, *vertexBuffer), MemoryRequirement::HostVisible));
2391 VK_CHECK(vk.bindBufferMemory(*vkDevice, *vertexBuffer, vertexBufferMemory->getMemory(), vertexBufferMemory->getOffset()));
3410 vertexBufferMemory->getMemory(), // VkDeviceMemory mem;
3414 void* vertexBufPtr = vertexBufferMemory->getHostPtr();

Completed in 208 milliseconds