Merge "Add missed doxygen documentation" into devel/master
[platform/core/uifw/dali-adaptor.git] / automated-tests / src / dali-adaptor / 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
23 // EXTERNAL INCLUDES
24 #include <dali/public-api/images/native-image-interface.h>
25 #include <dali/devel-api/images/native-image-interface-extension.h>
26 #include <dali/integration-api/gl-defines.h>
27
28 namespace Dali
29 {
30 class TestNativeImage;
31 typedef IntrusivePtr<TestNativeImage> TestNativeImagePointer;
32
33 class DALI_IMPORT_API TestNativeImageExtension: public Dali::NativeImageInterface::Extension
34 {
35 public:
36   inline const char* GetCustomFragmentPreFix(){return "#extension GL_OES_EGL_image_external:require\n";}
37   inline const char* GetCustomSamplerTypename(){return "samplerExternalOES";}
38
39   inline int GetEglImageTextureTarget(){return GL_TEXTURE_EXTERNAL_OES;}
40 };
41
42 class DALI_IMPORT_API TestNativeImage : public Dali::NativeImageInterface
43 {
44 public:
45   static TestNativeImagePointer New(int width, int height);
46
47   inline void SetGlExtensionCreateResult(bool result){ createResult = result;}
48   inline virtual bool GlExtensionCreate() { ++mExtensionCreateCalls; return createResult;};
49   inline virtual void GlExtensionDestroy() { ++mExtensionDestroyCalls; };
50   inline virtual GLenum TargetTexture() { ++mTargetTextureCalls; return 1;};
51   inline virtual void PrepareTexture() {};
52   inline virtual unsigned int GetWidth() const {return mWidth;};
53   inline virtual unsigned int GetHeight() const {return mHeight;};
54   inline virtual bool RequiresBlending() const {return true;};
55   inline virtual Dali::NativeImageInterface::Extension* GetExtension() {return mExtension;}
56
57 private:
58   TestNativeImage(int width, int height);
59   virtual ~TestNativeImage();
60
61   int mWidth;
62   int mHeight;
63 public:
64   int mExtensionCreateCalls;
65   int mExtensionDestroyCalls;
66   int mTargetTextureCalls;
67
68   bool createResult;
69   TestNativeImageExtension* mExtension;
70 };
71
72 } // Dali
73
74 #endif