From 8b785a539f06cb103931d2f60ebe3ac6a86aee36 Mon Sep 17 00:00:00 2001 From: saschawillems Date: Sat, 16 Jul 2016 21:03:13 +0200 Subject: [PATCH] Naming --- base/vulkanframebuffer.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/base/vulkanframebuffer.hpp b/base/vulkanframebuffer.hpp index 5ba04933..86a00e1f 100644 --- a/base/vulkanframebuffer.hpp +++ b/base/vulkanframebuffer.hpp @@ -62,9 +62,9 @@ namespace vk }; /** - * @brief Describes the attributes of a framebuffer to be created + * @brief Describes the attributes of an attachment to be created */ - struct FramebufferCreateInfo + struct AttachmentCreateInfo { uint32_t width, height; uint32_t layerCount; @@ -124,7 +124,7 @@ namespace vk * * @return Index of the new attachment */ - uint32_t addAttachment(vk::FramebufferCreateInfo createinfo, VkCommandBuffer layoutCmd) + uint32_t addAttachment(vk::AttachmentCreateInfo createinfo, VkCommandBuffer layoutCmd) { vk::FramebufferAttachment attachment;