Skip to content Skip to sidebar Skip to footer

Can The Android Phone Use The Windows Directx Library?

I have some functions which draws the game screen using the Direct X library in Windows. So, I am trying to use the functions in Android phone using the ndk. But I have some proble

Solution 1:

Android (and iOS as well) doesn't support DirectX but OpenGL ES. Check out 3D with OpenGL on the Android developer site.

Solution 2:

Android uses a linux kernel, not a windows one. So I'd suspect no.

Solution 3:

OpenGL is pretty similar to DirectX it doesn't take too much effort to convert between the 2. Failing that you could probably find the implementation in the Wine source code on how they handle DirectX calls and pass them to OpenGL.

Solution 4:

No, because Android is based on Linux Kernel, whch supports OpenGL.

Post a Comment for "Can The Android Phone Use The Windows Directx Library?"