draw tests: fix review comments
[platform/upstream/VK-GL-CTS.git] / external / vulkancts / modules / vulkan / draw / vktDrawBufferObjectUtil.hpp
index a3b2bfd..f52e77a 100644 (file)
@@ -35,7 +35,6 @@
  * \brief Buffer Object Util
  *//*--------------------------------------------------------------------*/
 
-#include "vkDefs.hpp"
 #include "vkMemUtil.hpp"
 #include "vkRefUtil.hpp"
 
@@ -60,27 +59,24 @@ public:
 
                                                                Buffer                  (const vk::DeviceInterface &vk, vk::VkDevice device, vk::Move<vk::VkBuffer> object);
 
-
        void                                            bindMemory              (de::MovePtr<vk::Allocation> allocation);
 
-
        vk::VkBuffer                            object                  (void) const                                                            { return *m_object;             }
        vk::Allocation                          getBoundMemory  (void) const                                                            { return *m_allocation; }
 
 private:
 
        Buffer                                                                          (const Buffer& other);  // Not allowed!
-       Buffer                                          &operator=              (const Buffer& other);  // Not allowed!
-
+       Buffer&                                         operator=               (const Buffer& other);  // Not allowed!
 
        de::MovePtr<vk::Allocation>             m_allocation;
        vk::Unique<vk::VkBuffer>                m_object;
 
-       const   vk::DeviceInterface &   m_vk;
-                       vk::VkDevice                    m_device;
+       const vk::DeviceInterface&              m_vk;
+       vk::VkDevice                                    m_device;
 };
 
-} //Draw
-} //vkt
+} // Draw
+} // vkt
 
-#endif // _VKT_DRAWBUFFEROBJECTUTIL_HPP
+#endif // _VKTDRAWBUFFEROBJECTUTIL_HPP