mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
662a9e99f5
- remove cocos2dx folder - change all include paths in cocos2d to be relative
19 lines
No EOL
378 B
C++
Vendored
19 lines
No EOL
378 B
C++
Vendored
#include "DPIJni.h"
|
|
#include "jni/JniHelper.h"
|
|
|
|
USING_NS_CC;
|
|
|
|
extern "C" {
|
|
|
|
int getDPIJNI()
|
|
{
|
|
JniMethodInfo t;
|
|
jint ret = -1;
|
|
if (JniHelper::getStaticMethodInfo(t, "org/cocos2dx/lib/Cocos2dxHelper", "getDPI", "()I")) {
|
|
ret = t.env->CallStaticIntMethod(t.classID, t.methodID);
|
|
t.env->DeleteLocalRef(t.classID);
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
} // extern "C"
|