summaryrefslogtreecommitdiffstats
path: root/gfx
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2020-05-15 09:01:29 +0000
committerMoonchild <moonchild@palemoon.org>2020-05-15 09:01:29 +0000
commit16ca000ca920ffcb59bc84155e5be5cee15058a5 (patch)
tree05b029bc60f3ffdc6f86e2d72c5bfc3bd5fbb891 /gfx
parent2e986f31443ca9164ad96ad596f7bc71ae1574c0 (diff)
downloadUXP-16ca000ca920ffcb59bc84155e5be5cee15058a5.tar
UXP-16ca000ca920ffcb59bc84155e5be5cee15058a5.tar.gz
UXP-16ca000ca920ffcb59bc84155e5be5cee15058a5.tar.lz
UXP-16ca000ca920ffcb59bc84155e5be5cee15058a5.tar.xz
UXP-16ca000ca920ffcb59bc84155e5be5cee15058a5.zip
Issue #80 - De-unify gfx/ycbcr
Diffstat (limited to 'gfx')
-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>