Bug 620526 - yv12 to rgb565 neon should not be used on cpus without neon. r=jmuizelaar. ARM neon check. a=blocking-fennec

This commit is contained in:
Tom Brinkman 2011-01-19 09:53:46 -08:00
parent 733b524353
commit 6244449447
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@
//The logic for have_ycbcr_to_rgb565 is taken from pixman-cpu.c
#if !defined (__arm__)
#if !defined (HAVE_ARM_NEON)
int have_ycbcr_to_rgb565 ()
{

View File

@ -8,7 +8,7 @@
#include "chromium_types.h"
#include "gfxCore.h"
#ifdef __arm__
#ifdef HAVE_ARM_NEON
#define HAVE_YCBCR_TO_RGB565 1
#endif