• Latest MALI GLES 1.1 emulator (x86/x64)
    Hi ! I’m building an emulator for Android’s OpenGL API, it is, implementing the package android.opengl.* for Win/Linux, on Java, bridging it with JNI. Motivation is to have nice environment to test Android...
  • Latest MALI GLES 1.1 emulator (x86/x64)
    Hi ! I’m building an emulator for Android’s OpenGL API, it is, implementing the package android.opengl.* for Win/Linux, on Java, bridging it with JNI. Motivation is to have nice environment to test Android...
  • x86 _mm_sign_epi8(_m128i a,_m128i b) intrinsic NEON equivalent
    I have the x86 intrinsic (_m128i _mm_sign_epi8(_m128i a,_m128i b)) it performs the following task: for (i = 0; i < 16; i++) { if (b[i] < 0) { r[i] = -a[i]; } else if (b[i] == 0) { r[i] = 0; } else { r...
  • ARM - differences between cross compilng on x86 and x64
    I has an old project on ARM7TDMI-S which was developed on Windows XP. Currently I change system to newest and I have some problems with compilation: I use gcc-arm-none-eabi compiler. ...
  • x86 _mm_sign_epi8(_m128i a,_m128i b) intrinsic NEON equivalent
    I have the x86 intrinsic (_m128i _mm_sign_epi8(_m128i a,_m128i b)) it performs the following task: for (i = 0; i < 16; i++) { if (b[i] < 0) { r[i] = -a[i]; } else if (b[i] == 0) { r[i] = 0; } else { r...