77247175de9b28c74e6f77c9f0ef2f54883209c9
[platform/core/uifw/dali-core.git] / automated-tests / src / dali / dali-test-suite-utils / test-native-image.h
1 #ifndef __TEST_NATIVE_IMAGE_H__
2 #define __TEST_NATIVE_IMAGE_H__
3
4 /*
5  * Copyright (c) 2014 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/public-api/images/native-image-interface.h>
23 #include <dali/devel-api/images/native-image-interface-extension.h>
24
25 namespace Dali
26 {
27 class TestNativeImage;
28 class TestNativeImageNoExt;
29 typedef IntrusivePtr<TestNativeImage> TestNativeImagePointer;
30 typedef IntrusivePtr<TestNativeImageNoExt> TestNativeImageNoExtPointer;
31
32 class DALI_IMPORT_API TestNativeImageExtension: public Dali::NativeImageInterface::Extension
33 {
34 public:
35   inline const char* GetCustomFragmentPreFix(){return "#extension GL_OES_EGL_image_external:require\n";}
36   inline const char* GetCustomSamplerTypename(){return "samplerExternalOES";}
37
38 };
39
40 class DALI_IMPORT_API TestNativeImage : public Dali::NativeImageInterface
41 {
42 public:
43   static TestNativeImagePointer New(int width, int height);
44
45   inline void SetGlExtensionCreateResult(bool result){ createResult = result;}
46   inline virtual bool GlExtensionCreate() { ++mExtensionCreateCalls; return createResult;};
47   inline virtual void GlExtensionDestroy() { ++mExtensionDestroyCalls; };
48   inline virtual GLenum TargetTexture() { ++mTargetTextureCalls; return 1;};
49   inline virtual void PrepareTexture() {};
50   inline virtual unsigned int GetWidth() const {return mWidth;};
51   inline virtual unsigned int GetHeight() const {return mHeight;};
52   inline virtual bool RequiresBlending() const {return true;};
53   inline virtual Dali::NativeImageInterface::Extension* GetExtension() {return mExtension;}
54
55 private:
56   TestNativeImage(int width, int height);
57   virtual ~TestNativeImage();
58
59   int mWidth;
60   int mHeight;
61 public:
62   int mExtensionCreateCalls;
63   int mExtensionDestroyCalls;
64   int mTargetTextureCalls;
65
66   bool createResult;
67   TestNativeImageExtension* mExtension;
68 };
69
70
71 class DALI_IMPORT_API TestNativeImageNoExt : public Dali::NativeImageInterface
72 {
73 public:
74   static TestNativeImageNoExtPointer New(int width, int height);
75
76   inline void SetGlExtensionCreateResult(bool result){ createResult = result;}
77   inline virtual bool GlExtensionCreate() { ++mExtensionCreateCalls; return createResult;};
78   inline virtual void GlExtensionDestroy() { ++mExtensionDestroyCalls; };
79   inline virtual GLenum TargetTexture() { ++mTargetTextureCalls; return 1;};
80   inline virtual void PrepareTexture() {};
81   inline virtual unsigned int GetWidth() const {return mWidth;};
82   inline virtual unsigned int GetHeight() const {return mHeight;};
83   inline virtual bool RequiresBlending() const {return true;};
84
85 private:
86   TestNativeImageNoExt(int width, int height);
87   virtual ~TestNativeImageNoExt();
88
89   int mWidth;
90   int mHeight;
91 public:
92   int mExtensionCreateCalls;
93   int mExtensionDestroyCalls;
94   int mTargetTextureCalls;
95   bool createResult;
96 };
97
98 } // Dali
99
100 #endif