2018-01-29 16:25:32 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2010-08-26 10:53:49 +08:00
|
|
|
#ifndef _DRAW_PRIMITIVES_TEST_H_
|
|
|
|
#define _DRAW_PRIMITIVES_TEST_H_
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2012-11-21 11:43:08 +08:00
|
|
|
#include "cocos2d.h"
|
2013-06-07 08:12:28 +08:00
|
|
|
#include "../BaseTest.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2012-11-21 11:43:08 +08:00
|
|
|
#include <string>
|
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
DEFINE_TEST_SUITE(DrawPrimitivesTests);
|
|
|
|
|
|
|
|
class DrawPrimitivesBaseTest : public TestCase
|
2012-11-21 11:43:08 +08:00
|
|
|
{
|
|
|
|
public:
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
2012-11-21 11:43:08 +08:00
|
|
|
};
|
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
class DrawPrimitivesTest : public DrawPrimitivesBaseTest
|
2010-08-26 10:53:49 +08:00
|
|
|
{
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(DrawPrimitivesTest);
|
2012-04-19 14:35:52 +08:00
|
|
|
DrawPrimitivesTest();
|
2012-11-21 11:43:08 +08:00
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2015-04-09 08:37:30 +08:00
|
|
|
virtual void draw(cocos2d::Renderer* renderer, const cocos2d::Mat4& transform, uint32_t flags) override;
|
2014-03-06 07:49:08 +08:00
|
|
|
|
2013-12-25 11:44:05 +08:00
|
|
|
protected:
|
2015-04-09 08:37:30 +08:00
|
|
|
void onDraw(const cocos2d::Mat4& transform, uint32_t flags);
|
|
|
|
cocos2d::CustomCommand _customCommand;
|
2010-08-26 10:53:49 +08:00
|
|
|
};
|
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
class DrawNodeTest : public DrawPrimitivesBaseTest
|
2012-11-21 11:43:08 +08:00
|
|
|
{
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(DrawNodeTest);
|
|
|
|
|
2012-11-21 11:43:08 +08:00
|
|
|
DrawNodeTest();
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2012-11-21 11:43:08 +08:00
|
|
|
};
|
|
|
|
|
2015-08-26 06:07:03 +08:00
|
|
|
class PrimitivesCommandTest : public DrawPrimitivesBaseTest
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(PrimitivesCommandTest);
|
|
|
|
|
|
|
|
PrimitivesCommandTest();
|
|
|
|
virtual ~PrimitivesCommandTest();
|
|
|
|
|
|
|
|
virtual void draw(cocos2d::Renderer* renderer, const cocos2d::Mat4& transform, uint32_t flags) override;
|
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
cocos2d::Texture2D* _texture;
|
|
|
|
cocos2d::GLProgramState* _programState;
|
|
|
|
cocos2d::Primitive* _primitive;
|
|
|
|
|
|
|
|
cocos2d::PrimitiveCommand _primitiveCommand;
|
|
|
|
};
|
|
|
|
|
2016-07-07 08:21:58 +08:00
|
|
|
class Issue11942Test : public DrawPrimitivesBaseTest
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(Issue11942Test);
|
|
|
|
|
|
|
|
Issue11942Test();
|
|
|
|
|
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2010-08-26 10:53:49 +08:00
|
|
|
#endif
|