09 2012 档案
摘要:The article follows the previous article “hello catcake”. In the last lesson, I have successfully built the catcake & hello_catcake and make it run on the Android emulator. But there was a small bug t...
阅读全文
摘要:catcake version catcake-0.9.5-src.tar.gz Build catcake into a static library with Android NDK After downloaded the package, then un-zip it into a workspace folder as you wish. To make some work ...
阅读全文
摘要:Android NDK Version android-ndk-r8b-windows.zip Build Shared Library Create file “Android.mk”under $PROJ_DIR/jni folder LOCAL_PATH := $(call my-dir)include $(CLEAR_VARS)LOCAL_MODULE := he...
阅读全文
摘要:Preparing : jdk-6u32-windows-i586.exe eclipse-java-indigo-SR2-win32.zip installer_r18-windows.exe ADT-18.0.0.zip Before you start install Android NDk, you need make sure Android SDK set up co...
阅读全文
摘要:原因:源代码有重复,如头文件中没有添加只能被引用一次的标记 #ifndef _HEADER_H_ #define _HEADER_H_ // header file content #endif 或者 写了类似#include "file.cpp"的代码!
阅读全文
摘要:解决办法: 在Project-->Setting-->Linker-->Command Line-->Additional options中加入: /nodefaultlib:libc
阅读全文
摘要:This sample shows how to apply Spherical Harmonic diffuse lighting as Global Illusion (GI). GI could give some more realistic effect to improve the global lighting effect than the traditional ambie...
阅读全文