Question

Intel has new a beta release of Intel's cross-platform development suite to quickly & easily create applications targeting Android* and Windows* devices with native performance.

I have read about that from here intel Integrated Native Developer Experience and also downloaded one set up from Intel® INDE Opt-in Free Trial. But I didn't find the complete instructions how to use that setup with the current Android SDK or How to develop applications using this.

If anyone know about it please guide me.

Was it helpful?

Solution

The Intel INDE provides different tools for different development scenarios. It's still in beta and so there might be changes later to what I write.
Start with the "environment setup" which setups Android ADT, Android NDK and Visual Studio plugins for Android development.

The other tools are mostly for specific use cases. So to decide with which tool you want to continue depends on your needs:

Performance

  • Compiler: Optimized compiler for x86 targets
  • Compute Code Builder: Helps with developing OpenCL kernels
  • Threading: This is "Threading Building Blocks", a C++ template library for task parallelism.

Graphics/Media

  • GPA Frame Analyzer: Captures an OpenGL or DirectX frame to analyze it. For example you see all draw calls, Shader code and depending on the GPU also performance information
  • GPA Frame Debugger: Helps you fixing issues in a recorded OpenGL frame
  • GPA Platform Analyzer: Helps to understand the correlation between CPU and GPU by doing API tracing
  • GPA System Analyzer: Showing real time performance metrics about CPU and GPU usage for Android and Windows devices. There are also so called state overwrites that are allowing real time experiments with the graphics of your app like reducing the size of all textures to 1x1. You need an x86 based target.
  • Media: Optimized libraries mainly for audio and video.

BTW: I'm working for Intel.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top