NDK OpenGL undefined reference to glVertexPointer

走远了吗. 提交于 2019-12-05 20:16:55

I can't think of anything wrong but when I checked my make file there is one difference. Since I'm not good with compilers I don't know if it is relevant:

LOCAL_LDLIBS := -lGLESv1_CM -ldl -llog

Dynamic Linker Library:

is available and can be used to use the dlopen()/dlsym()/dlclose() functions provided by the Android dynamic linker. You will need to link against /system/lib/libdl.so with:

LOCAL_LDLIBS := -ldl

Hope it helps

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!