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.
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.