use SK_RESTRICT instead of __restrict__

git-svn-id: http://skia.googlecode.com/svn/trunk@4801 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
reed@google.com 2012-07-27 13:08:36 +00:00
parent d2fd13685b
commit e5a196f440
2 changed files with 9 additions and 9 deletions

View File

@ -1006,7 +1006,7 @@ void S32A_D565_Opaque_SSE2(uint16_t* SK_RESTRICT dst,
* portable version is in core/SkBlitRow_D16.cpp
*/
void S32A_D565_Opaque_Dither_SSE2(uint16_t* __restrict__ dst, const SkPMColor* __restrict__ src,int count,
void S32A_D565_Opaque_Dither_SSE2(uint16_t* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT src,int count,
U8CPU alpha, int x, int y)
{
@ -1164,7 +1164,7 @@ void S32A_D565_Opaque_Dither_SSE2(uint16_t* __restrict__ dst, const SkPMColor* _
* portable version is in core/SkBlitRow_D16.cpp
*/
void S32_D565_Opaque_SSE2(uint16_t* __restrict__ dst, const SkPMColor* __restrict__ src,int count,
void S32_D565_Opaque_SSE2(uint16_t* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT src,int count,
U8CPU alpha, int x, int y)
{
@ -1224,7 +1224,7 @@ void S32_D565_Opaque_SSE2(uint16_t* __restrict__ dst, const SkPMColor* __restric
* portable version is in core/SkBlitRow_D16.cpp
*/
void S32_D565_Blend_SSE2(uint16_t* __restrict__ dst, const SkPMColor* __restrict__ src,int count,
void S32_D565_Blend_SSE2(uint16_t* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT src,int count,
U8CPU alpha, int x, int y)
{
@ -1314,7 +1314,7 @@ void S32_D565_Blend_SSE2(uint16_t* __restrict__ dst, const SkPMColor* __restrict
* portable version is in core/SkBlitRow_D16.cpp
*/
void S32_D565_Opaque_Dither_SSE2(uint16_t* __restrict__ dst, const SkPMColor* __restrict__ src,int count,
void S32_D565_Opaque_Dither_SSE2(uint16_t* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT src,int count,
U8CPU alpha, int x, int y)
{
#ifdef ENABLE_DITHER_MATRIX_4X4
@ -1418,7 +1418,7 @@ void S32_D565_Opaque_Dither_SSE2(uint16_t* __restrict__ dst, const SkPMColor* __
* portable version is in core/SkBlitRow_D16.cpp
*/
void S32_D565_Blend_Dither_SSE2(uint16_t* __restrict__ dst, const SkPMColor* __restrict__ src,int count,
void S32_D565_Blend_Dither_SSE2(uint16_t* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT src,int count,
U8CPU alpha, int x, int y)
{
#ifdef ENABLE_DITHER_MATRIX_4X4

View File

@ -41,14 +41,14 @@ void S32A_D565_Opaque_Dither_SSE2(uint16_t* SK_RESTRICT dst,
const SkPMColor* SK_RESTRICT src, int count,
U8CPU alpha, int x, int y);
void S32_D565_Opaque_SSE2(uint16_t* __restrict__ dst, const SkPMColor* __restrict__ src,int count,
void S32_D565_Opaque_SSE2(uint16_t* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT src,int count,
U8CPU alpha, int x, int y);
void S32_D565_Blend_SSE2(uint16_t* __restrict__ dst, const SkPMColor* __restrict__ src,int count,
void S32_D565_Blend_SSE2(uint16_t* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT src,int count,
U8CPU alpha, int x, int y);
void S32_D565_Opaque_Dither_SSE2(uint16_t* __restrict__ dst, const SkPMColor* __restrict__ src,int count,
void S32_D565_Opaque_Dither_SSE2(uint16_t* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT src,int count,
U8CPU alpha, int x, int y);
void S32_D565_Blend_Dither_SSE2(uint16_t* __restrict__ dst, const SkPMColor* __restrict__ src,int count,
void S32_D565_Blend_Dither_SSE2(uint16_t* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT src,int count,
U8CPU alpha, int x, int y);