summaryrefslogtreecommitdiffstats
path: root/gfx/ycbcr
diff options
context:
space:
mode:
authorThomas Groman <tgroman@nuegia.net>2021-03-30 02:27:37 -0700
committerThomas Groman <tgroman@nuegia.net>2021-03-30 02:27:37 -0700
commitc457666d6d5d478bbe3ca5ff09ae07e061b0ff00 (patch)
treef3273a3ade3841a2f5256a25edb09009fe0ae0e5 /gfx/ycbcr
parenta0c9e3200470c86563d6eff47156eff24bfd1491 (diff)
downloadUXP-c457666d6d5d478bbe3ca5ff09ae07e061b0ff00.tar
UXP-c457666d6d5d478bbe3ca5ff09ae07e061b0ff00.tar.gz
UXP-c457666d6d5d478bbe3ca5ff09ae07e061b0ff00.tar.lz
UXP-c457666d6d5d478bbe3ca5ff09ae07e061b0ff00.tar.xz
UXP-c457666d6d5d478bbe3ca5ff09ae07e061b0ff00.zip
De-unify gfx
Diffstat (limited to 'gfx/ycbcr')
-rw-r--r--gfx/ycbcr/moz.build2
-rw-r--r--gfx/ycbcr/scale_yuv_argb.cpp2
2 files changed, 3 insertions, 1 deletions
diff --git a/gfx/ycbcr/moz.build b/gfx/ycbcr/moz.build
index 04855e2e9..092079899 100644
--- a/gfx/ycbcr/moz.build
+++ b/gfx/ycbcr/moz.build
@@ -8,7 +8,7 @@ EXPORTS += [
'YCbCrUtils.h',
]
-UNIFIED_SOURCES += [
+SOURCES += [
'scale_yuv_argb.cpp',
'ycbcr_to_rgb565.cpp',
'YCbCrUtils.cpp',
diff --git a/gfx/ycbcr/scale_yuv_argb.cpp b/gfx/ycbcr/scale_yuv_argb.cpp
index 91a96cb9f..13b16c802 100644
--- a/gfx/ycbcr/scale_yuv_argb.cpp
+++ b/gfx/ycbcr/scale_yuv_argb.cpp
@@ -9,6 +9,8 @@
* be found in the AUTHORS file in the root of the source tree.
*/
+#include "scale_yuv_argb.h"
+
#include "libyuv/scale.h"
#include <assert.h>