Merging r5975 through r6036 from trunk to ogl-es branch.
GLES drivers adapted, but only did make compile-tests. git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/branches/ogl-es@6038 dfc29bdd-3216-0410-991c-e03cc46cb475
This commit is contained in:
33
examples/01.HelloWorld_Android/android_tools.h
Normal file
33
examples/01.HelloWorld_Android/android_tools.h
Normal file
@@ -0,0 +1,33 @@
|
||||
// This file is part of the "Irrlicht Engine".
|
||||
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
||||
|
||||
#ifndef __IRR_ANDROID_TOOLS_H__
|
||||
#define __IRR_ANDROID_TOOLS_H__
|
||||
|
||||
#include <irrlicht.h>
|
||||
#include <android_native_app_glue.h>
|
||||
|
||||
namespace irr
|
||||
{
|
||||
namespace android
|
||||
{
|
||||
|
||||
struct SDisplayMetrics
|
||||
{
|
||||
irr::s32 widthPixels;
|
||||
irr::s32 heightPixels;
|
||||
irr::f32 density;
|
||||
irr::s32 densityDpi;
|
||||
irr::f32 scaledDensity;
|
||||
irr::f32 xdpi;
|
||||
irr::f32 ydpi;
|
||||
};
|
||||
|
||||
//! Access SDisplayMetrics
|
||||
extern bool getDisplayMetrics(android_app* app, SDisplayMetrics & metrics);
|
||||
|
||||
extern void setSoftInputVisibility(android_app* app, bool visible);
|
||||
}
|
||||
}
|
||||
|
||||
#endif // __IRR_ANDROID_TOOLS_H__
|
Reference in New Issue
Block a user