OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pipelinecache
(Results
1 - 25
of
36
) sorted by null
1
2
/external/deqp/external/vulkancts/framework/vulkan/
vkRefUtil.cpp
33
VkPipelineCache
pipelineCache
,
38
VK_CHECK(vk.createGraphicsPipelines(device,
pipelineCache
, 1u, pCreateInfo, pAllocator, &object));
44
VkPipelineCache
pipelineCache
,
49
VK_CHECK(vk.createComputePipelines(device,
pipelineCache
, 1u, pCreateInfo, pAllocator, &object));
vkRefUtil.hpp
36
VkPipelineCache
pipelineCache
,
41
VkPipelineCache
pipelineCache
,
vkRefUtil.inl
17
Move<VkPipeline> createGraphicsPipelines (const DeviceInterface& vk, VkDevice device, VkPipelineCache
pipelineCache
, deUint32 createInfoCount, const VkGraphicsPipelineCreateInfo* pCreateInfos, const VkAllocationCallbacks* pAllocator = DE_NULL);
18
Move<VkPipeline> createComputePipelines (const DeviceInterface& vk, VkDevice device, VkPipelineCache
pipelineCache
, deUint32 createInfoCount, const VkComputePipelineCreateInfo* pCreateInfos, const VkAllocationCallbacks* pAllocator = DE_NULL);
vkConcreteDeviceInterface.inl
49
virtual void destroyPipelineCache (VkDevice device, VkPipelineCache
pipelineCache
, const VkAllocationCallbacks* pAllocator) const;
50
virtual VkResult getPipelineCacheData (VkDevice device, VkPipelineCache
pipelineCache
, deUintptr* pDataSize, void* pData) const;
52
virtual VkResult createGraphicsPipelines (VkDevice device, VkPipelineCache
pipelineCache
, deUint32 createInfoCount, const VkGraphicsPipelineCreateInfo* pCreateInfos, const VkAllocationCallbacks* pAllocator, VkPipeline* pPipelines) const;
53
virtual VkResult createComputePipelines (VkDevice device, VkPipelineCache
pipelineCache
, deUint32 createInfoCount, const VkComputePipelineCreateInfo* pCreateInfos, const VkAllocationCallbacks* pAllocator, VkPipeline* pPipelines) const;
vkRefUtilImpl.inl
220
Move<VkPipeline> createGraphicsPipelines (const DeviceInterface& vk, VkDevice device, VkPipelineCache
pipelineCache
, deUint32 createInfoCount, const VkGraphicsPipelineCreateInfo* pCreateInfos, const VkAllocationCallbacks* pAllocator)
223
VK_CHECK(vk.createGraphicsPipelines(device,
pipelineCache
, createInfoCount, pCreateInfos, pAllocator, &object));
227
Move<VkPipeline> createComputePipelines (const DeviceInterface& vk, VkDevice device, VkPipelineCache
pipelineCache
, deUint32 createInfoCount, const VkComputePipelineCreateInfo* pCreateInfos, const VkAllocationCallbacks* pAllocator)
230
VK_CHECK(vk.createComputePipelines(device,
pipelineCache
, createInfoCount, pCreateInfos, pAllocator, &object));
vkDeviceDriverImpl.inl
230
void DeviceDriver::destroyPipelineCache (VkDevice device, VkPipelineCache
pipelineCache
, const VkAllocationCallbacks* pAllocator) const
232
m_vk.destroyPipelineCache(device,
pipelineCache
, pAllocator);
235
VkResult DeviceDriver::getPipelineCacheData (VkDevice device, VkPipelineCache
pipelineCache
, deUintptr* pDataSize, void* pData) const
237
return m_vk.getPipelineCacheData(device,
pipelineCache
, pDataSize, pData);
245
VkResult DeviceDriver::createGraphicsPipelines (VkDevice device, VkPipelineCache
pipelineCache
, deUint32 createInfoCount, const VkGraphicsPipelineCreateInfo* pCreateInfos, const VkAllocationCallbacks* pAllocator, VkPipeline* pPipelines) const
247
return m_vk.createGraphicsPipelines(device,
pipelineCache
, createInfoCount, pCreateInfos, pAllocator, pPipelines);
250
VkResult DeviceDriver::createComputePipelines (VkDevice device, VkPipelineCache
pipelineCache
, deUint32 createInfoCount, const VkComputePipelineCreateInfo* pCreateInfos, const VkAllocationCallbacks* pAllocator, VkPipeline* pPipelines) const
252
return m_vk.createComputePipelines(device,
pipelineCache
, createInfoCount, pCreateInfos, pAllocator, pPipelines);
vkDebugReportUtil.cpp
69
"
PipelineCache
",
vkFunctionPointerTypes.inl
66
typedef VKAPI_ATTR void (VKAPI_CALL* DestroyPipelineCacheFunc) (VkDevice device, VkPipelineCache
pipelineCache
, const VkAllocationCallbacks* pAllocator);
67
typedef VKAPI_ATTR VkResult (VKAPI_CALL* GetPipelineCacheDataFunc) (VkDevice device, VkPipelineCache
pipelineCache
, deUintptr* pDataSize, void* pData);
69
typedef VKAPI_ATTR VkResult (VKAPI_CALL* CreateGraphicsPipelinesFunc) (VkDevice device, VkPipelineCache
pipelineCache
, deUint32 createInfoCount, const VkGraphicsPipelineCreateInfo* pCreateInfos, const VkAllocationCallbacks* pAllocator, VkPipeline* pPipelines);
70
typedef VKAPI_ATTR VkResult (VKAPI_CALL* CreateComputePipelinesFunc) (VkDevice device, VkPipelineCache
pipelineCache
, deUint32 createInfoCount, const VkComputePipelineCreateInfo* pCreateInfos, const VkAllocationCallbacks* pAllocator, VkPipeline* pPipelines);
vkVirtualDeviceInterface.inl
49
virtual void destroyPipelineCache (VkDevice device, VkPipelineCache
pipelineCache
, const VkAllocationCallbacks* pAllocator) const = 0;
50
virtual VkResult getPipelineCacheData (VkDevice device, VkPipelineCache
pipelineCache
, deUintptr* pDataSize, void* pData) const = 0;
52
virtual VkResult createGraphicsPipelines (VkDevice device, VkPipelineCache
pipelineCache
, deUint32 createInfoCount, const VkGraphicsPipelineCreateInfo* pCreateInfos, const VkAllocationCallbacks* pAllocator, VkPipeline* pPipelines) const = 0;
53
virtual VkResult createComputePipelines (VkDevice device, VkPipelineCache
pipelineCache
, deUint32 createInfoCount, const VkComputePipelineCreateInfo* pCreateInfos, const VkAllocationCallbacks* pAllocator, VkPipeline* pPipelines) const = 0;
vkNullDriverImpl.inl
79
VK_NULL_RETURN((*pPipelineCache = allocateNonDispHandle<
PipelineCache
, VkPipelineCache>(device, pCreateInfo, pAllocator)));
248
VKAPI_ATTR void VKAPI_CALL destroyPipelineCache (VkDevice device, VkPipelineCache
pipelineCache
, const VkAllocationCallbacks* pAllocator)
251
freeNonDispHandle<
PipelineCache
, VkPipelineCache>(
pipelineCache
, pAllocator);
542
VKAPI_ATTR VkResult VKAPI_CALL getPipelineCacheData (VkDevice device, VkPipelineCache
pipelineCache
, deUintptr* pDataSize, void* pData)
545
DE_UNREF(
pipelineCache
);
[
all
...]
/external/vulkan-validation-layers/layers/
unique_objects.h
445
VkResult explicit_CreateComputePipelines(VkDevice device, VkPipelineCache
pipelineCache
, uint32_t createInfoCount,
448
// STRUCT USES:{'
pipelineCache
': 'VkPipelineCache', 'pCreateInfos[createInfoCount]': {'stage': {'module': 'VkShaderModule'},
469
if (
pipelineCache
) {
470
pipelineCache
= (VkPipelineCache)((VkUniqueObject *)
pipelineCache
)->actualObject;
474
->CreateComputePipelines(device,
pipelineCache
, createInfoCount,
488
VkResult explicit_CreateGraphicsPipelines(VkDevice device, VkPipelineCache
pipelineCache
, uint32_t createInfoCount,
491
// STRUCT USES:{'
pipelineCache
': 'VkPipelineCache', 'pCreateInfos[createInfoCount]': {'layout': 'VkPipelineLayout',
519
if (
pipelineCache
) {
520
pipelineCache
= (VkPipelineCache)((VkUniqueObject *)pipelineCache)->actualObject
[
all
...]
object_tracker.h
[
all
...]
parameter_validation.cpp
[
all
...]