2014-03-04 16:51:35 +08:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef __TestCpp__UITextAtlasTest__
|
|
|
|
#define __TestCpp__UITextAtlasTest__
|
|
|
|
|
|
|
|
#include "../UIScene.h"
|
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
DEFINE_TEST_SUITE(UITextAtlasTests);
|
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
class UITextAtlasTest : public UIScene
|
|
|
|
{
|
2015-04-03 14:31:03 +08:00
|
|
|
public:
|
|
|
|
CREATE_FUNC(UITextAtlasTest);
|
|
|
|
|
|
|
|
virtual bool init() override;
|
2015-12-01 11:07:02 +08:00
|
|
|
void printWidgetResources(cocos2d::Ref* sender);
|
2015-11-30 16:17:13 +08:00
|
|
|
protected:
|
|
|
|
cocos2d::ui::TextAtlas* _textAtlas;
|
2014-03-04 16:51:35 +08:00
|
|
|
};
|
|
|
|
|
2016-09-30 09:42:21 +08:00
|
|
|
class UITextAtlasETC1ShadowTest : public UIScene
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(UITextAtlasETC1ShadowTest);
|
|
|
|
|
|
|
|
virtual bool init() override;
|
|
|
|
void printWidgetResources(cocos2d::Ref* sender);
|
|
|
|
protected:
|
|
|
|
cocos2d::ui::TextAtlas* _textAtlas;
|
|
|
|
};
|
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
#endif /* defined(__TestCpp__UITextAtlasTest__) */
|