Index: src/gpu/effects/GrYUVtoRGBEffect.h |
diff --git a/src/gpu/effects/GrYUVtoRGBEffect.h b/src/gpu/effects/GrYUVtoRGBEffect.h |
index 03679788ddb0ff1a32d91a2fc5bf4b3a02ad4691..28ae3207066064b1410207068386419244c7df76 100644 |
--- a/src/gpu/effects/GrYUVtoRGBEffect.h |
+++ b/src/gpu/effects/GrYUVtoRGBEffect.h |
@@ -11,14 +11,16 @@ |
#include "SkImageInfo.h" |
class GrFragmentProcessor; |
+class GrRenderTarget; |
class GrTexture; |
namespace GrYUVtoRGBEffect { |
/** |
* Creates an effect that performs color conversion from YUV to RGB |
*/ |
- GrFragmentProcessor* Create(GrTexture* yTexture, GrTexture* uTexture, GrTexture* vTexture, |
- const SkISize sizes[3], SkYUVColorSpace colorSpace); |
+ GrFragmentProcessor* Create(GrTexture* yTexture, GrTexture* uTexture, |
+ GrTexture* vTexture, const SkISize sizes[3], |
+ SkYUVColorSpace colorSpace, GrRenderTarget* dst); |
}; |
#endif |