diff options
author | Moonchild <moonchild@palemoon.org> | 2020-05-16 14:55:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-16 14:55:39 +0200 |
commit | a20f130def0352d04744e6208aa2cf7cddbcbe91 (patch) | |
tree | 6884007466c60a30367b462d6fb2ec478a183491 /gfx/ycbcr | |
parent | 9cf4eca9a895de24c58a3f309bfc5869e4649ff4 (diff) | |
parent | 4cfbcc498971703c00a500a99ae1562263964265 (diff) | |
download | UXP-a20f130def0352d04744e6208aa2cf7cddbcbe91.tar UXP-a20f130def0352d04744e6208aa2cf7cddbcbe91.tar.gz UXP-a20f130def0352d04744e6208aa2cf7cddbcbe91.tar.lz UXP-a20f130def0352d04744e6208aa2cf7cddbcbe91.tar.xz UXP-a20f130def0352d04744e6208aa2cf7cddbcbe91.zip |
Merge pull request #1550 from MoonchildProductions/deunify_gfx
Deunify gfx
Diffstat (limited to 'gfx/ycbcr')
-rw-r--r-- | gfx/ycbcr/moz.build | 2 | ||||
-rw-r--r-- | gfx/ycbcr/scale_yuv_argb.cpp | 2 |
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> |