Ricardo Quesada
|
16d0b43181
|
Constant fixes
Director::PROJECTION_2D, 3D,... -> Director::Projection::_2D, _3D, ...
Label::TEXT_ALIGNMENT_... -> Label::HAlignment::...
Label::TEXT_VERTICAL_ALIGNMENT_... -> Label::VAlignment::...
Texture2D::PIXEL_FORMAT_... -> Texture2D::PixelFormat::...
BlendFunc::BLEND_FUNC_DISABLE -> BlendFunc::DISABLE
Also adds more constant for BlendFunc
|
2013-07-25 13:36:19 -07:00 |
James Chen
|
a1c3631962
|
issue #2404: DrawPrimitives deprecated.
|
2013-07-25 22:38:55 +08:00 |
minggo
|
4d7ac6c800
|
issue #2430:fix conflict
|
2013-07-25 21:37:12 +08:00 |
minggo
|
e95c3b9150
|
issue #2430:make functions really deprecated
|
2013-07-25 21:15:24 +08:00 |
minggo
|
f5b116095c
|
issue #2430:make functions really deprecated
|
2013-07-25 21:09:44 +08:00 |
minggo
|
8b748e2992
|
issue #2430:use const member variable instead of macro
|
2013-07-25 21:04:32 +08:00 |
minggo
|
051caf5e54
|
issue #2430:move TransitionScene enum into class
|
2013-07-25 20:50:39 +08:00 |
minggo
|
df48f52aa3
|
issue #2430:use Image::Format instead of tImageFormat
|
2013-07-25 20:38:15 +08:00 |
minggo
|
18a19d5168
|
issue #2430:move Layer enum into class
|
2013-07-25 20:12:55 +08:00 |
minggo
|
beb192ecaa
|
issue #2430:move Menu enum into class
|
2013-07-25 20:04:24 +08:00 |
minggo
|
77afae124b
|
issue #2430:move Texture2D enum into class
|
2013-07-25 19:52:44 +08:00 |
minggo
|
2293630335
|
issue #2430:move enum in ccTypes.h class
|
2013-07-25 18:46:43 +08:00 |
minggo
|
acdd1cfe9d
|
issue #2430:move GLProgram enum into class
|
2013-07-25 17:48:22 +08:00 |
minggo
|
3d6f3bf8b2
|
issue #2430:move ProgressTimer enum into class
|
2013-07-25 15:11:36 +08:00 |
James Chen
|
387ea1899c
|
issue #2404: Disabling warning of invoking deprecated methods in engine. Rename CCCallFuncND to __CCCallFuncND, and add deprecated typedef CCCallFuncND.
Only disable warning for CCActionInstant.cpp and CCMenuItem.cpp
#if defined(__GNUC__) && ((__GNUC__ >= 4) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 1)))
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#elif _MSC_VER >= 1400 //vs 2005 or higher
#pragma warning (push)
#pragma warning (disable: 4996)
#endif
#if defined(__GNUC__) && ((__GNUC__ >= 4) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 1)))
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
#elif _MSC_VER >= 1400 //vs 2005 or higher
#pragma warning (pop)
#endif
|
2013-07-25 15:05:56 +08:00 |
minggo
|
658bffbb69
|
issue #2430:use upper letter for enum item in ccGLStateCache.h
|
2013-07-25 15:04:13 +08:00 |
minggo
|
08b13e9867
|
issue #2430:move Configuration enum into class
|
2013-07-25 14:47:12 +08:00 |
minggo
|
8dab462f6f
|
issue #2430:move Director enum into class
|
2013-07-25 14:39:32 +08:00 |
minggo
|
edcea3eb8d
|
issue #2430:move more Particle enum into class
|
2013-07-25 14:27:46 +08:00 |
minggo
|
4519a09ce4
|
Merge branch 'develop' of https://github.com/cocos2d/cocos2d-x into iss2430-modify_enum
|
2013-07-25 13:54:55 +08:00 |
minggo
|
4bfe6c2439
|
issue #2430:move Particle enum into class
|
2013-07-25 13:54:32 +08:00 |
James Chen
|
af3b8a0390
|
issue #2404: Rename CallFuncND/CallFuncO to CCCallFuncND/CCCallFuncO and mark them as deprecated classes. In v3.0, we could use CallFuncN instead.
|
2013-07-25 13:45:02 +08:00 |
James Chen
|
7fd0a923e9
|
issue #2404: Updating CCDeprecated.h, CC_DEPRECATED_ATTRIBUTE typedef Component CCComponent;
|
2013-07-24 17:52:00 +08:00 |
James Chen
|
44a338f63c
|
issue #2404: Re-add CallFuncND and CallFuncO and mark them as deprecated class.
|
2013-07-24 16:45:11 +08:00 |
James Chen
|
e5b0bc1fc7
|
Put the deprecated method 'CCLog' to 'CCDeprecated.h'.
|
2013-07-24 10:26:36 +08:00 |
James Chen
|
469e13607a
|
issue #2404: Marking CC prefix class as deprecated.
|
2013-07-18 13:38:23 +08:00 |
minggo
|
cb271e21d8
|
issue #2404:fixed some compiling warnings
|
2013-07-15 17:51:36 +08:00 |
minggo
|
b97ea0815f
|
issue #2404:re-add some global functions and variables and mark them as deprecated
|
2013-07-15 16:42:31 +08:00 |
minggo
|
eada29ee40
|
issue #2404:created CCDprecated.h and move all global functions and variables into it
|
2013-07-15 16:14:26 +08:00 |