FreeRDP / FreeRDP-old

DEPRECATED VERSION - Check https://github.com/FreeRDP/FreeRDP : FreeRDP is a free remote desktop protocol client
http://www.freerdp.com
Apache License 2.0
80 stars 882 forks source link

libfreerdp-gdi: change gdi_copy_mem to simply use memcpy for better performance #52

Closed dorianj closed 13 years ago

dorianj commented 13 years ago

libfreerdp-gdi: change gdi_copy_mem to simply use memcpy for better performance

gdi_copy_mem is a performance critical region, called for each scanline in many graphics routines. This patch changes it to simply call memcpy, which is far faster than a naive c loop. More performance could be squeezed out thru other methods, but this is low hanging fruit with no adverse affects or compilation requirements.