diff options
| author | Ian Elliott <ianelliott@google.com> | 2016-09-08 11:34:52 -0600 |
|---|---|---|
| committer | Ian Elliott <ianelliott@google.com> | 2016-09-08 11:38:59 -0600 |
| commit | db4d533441e56f95e27cae5e5f9ae6260c8ae4b8 (patch) | |
| tree | 7de341eb3a8c2b161e4c3facaa2b0eeba2f30b8d | |
| parent | 38638a7c5cbb8b0235144b7d5ff67a157138bd30 (diff) | |
| download | usermoji-db4d533441e56f95e27cae5e5f9ae6260c8ae4b8.tar.xz | |
layers: Remove old/unnecessary FIXME from swapchain layer
This FIXME comment does not apply. It may have applied, if the line being
referred to once copied a pointer to user data, but at this point, the actual
data is being copied into a struct owned by the swapchain layer, which is what
the comment was about.
| -rw-r--r-- | layers/swapchain.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/layers/swapchain.cpp b/layers/swapchain.cpp index 792b0634..5aca7f68 100644 --- a/layers/swapchain.cpp +++ b/layers/swapchain.cpp @@ -1389,7 +1389,6 @@ VKAPI_ATTR VkResult VKAPI_CALL GetPhysicalDeviceSurfaceCapabilitiesKHR(VkPhysica if ((result == VK_SUCCESS) && pPhysicalDevice) { // Record the result of this query: pPhysicalDevice->gotSurfaceCapabilities = true; - // FIXME: NEED TO COPY THIS DATA, BECAUSE pSurfaceCapabilities POINTS TO APP-ALLOCATED DATA pPhysicalDevice->surfaceCapabilities = *pSurfaceCapabilities; } lock.unlock(); |
