Index: src/gpu/effects/GrYUVtoRGBEffect.h |
diff --git a/src/gpu/effects/GrYUVtoRGBEffect.h b/src/gpu/effects/GrYUVtoRGBEffect.h |
index 150acd5a9027a553fac11d5a3a5813208a9333fa..52ccd23bbbfc75b1b99c706c74b6822a770edb96 100644 |
--- a/src/gpu/effects/GrYUVtoRGBEffect.h |
+++ b/src/gpu/effects/GrYUVtoRGBEffect.h |
@@ -8,6 +8,8 @@ |
#ifndef GrYUVtoRGBEffect_DEFINED |
#define GrYUVtoRGBEffect_DEFINED |
+#include "SkImageInfo.h" |
+ |
class GrEffect; |
class GrTexture; |
@@ -15,7 +17,8 @@ namespace GrYUVtoRGBEffect { |
/** |
* Creates an effect that performs color conversion from YUV to RGB |
*/ |
- GrEffect* Create(GrTexture* yTexture, GrTexture* uTexture, GrTexture* vTexture); |
+ GrEffect* Create(GrTexture* yTexture, GrTexture* uTexture, GrTexture* vTexture, |
+ SkYUVColorSpace colorSpace); |
}; |
#endif |