yuzu-android/src
Huw Pascoe 903906da3b Optimized Float<M,E> multiplication
Before:

ucomiss xmm1, xmm1
jp      .L9
pxor    xmm2, xmm2
mov     edx, 1
ucomiss xmm0, xmm2
setp    al
cmovne  eax, edx
test    al, al
jne     .L9
.L3:
movaps  xmm0, xmm2
ret
.L9:
ucomiss xmm0, xmm0
jp      .L10
pxor    xmm2, xmm2
mov     edx, 1
ucomiss xmm1, xmm2
setp    al
cmovne  eax, edx
test    al, al
je      .L3

After:

movaps  xmm2, xmm1
mulss   xmm2, xmm0
ucomiss xmm2, xmm2
jnp     .L3
ucomiss xmm1, xmm0
jnp     .L11
.L3:
movaps  xmm0, xmm2
ret
.L11:
pxor    xmm2, xmm2
jmp     .L3
2017-09-25 00:54:02 +01:00
..
audio_core interpolate: Interpolate on a frame-by-frame basis 2017-08-28 10:54:41 +01:00
citra WebService: Verify username and token (#2930) 2017-09-18 21:18:26 -04:00
citra_qt WebService: Verify username and token (#2930) 2017-09-18 21:18:26 -04:00
common Merge pull request #2822 from wwylele/sw_lighting-2 2017-08-09 18:54:29 +03:00
core WebService: Verify username and token (#2930) 2017-09-18 21:18:26 -04:00
input_common motion_emu: fix initialization order 2017-08-22 11:43:44 +03:00
network Added missing parts in libnetwork (#2838) 2017-08-19 11:14:33 -06:00
tests Tests/VFP: Use a standalone pagetable for the TestEnvironment memory operations. 2017-09-15 14:26:20 -05:00
video_core Optimized Float<M,E> multiplication 2017-09-25 00:54:02 +01:00
web_service WebService: Verify username and token (#2930) 2017-09-18 21:18:26 -04:00
.clang-format
CMakeLists.txt web_service: Add CMake flag to enable. 2017-07-11 18:33:41 -04:00