parent
8668606a14
commit
5029e15ec6
13 changed files with 17 additions and 17 deletions
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* Vulkan device class
|
||||
*
|
||||
* Encapsulates a physical Vulkan device and it's logical representation
|
||||
* Encapsulates a physical Vulkan device and its logical representation
|
||||
*
|
||||
* Copyright (C) by Sascha Willems - www.saschawillems.de
|
||||
*
|
||||
|
|
|
|||
|
|
@ -108,7 +108,7 @@ namespace vks
|
|||
}
|
||||
|
||||
/**
|
||||
* Destroy and free Vulkan resources used for the framebuffer and all of it's attachments
|
||||
* Destroy and free Vulkan resources used for the framebuffer and all of its attachments
|
||||
*/
|
||||
~Framebuffer()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -272,7 +272,7 @@ public:
|
|||
}
|
||||
|
||||
/**
|
||||
* Create the swapchain and get it's images with given width and height
|
||||
* Create the swapchain and get its images with given width and height
|
||||
*
|
||||
* @param width Pointer to the width of the swapchain (may be adjusted to fit the requirements of the swapchain)
|
||||
* @param height Pointer to the height of the swapchain (may be adjusted to fit the requirements of the swapchain)
|
||||
|
|
|
|||
|
|
@ -618,7 +618,7 @@ namespace vks
|
|||
memcpy(data, ktxTextureData, ktxTextureSize);
|
||||
vkUnmapMemory(device->logicalDevice, stagingMemory);
|
||||
|
||||
// Setup buffer copy regions for each layer including all of it's miplevels
|
||||
// Setup buffer copy regions for each layer including all of its miplevels
|
||||
std::vector<VkBufferImageCopy> bufferCopyRegions;
|
||||
|
||||
for (uint32_t layer = 0; layer < layerCount; layer++)
|
||||
|
|
@ -812,7 +812,7 @@ namespace vks
|
|||
memcpy(data, ktxTextureData, ktxTextureSize);
|
||||
vkUnmapMemory(device->logicalDevice, stagingMemory);
|
||||
|
||||
// Setup buffer copy regions for each face including all of it's miplevels
|
||||
// Setup buffer copy regions for each face including all of its miplevels
|
||||
std::vector<VkBufferImageCopy> bufferCopyRegions;
|
||||
|
||||
for (uint32_t face = 0; face < 6; face++)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue