Formatted API
[platform/core/uifw/dali-core.git] / dali / public-api / rendering / frame-buffer.cpp
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use *this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include <dali/public-api/rendering/frame-buffer.h>
20
21 // EXTERNAL INCLUDES
22 #include <type_traits>
23
24 // INTERNAL INCLUDES
25 #include <dali/integration-api/debug.h>                      // DALI_LOG_WARNING_NOFN
26 #include <dali/internal/event/rendering/frame-buffer-impl.h> // Dali::Internal::FrameBuffer
27 #include <dali/internal/event/rendering/texture-impl.h>      // Dali::Internal::Texture
28
29 namespace Dali
30 {
31 namespace
32 {
33 /// Bool operator for FrameBuffer::Attachment::Mask.
34 /// in cpp as only used in this file
35 bool operator&(FrameBuffer::Attachment::Mask lhs, FrameBuffer::Attachment::Mask rhs)
36 {
37   using UnderlyingType = typename std::underlying_type<FrameBuffer::Attachment::Mask>::type;
38   return static_cast<bool>(static_cast<UnderlyingType>(lhs) & static_cast<UnderlyingType>(rhs));
39 }
40
41 } // unnamed namespace
42
43 FrameBuffer FrameBuffer::New(uint32_t width, uint32_t height)
44 {
45   return New(width, height, FrameBuffer::Attachment::COLOR);
46 }
47
48 FrameBuffer FrameBuffer::New(uint32_t width, uint32_t height, Attachment::Mask attachments)
49 {
50   Internal::FrameBufferPtr frameBuffer = Internal::FrameBuffer::New(width, height, attachments);
51   if(attachments & FrameBuffer::Attachment::COLOR)
52   {
53     Internal::TexturePtr texture = Internal::Texture::New(Dali::TextureType::TEXTURE_2D, Pixel::RGB888, width, height);
54     frameBuffer->AttachColorTexture(texture, 0u, 0u);
55   }
56   return FrameBuffer(frameBuffer.Get());
57 }
58
59 FrameBuffer::FrameBuffer()
60 {
61 }
62
63 FrameBuffer::~FrameBuffer()
64 {
65 }
66
67 FrameBuffer::FrameBuffer(const FrameBuffer& handle) = default;
68
69 FrameBuffer FrameBuffer::DownCast(BaseHandle handle)
70 {
71   return FrameBuffer(dynamic_cast<Dali::Internal::FrameBuffer*>(handle.GetObjectPtr()));
72 }
73
74 FrameBuffer& FrameBuffer::operator=(const FrameBuffer& handle) = default;
75
76 FrameBuffer::FrameBuffer(Internal::FrameBuffer* pointer)
77 : BaseHandle(pointer)
78 {
79 }
80
81 FrameBuffer::FrameBuffer(FrameBuffer&& rhs) = default;
82
83 FrameBuffer& FrameBuffer::operator=(FrameBuffer&& rhs) = default;
84
85 void FrameBuffer::AttachColorTexture(Texture& texture)
86 {
87   AttachColorTexture(texture, 0u, 0u);
88 }
89
90 void FrameBuffer::AttachColorTexture(Texture& texture, uint32_t mipmapLevel, uint32_t layer)
91 {
92   if(texture)
93   {
94     Internal::TexturePtr texturePtr(&GetImplementation(texture));
95     GetImplementation(*this).AttachColorTexture(texturePtr, mipmapLevel, layer);
96   }
97 }
98
99 Texture FrameBuffer::GetColorTexture()
100 {
101   Internal::Texture* texturePtr = GetImplementation(*this).GetColorTexture(0);
102   return Dali::Texture(texturePtr);
103 }
104
105 } //namespace Dali