revert cc increment gl draws

let someone else do it i dont have a mac to test
This commit is contained in:
ConfiG 2023-09-18 16:42:23 +03:00
parent 7d1897dbd6
commit 07f3acb0f9
No known key found for this signature in database
GPG key ID: 44DA1983F524C11B
2 changed files with 11 additions and 9 deletions
bindings
loader/include/Geode/cocos/include

View file

@ -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;

View file

@ -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 **/