/external/deqp/external/vulkancts/modules/vulkan/geometry/ |
vktGeometryInstancedRenderingTests.cpp | 166 const UniquePtr<Allocation> vertexBufferAlloc (bindBuffer(vk, device, allocator, *vertexBuffer, MemoryRequirement::HostVisible)); 182 deMemcpy(vertexBufferAlloc->getHostPtr(), &perInstanceAttribute[0], (size_t)vertexBufferSize); 183 flushMappedMemoryRange(vk, device, vertexBufferAlloc->getMemory(), vertexBufferAlloc->getOffset(), vertexBufferSize);
|
/external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
vktPipelineFramebufferAttachmentTests.cpp | 413 MovePtr<Allocation> vertexBufferAlloc; 438 vertexBufferAlloc = bindBuffer(vk, device, allocator, *vertexBuffer, MemoryRequirement::HostVisible); 440 deMemcpy(vertexBufferAlloc->getHostPtr(), &vertices[0], static_cast<std::size_t>(vertexBufferSize)); 441 flushAlloc(vk, device, *vertexBufferAlloc); [all...] |
vktPipelineRenderToImageTests.cpp | [all...] |
vktPipelineMultisampleImageTests.cpp | 787 const UniquePtr<Allocation> vertexBufferAlloc (bindBuffer(vk, device, allocator, *vertexBuffer, MemoryRequirement::HostVisible)); [all...] |
vktPipelineVertexInputTests.cpp | [all...] |
vktPipelineTimestampTests.cpp | 740 de::MovePtr<Allocation> vertexBufferAlloc = memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *vertexBuffer), MemoryRequirement::HostVisible); 742 VK_CHECK(vk.bindBufferMemory(vkDevice, *vertexBuffer, vertexBufferAlloc->getMemory(), vertexBufferAlloc->getOffset())); 745 *pAlloc = vertexBufferAlloc; [all...] |
/external/deqp/external/vulkancts/modules/vulkan/fragment_ops/ |
vktFragmentOperationsEarlyFragmentTests.cpp | 377 const UniquePtr<Allocation> vertexBufferAlloc (bindBuffer(vk, device, allocator, *vertexBuffer, MemoryRequirement::HostVisible)); 380 tcu::Vec4* const pVertices = reinterpret_cast<tcu::Vec4*>(vertexBufferAlloc->getHostPtr()); 390 flushAlloc(vk, device, *vertexBufferAlloc);
|
/external/deqp/external/vulkancts/modules/vulkan/image/ |
vktImageTranscodingSupportTests.cpp | 344 const Allocation& vertexBufferAlloc = vertexBuffer->getAllocation(); 393 deMemcpy(vertexBufferAlloc.getHostPtr(), &vertexArray[0], vertexBufferSizeInBytes); 394 flushAlloc(vk, device, vertexBufferAlloc); 594 const Allocation& vertexBufferAlloc = vertexBuffer->getAllocation(); [all...] |
vktImageMutableTests.cpp | [all...] |
vktImageCompressionTranscodingSupport.cpp | [all...] |
/external/deqp/external/vulkancts/modules/vulkan/api/ |
vktApiCopiesAndBlittingTests.cpp | [all...] |