3b227dbcc49dc31040a0fc0494e3302ecab76c9a
[platform/core/uifw/dali-core.git] / dali / graphics / vulkan / vulkan-command-pool.h
1 #ifndef DALI_GRAPHICS_VULKAN_COMMANDPOOL_H
2 #define DALI_GRAPHICS_VULKAN_COMMANDPOOL_H
3
4 /*
5  * Copyright (c) 2017 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 // INTERNAL INCLUDES
22 #include <dali/graphics/vulkan/vulkan-types.h>
23
24 namespace Dali
25 {
26 namespace Graphics
27 {
28 namespace Vulkan
29 {
30
31 class Graphics;
32 class CommandBuffer;
33 class CommandPool
34 {
35 public:
36
37   CommandPool( Graphics& graphics, const vk::CommandPoolCreateInfo& createInfo );
38   ~CommandPool();
39
40   std::unique_ptr<CommandBuffer> AllocateCommandBuffer( const vk::CommandBufferAllocateInfo& info );
41
42   std::unique_ptr<CommandBuffer> AllocateCommandBuffer( vk::CommandBufferLevel level );
43
44   vk::CommandPool GetPool() const;
45
46 private:
47   Graphics&       mGraphics;
48   vk::CommandPool mPool;
49 };
50
51 } // namespace Vulkan
52 } // namespace Graphics
53 } // namespace Dali
54
55 #endif // DALI_GRAPHICS_VULKAN_COMMANDPOOL_H