56 lines
1.2 KiB
Plaintext
56 lines
1.2 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/
|
|
|
|
VkBufferCopy(3)
|
|
===============
|
|
|
|
Name
|
|
----
|
|
VkBufferCopy - Structure specifying a buffer copy operation
|
|
|
|
C Specification
|
|
---------------
|
|
|
|
// refBegin VkBufferCopy - Structure specifying a buffer copy operation
|
|
|
|
The sname:VkBufferCopy structure is defined as:
|
|
|
|
include::../structs/VkBufferCopy.txt[]
|
|
|
|
|
|
Members
|
|
-------
|
|
|
|
* pname:srcOffset is the starting offset in bytes from the start of
|
|
pname:srcBuffer.
|
|
* pname:dstOffset is the starting offset in bytes from the start of
|
|
pname:dstBuffer.
|
|
* pname:size is the number of bytes to copy.
|
|
|
|
|
|
Description
|
|
-----------
|
|
|
|
include::../validity/structs/VkBufferCopy.txt[]
|
|
|
|
|
|
See Also
|
|
--------
|
|
|
|
basetypes:VkDeviceSize, flink:vkCmdCopyBuffer
|
|
|
|
|
|
Document Notes
|
|
--------------
|
|
|
|
For more information, see the Vulkan Specification at URL
|
|
|
|
https://www.khronos.org/registry/vulkan/specs/1.0/xhtml/vkspec.html#VkBufferCopy
|
|
|
|
This page is extracted from the Vulkan Specification.
|
|
Fixes and changes should be made to the Specification,not directly.
|
|
|
|
include::footer.txt[]
|
|
|