aboutsummaryrefslogtreecommitdiff
path: root/examples/01.HelloWorld_Android/android_tools.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/01.HelloWorld_Android/android_tools.h')
-rw-r--r--examples/01.HelloWorld_Android/android_tools.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/examples/01.HelloWorld_Android/android_tools.h b/examples/01.HelloWorld_Android/android_tools.h
deleted file mode 100644
index 2a3d66f..0000000
--- a/examples/01.HelloWorld_Android/android_tools.h
+++ /dev/null
@@ -1,33 +0,0 @@
-// 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__