aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/effects/GrYUVtoRGBEffect.h
diff options
context:
space:
mode:
authorGravatar joshualitt <joshualitt@chromium.org>2015-07-09 07:31:31 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-07-09 07:31:32 -0700
commit2cdec31c29a6ba1a6927b3ee2325bf53b86796aa (patch)
treedb9d14da67043d156ca7e02c21e375d29946caa2 /src/gpu/effects/GrYUVtoRGBEffect.h
parent8d3f7bde942ed42a4bbe86624f084f3d6bc37c1a (diff)
YUV to RGB Texture threading GrProcessorDataManager
Diffstat (limited to 'src/gpu/effects/GrYUVtoRGBEffect.h')
-rw-r--r--src/gpu/effects/GrYUVtoRGBEffect.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gpu/effects/GrYUVtoRGBEffect.h b/src/gpu/effects/GrYUVtoRGBEffect.h
index 03679788dd..a7379a48d9 100644
--- a/src/gpu/effects/GrYUVtoRGBEffect.h
+++ b/src/gpu/effects/GrYUVtoRGBEffect.h
@@ -11,14 +11,16 @@
#include "SkImageInfo.h"
class GrFragmentProcessor;
+class GrProcessorDataManager;
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(GrProcessorDataManager*, GrTexture* yTexture, GrTexture* uTexture,
+ GrTexture* vTexture, const SkISize sizes[3],
+ SkYUVColorSpace colorSpace);
};
#endif