Changed Atlas manager to use Dali::Texture instead of Dali::Atlas
[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 void SetGlExtensionCreateResult(bool result){ createResult = result;}
44   inline virtual bool GlExtensionCreate() { ++mExtensionCreateCalls; return createResult;};
45   inline virtual void GlExtensionDestroy() { ++mExtensionDestroyCalls; };
46   inline virtual GLenum TargetTexture() { ++mTargetTextureCalls; return 1;};
47   inline virtual void PrepareTexture() {};
48   inline virtual unsigned int GetWidth() const {return mWidth;};
49   inline virtual unsigned int GetHeight() const {return mHeight;};
50   inline virtual bool RequiresBlending() const {return true;};
51   inline virtual Dali::NativeImageInterface::Extension* GetExtension() {return mExtension;}
52
53 private:
54   TestNativeImage(int width, int height);
55   virtual ~TestNativeImage();
56
57   int mWidth;
58   int mHeight;
59 public:
60   int mExtensionCreateCalls;
61   int mExtensionDestroyCalls;
62   int mTargetTextureCalls;
63
64   bool createResult;
65   TestNativeImageExtension* mExtension;
66 };
67
68 } // Dali
69
70 #endif