~ubuntu-branches/ubuntu/vivid/libsdl2/vivid

« back to all changes in this revision

Viewing changes to src/video/SDL_blit_copy.c

  • Committer: Package Import Robot
  • Author(s): Manuel A. Fernandez Montecelo, Felix Geyer
  • Date: 2013-12-28 12:31:19 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20131228123119-e0k27gckmnzskfgb
Tags: 2.0.1+dfsg1-1
* New upstream release (Closes: #728974)
  - Remove patch applied upstream:
    bug-723797-false_positives_in_mouse_wheel_code.patch
* Bump Standards-Version to 3.9.5, no changes needed.

[ Felix Geyer ]
* Import upstream gpg key for uscan to verify the orig tarball.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
#ifdef __SSE__
29
29
/* This assumes 16-byte aligned src and dst */
30
 
static __inline__ void
 
30
static SDL_INLINE void
31
31
SDL_memcpySSE(Uint8 * dst, const Uint8 * src, int len)
32
32
{
33
33
    int i;
56
56
#ifdef _MSC_VER
57
57
#pragma warning(disable:4799)
58
58
#endif
59
 
static __inline__ void
 
59
static SDL_INLINE void
60
60
SDL_memcpyMMX(Uint8 * dst, const Uint8 * src, int len)
61
61
{
62
62
    const int remain = (len & 63);