mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-04 09:11:31 -04:00
revert cc increment gl draws
let someone else do it i dont have a mac to test
This commit is contained in:
parent
7d1897dbd6
commit
07f3acb0f9
2 changed files with 11 additions and 9 deletions
|
@ -1261,15 +1261,19 @@ class cocos2d {
|
|||
static void ccDrawPoly(cocos2d::CCPoint const*, unsigned int, bool) = mac 0xed0a0;
|
||||
static void ccDrawColor4B(GLubyte, GLubyte, GLubyte, GLubyte) = mac 0xeddd0;
|
||||
static void CCMessageBox(const char* msg, const char* title) = mac 0xbabc0;
|
||||
|
||||
static uintptr_t macNumberOfDraws() {
|
||||
return geode::base::get() + 0x69ae90;
|
||||
}
|
||||
static void CC_INCREMENT_GL_DRAWS(int n) {
|
||||
*reinterpret_cast<int*>(macNumberOfDraws()) += n;
|
||||
}
|
||||
}
|
||||
|
||||
//uintptr_t macNumberOfDraws() {
|
||||
// return geode::base::get() + 0x69ae90;
|
||||
//}
|
||||
//void ccIncrementGLDraws(int n) {
|
||||
//#ifdef GEODE_IS_MACOS
|
||||
// *reinterpret_cast<int*>(macNumberOfDraws()) += n;
|
||||
//#else
|
||||
// CC_INCREMENT_GL_DRAWS(n);
|
||||
//#endif
|
||||
//}
|
||||
|
||||
[[link(win)]]
|
||||
class DS_Dictionary {
|
||||
DS_Dictionary() = mac 0xbe9a0;
|
||||
|
|
|
@ -246,9 +246,7 @@ It should work same as apples CFSwapInt32LittleToHost(..)
|
|||
The number of calls per frame are displayed on the screen when the CCDirector's stats are enabled.
|
||||
*/
|
||||
extern unsigned int ACTUAL_CC_DLL g_uNumberOfDraws;
|
||||
#ifndef GEODE_IS_MACOS
|
||||
#define CC_INCREMENT_GL_DRAWS(__n__) g_uNumberOfDraws += __n__
|
||||
#endif
|
||||
|
||||
/*******************/
|
||||
/** Notifications **/
|
||||
|
|
Loading…
Add table
Reference in a new issue