Vulkan-Docs/doc/specs/vulkan/man/VkPipelineCacheCreateInfo.txt

61 lines
1.7 KiB
Plaintext

// Copyright (c) 2014-2016 Khronos Group. This work is licensed under a
// Creative Commons Attribution 4.0 International License; see
// http://creativecommons.org/licenses/by/4.0/
VkPipelineCacheCreateInfo(3)
============================
Name
----
VkPipelineCacheCreateInfo - Structure specifying parameters of a newly created pipeline cache
C Specification
---------------
// refBegin VkPipelineCacheCreateInfo - Structure specifying parameters of a newly created pipeline cache
The sname:VkPipelineCacheCreateInfo structure is defined as:
include::../structs/VkPipelineCacheCreateInfo.txt[]
Members
-------
* pname:sType is the type of this structure.
* pname:pNext is `NULL` or a pointer to an extension-specific structure.
* pname:flags is reserved for future use.
* pname:initialDataSize is the number of bytes in pname:pInitialData. If
pname:initialDataSize is zero, the pipeline cache will initially be
empty.
* pname:pInitialData is a pointer to previously retrieved pipeline
cache data. If the pipeline cache data is incompatible (as defined
below) with the device, the pipeline cache will be initially empty. If
pname:initialDataSize is zero, pname:pInitialData is ignored.
Description
-----------
include::../validity/structs/VkPipelineCacheCreateInfo.txt[]
See Also
--------
elink:VkPipelineCacheCreateFlags, elink:VkStructureType, flink:vkCreatePipelineCache
Document Notes
--------------
For more information, see the Vulkan Specification at URL
https://www.khronos.org/registry/vulkan/specs/1.0/xhtml/vkspec.html#VkPipelineCacheCreateInfo
This page is extracted from the Vulkan Specification.
Fixes and changes should be made to the Specification,not directly.
include::footer.txt[]