[Vulkan] Basic Vulkan backend
[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     INPUT,
46     RESOLVE,
47     PRESERVE
48   };
49
50   static Handle<Framebuffer> New( Graphics& graphics, uint32_t width, uint32_t height );
51
52   uint32_t GetWidth() const;
53
54   uint32_t GetHeight() const;
55
56   Handle<Image> GetAttachmentImage( AttachmentType type, uint32_t index ) const;
57
58   Handle<ImageView> GetAttachmentImageView( AttachmentType type, uint32_t index ) const;
59
60   void SetAttachment( Handle<Image> image, Framebuffer::AttachmentType type, uint32_t index );
61
62 private:
63
64   class Impl;
65   std::unique_ptr<Impl> mImpl;
66
67 };
68
69
70 } // Namespace Vulkan
71
72 } // Namespace Graphics
73
74 } // Namespace Dali
75
76 #endif // DALI_GRAPHICS_VULKAN_FRAMEBUFFER