[Vulkan] Image and Swapchain upgrade
[platform/core/uifw/dali-core.git] / dali / graphics / vulkan / vulkan-framebuffer.h
1 #ifndef DALI_GRAPHICS_VULKAN_FRAMEBUFFER
2 #define DALI_GRAPHICS_VULKAN_FRAMEBUFFER
3
4 /*
5  * Copyright (c) 2018 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 #include <dali/graphics/vulkan/vulkan-types.h>
22 namespace Dali
23 {
24 namespace Graphics
25 {
26 namespace Vulkan
27 {
28
29 class Image;
30
31 /**
32  * Framebuffer encapsulates following objects:
33  * - Images ( attachments )
34  * - Framebuffer
35  * - ImageViews
36  */
37 class Framebuffer : public VkManaged
38 {
39 public:
40
41   enum class AttachmentType
42   {
43     COLOR,
44     DEPTH_STENCIL,
45     DEPTH,
46     INPUT,
47     RESOLVE,
48     PRESERVE
49   };
50
51   static FramebufferRef New( Graphics& graphics, uint32_t width, uint32_t height );
52
53   uint32_t GetWidth() const;
54
55   uint32_t GetHeight() const;
56
57   ImageViewRef GetAttachment( AttachmentType type, uint32_t index ) const;
58
59   std::vector<ImageViewRef> GetAttachments( AttachmentType type ) const;
60
61   uint32_t GetAttachmentCount( AttachmentType type ) const;
62
63   void SetAttachment( ImageViewRef imageViewRef, Framebuffer::AttachmentType type, uint32_t index );
64
65   void Commit();
66
67   vk::RenderPass GetVkRenderPass() const;
68
69   vk::Framebuffer GetVkFramebuffer() const;
70
71   const std::vector<vk::ClearValue>& GetDefaultClearValues() const;
72
73 private:
74
75   Framebuffer( Graphics& graphics, uint32_t width, uint32_t height );
76
77   struct Impl;
78   std::unique_ptr<Impl> mImpl;
79
80 };
81
82
83 } // Namespace Vulkan
84
85 } // Namespace Graphics
86
87 } // Namespace Dali
88
89 #endif // DALI_GRAPHICS_VULKAN_FRAMEBUFFER