Merge "NativeImageSource with tbm_surface for tizen 3.0 wayland" into devel/master
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / dali-toolkit-test-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 typedef IntrusivePtr<TestNativeImage> TestNativeImagePointer;
29
30 class DALI_IMPORT_API TestNativeImageExtension: public Dali::NativeImageInterface::Extension
31 {
32 public:
33   inline const char* GetCustomFragmentPreFix(){return "#extension GL_OES_EGL_image_external:require\n";}
34   inline const char* GetCustomSamplerTypename(){return "samplerExternalOES";}
35
36 };
37
38 class DALI_IMPORT_API TestNativeImage : public Dali::NativeImageInterface
39 {
40 public:
41   static TestNativeImagePointer New(int width, int height);
42
43   inline virtual bool GlExtensionCreate() { ++mExtensionCreateCalls; return true;};
44   inline virtual void GlExtensionDestroy() { ++mExtensionDestroyCalls; };
45   inline virtual GLenum TargetTexture() { ++mTargetTextureCalls; return 1;};
46   inline virtual void PrepareTexture() {};
47   inline virtual unsigned int GetWidth() const {return mWidth;};
48   inline virtual unsigned int GetHeight() const {return mHeight;};
49   inline virtual bool RequiresBlending() const {return true;};
50   inline virtual Dali::NativeImageInterface::Extension* GetExtension() {return mExtension;}
51
52 private:
53   TestNativeImage(int width, int height);
54   virtual ~TestNativeImage();
55
56   int mWidth;
57   int mHeight;
58 public:
59   int mExtensionCreateCalls;
60   int mExtensionDestroyCalls;
61   int mTargetTextureCalls;
62   TestNativeImageExtension* mExtension;
63 };
64
65 } // Dali
66
67 #endif