HomeSort by relevance Sort by last modified time
    Searched defs:m_vertexBufferAlloc (Results 1 - 14 of 14) sorted by null

  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineImageSamplingInstance.hpp 118 de::MovePtr<vk::Allocation> m_vertexBufferAlloc;
vktPipelineDepthTests.cpp 160 de::MovePtr<Allocation> m_vertexBufferAlloc;
683 m_vertexBufferAlloc = memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *m_vertexBuffer), MemoryRequirement::HostVisible);
685 VK_CHECK(vk.bindBufferMemory(vkDevice, *m_vertexBuffer, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset()));
693 deMemcpy(m_vertexBufferAlloc->getHostPtr(), m_vertices.data(), m_vertices.size() * sizeof(Vertex4RGBA));
694 flushMappedMemoryRange(vk, vkDevice, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset(), vertexBufferParams.size);
    [all...]
vktPipelineBlendTests.cpp 146 de::MovePtr<Allocation> m_vertexBufferAlloc;
666 m_vertexBufferAlloc = memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *m_vertexBuffer), MemoryRequirement::HostVisible);
668 VK_CHECK(vk.bindBufferMemory(vkDevice, *m_vertexBuffer, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset()));
679 deMemcpy(m_vertexBufferAlloc->getHostPtr(), m_vertices.data(), m_vertices.size() * sizeof(Vertex4RGBA));
685 m_vertexBufferAlloc->getMemory(), // VkDeviceMemory memory;
686 m_vertexBufferAlloc->getOffset(), // VkDeviceSize offset;
    [all...]
vktPipelineInputAssemblyTests.cpp 156 de::MovePtr<Allocation> m_vertexBufferAlloc;
    [all...]
vktPipelinePushConstantTests.cpp 178 de::MovePtr<Allocation> m_vertexBufferAlloc;
    [all...]
vktPipelineStencilTests.cpp 162 de::MovePtr<Allocation> m_vertexBufferAlloc;
758 m_vertexBufferAlloc = memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *m_vertexBuffer), MemoryRequirement::HostVisible);
760 VK_CHECK(vk.bindBufferMemory(vkDevice, *m_vertexBuffer, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset()));
768 deMemcpy(m_vertexBufferAlloc->getHostPtr(), m_vertices.data(), m_vertices.size() * sizeof(Vertex4RGBA));
774 m_vertexBufferAlloc->getMemory(), // VkDeviceMemory memory;
775 m_vertexBufferAlloc->getOffset(), // VkDeviceSize offset;
    [all...]
vktPipelineMultisampleTests.cpp 317 de::MovePtr<Allocation> m_vertexBufferAlloc;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/robustness/
vktRobustnessUtil.hpp 111 de::MovePtr<vk::Allocation> m_vertexBufferAlloc;
vktRobustnessBufferAccessTests.cpp 212 de::MovePtr<Allocation> m_vertexBufferAlloc;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/fragment_ops/
vktFragmentOperationsScissorMultiViewportTests.cpp 574 m_vertexBufferAlloc = bindBuffer (vk, device, allocator, *m_vertexBuffer, MemoryRequirement::HostVisible);
577 deMemcpy(m_vertexBufferAlloc->getHostPtr(), &vertices[0], static_cast<std::size_t>(m_vertexBufferSize));
578 flushMappedMemoryRange(vk, device, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset(), m_vertexBufferSize);
700 MovePtr<Allocation> m_vertexBufferAlloc;
    [all...]
vktFragmentOperationsScissorTests.cpp 553 m_vertexBufferAlloc = bindBuffer(vk, device, allocator, *m_vertexBuffer, MemoryRequirement::HostVisible);
556 deMemcpy(m_vertexBufferAlloc->getHostPtr(), &m_vertices[0], static_cast<std::size_t>(m_vertexBufferSize));
557 flushMappedMemoryRange(vk, device, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset(), m_vertexBufferSize);
684 MovePtr<Allocation> m_vertexBufferAlloc;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesShaderIntrinsicsSampled.cpp 612 de::MovePtr<Allocation> m_vertexBufferAlloc;
682 m_vertexBufferAlloc = bindBuffer(deviceInterface, getDevice(), getAllocator(), *m_vertexBuffer, MemoryRequirement::HostVisible);
684 deMemcpy(m_vertexBufferAlloc->getHostPtr(), &vertexData[0], static_cast<std::size_t>(vertexDataSizeInBytes));
685 flushMappedMemoryRange(deviceInterface, getDevice(), m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset(), vertexDataSizeInBytes);
    [all...]
vktSparseResourcesBufferTests.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiBufferViewAccessTests.cpp 110 de::MovePtr<Allocation> m_vertexBufferAlloc;
589 BufferSuballocation().createTestBuffer(vertexDataSize, VK_BUFFER_USAGE_VERTEX_BUFFER_BIT, m_context, memAlloc, m_vertexBuffer, MemoryRequirement::HostVisible, m_vertexBufferAlloc);
592 deMemcpy(m_vertexBufferAlloc->getHostPtr(), m_vertices.data(), (size_t)vertexDataSize);
593 flushMappedMemoryRange(vk, vkDevice, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset(), vertexDataSize);
    [all...]

Completed in 493 milliseconds