2015-07-07 09:54:42 +08:00
|
|
|
//
|
|
|
|
// CCDrawNode::onDrawGLPoint & CCDrawNode::onDrawGLLine miss
|
|
|
|
// calling GL::blendFunc, so when a sprite set blendFunc, these
|
|
|
|
// function will get a wrong result.
|
|
|
|
// In this test, see a red line when bug resolved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "Bug-CCDrawNode.h"
|
|
|
|
|
|
|
|
USING_NS_CC;
|
|
|
|
|
|
|
|
bool BugDrawNodeLayer::init()
|
|
|
|
{
|
|
|
|
if (BugsTestBase::init())
|
|
|
|
{
|
|
|
|
auto size = Director::getInstance()->getWinSize();
|
2016-06-08 13:36:36 +08:00
|
|
|
auto testSprite = Sprite::create("Images/close.png");
|
2015-07-07 09:54:42 +08:00
|
|
|
BlendFunc blend;
|
|
|
|
blend.src = GL_ZERO;
|
|
|
|
blend.dst = GL_ONE_MINUS_SRC_ALPHA;
|
|
|
|
testSprite->setBlendFunc(blend);
|
|
|
|
testSprite->setPosition(Vec2(size.width / 2, size.height / 2));
|
|
|
|
testSprite->setScale(10);
|
|
|
|
addChild(testSprite);
|
|
|
|
|
|
|
|
auto drawNode = DrawNode::create();
|
|
|
|
drawNode->drawLine(Vec2(0, 0), Vec2(size.width, size.height), Color4F(1, 0, 0, 0.5f));
|
2015-07-08 09:35:29 +08:00
|
|
|
Vec2 point = Vec2(size.width / 2, size.height / 2);
|
|
|
|
drawNode->drawPoint(point, 8, Color4F(1, 0, 0, 0.5f));
|
2015-07-07 09:54:42 +08:00
|
|
|
addChild(drawNode);
|
|
|
|
|
|
|
|
auto label = Label::create();
|
2015-07-08 09:35:29 +08:00
|
|
|
label->setString(std::string("If you see a red line with a block at center, the bug is fixed!"));
|
2015-07-07 09:54:42 +08:00
|
|
|
label->setPosition(size.width / 2, size.height / 4);
|
|
|
|
label->setTextColor(Color4B::ORANGE);
|
|
|
|
addChild(label);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|