b4876ccf45d8f2de1a8906ed0f3a28a07f727cf6
[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.h>
23
24 namespace Dali
25 {
26 class TestNativeImage;
27 typedef IntrusivePtr<TestNativeImage> TestNativeImagePointer;
28
29 class DALI_IMPORT_API TestNativeImage : public Dali::NativeImage
30 {
31 public:
32   static TestNativeImagePointer New(int width, int height);
33
34   inline virtual bool GlExtensionCreate() {return true;};
35   inline virtual void GlExtensionDestroy() {};
36   inline virtual GLenum TargetTexture() {return 1;};
37   inline virtual void PrepareTexture() {};
38   inline virtual unsigned int GetWidth() const {return mWidth;};
39   inline virtual unsigned int GetHeight() const {return mHeight;};
40   inline virtual Pixel::Format GetPixelFormat() const {return Pixel::RGBA8888;};
41
42 private:
43   TestNativeImage(int width, int height);
44   virtual ~TestNativeImage();
45
46   int mWidth;
47   int mHeight;
48 };
49
50 } // Dali
51
52 #endif