OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:memAlloc
(Results
1 - 5
of
5
) sorted by null
/external/deqp/external/vulkancts/modules/vulkan/api/
vktApiBufferViewCreateTests.cpp
138
const VkMemoryAllocateInfo
memAlloc
=
162
memory = allocateMemory(vk, vkDevice, &
memAlloc
, (const VkAllocationCallbacks*)DE_NULL);
vktApiBufferTests.cpp
161
const VkMemoryAllocateInfo
memAlloc
=
171
memory = allocateMemory(vk, vkDevice, &
memAlloc
, (const VkAllocationCallbacks*)DE_NULL);
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineCacheTests.cpp
464
SimpleAllocator*
memAlloc
= new SimpleAllocator(vk, vkDevice, getPhysicalDeviceMemoryProperties(context.getInstanceInterface(), context.getPhysicalDevice()));
481
*pAlloc =
memAlloc
->allocate(getBufferMemoryRequirements(vk, vkDevice, *vertexBuffer), MemoryRequirement::HostVisible);
498
SimpleAllocator*
memAlloc
= new SimpleAllocator(vk, vkDevice, getPhysicalDeviceMemoryProperties(context.getInstanceInterface(), context.getPhysicalDevice()));
522
*pAlloc =
memAlloc
->allocate(getImageMemoryRequirements(vk, vkDevice, *image), MemoryRequirement::Any);
[
all
...]
/external/vulkan-validation-layers/tests/
layer_validation_tests.cpp
[
all
...]
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderExecutor.cpp
460
Allocator&
memAlloc
,
465
Allocator&
memAlloc
,
594
void FragmentOutExecutor::addAttribute (const Context& ctx, Allocator&
memAlloc
, deUint32 bindingLocation, VkFormat format, deUint32 sizePerElement, deUint32 count, const void* dataPtr)
637
de::MovePtr<Allocation> alloc =
memAlloc
.allocate(getBufferMemoryRequirements(vk, vkDevice, *buffer), MemoryRequirement::HostVisible);
647
void FragmentOutExecutor::bindAttributes (const Context& ctx, Allocator&
memAlloc
, int numValues, const void* const* inputs)
680
addAttribute(ctx,
memAlloc
, (deUint32)m_vertexBindingDescriptions.size(), format, elementSize * vecSize, numValues, ptr);
701
Allocator&
memAlloc
= ctx.getDefaultAllocator();
745
addAttribute(ctx,
memAlloc
, 0u, VK_FORMAT_R32G32_SFLOAT, sizeof(tcu::Vec2), (deUint32)positions.size(), &positions[0]);
746
bindAttributes(ctx,
memAlloc
, numValues, inputs);
810
de::MovePtr<Allocation> colorImageAlloc =
memAlloc
.allocate(getImageMemoryRequirements(vk, vkDevice, *((const VkImage*) colorImages.back().get())), M (…)
[
all
...]
Completed in 923 milliseconds