Merge branch 'devel/master' into tizen
[platform/core/uifw/dali-adaptor.git] / dali / internal / imaging / macos / native-image-source-factory-mac.cpp
1 /*
2  * Copyright (c) 2021 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/internal/imaging/macos/native-image-source-factory-mac.h>
20
21 // INTERNAL HEADERS
22 #include <dali/internal/imaging/common/native-image-source-queue-impl.h>
23 #include <dali/internal/imaging/macos/native-image-source-impl-mac.h>
24
25 namespace Dali::Internal::Adaptor
26 {
27 std::unique_ptr<NativeImageSource>
28 NativeImageSourceFactoryCocoa::CreateNativeImageSource(
29   unsigned int                        width,
30   unsigned int                        height,
31   Dali::NativeImageSource::ColorDepth depth,
32   Any                                 nativeImageSource)
33 {
34   return std::unique_ptr<NativeImageSource>(NativeImageSourceCocoa::New(
35     width,
36     height,
37     depth,
38     nativeImageSource));
39 }
40
41 std::unique_ptr<NativeImageSourceQueue>
42 NativeImageSourceFactoryCocoa::CreateNativeImageSourceQueue(
43   unsigned int                              width,
44   unsigned int                              height,
45   Dali::NativeImageSourceQueue::ColorFormat colorFormat,
46   Any                                       nativeImageSourceQueue)
47 {
48   return std::unique_ptr<NativeImageSourceQueue>(nullptr);
49 }
50
51 // this should be created from somewhere
52 std::unique_ptr<NativeImageSourceFactory> GetNativeImageSourceFactory()
53 {
54   // returns native image source factory
55   return std::unique_ptr<NativeImageSourceFactoryCocoa>(new NativeImageSourceFactoryCocoa());
56 }
57
58 } // namespace Dali::Internal::Adaptor