aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/effects/GrYUVtoRGBEffect.h
diff options
context:
space:
mode:
authorGravatar bsalomon <bsalomon@google.com>2016-02-01 13:16:14 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-02-01 13:16:14 -0800
commitf267c1efe7de7a8e71404afde6cbf93c3808d267 (patch)
tree3ca07e8c6e5526ccfe4166953631006dd8b71845 /src/gpu/effects/GrYUVtoRGBEffect.h
parent9d02b264b72be64702e43cb797b7899a8a6926ca (diff)
Add ability to extract YUV planes from SkImage
Diffstat (limited to 'src/gpu/effects/GrYUVtoRGBEffect.h')
-rw-r--r--src/gpu/effects/GrYUVtoRGBEffect.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/gpu/effects/GrYUVtoRGBEffect.h b/src/gpu/effects/GrYUVtoRGBEffect.h
deleted file mode 100644
index 03679788dd..0000000000
--- a/src/gpu/effects/GrYUVtoRGBEffect.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * Copyright 2014 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#ifndef GrYUVtoRGBEffect_DEFINED
-#define GrYUVtoRGBEffect_DEFINED
-
-#include "SkImageInfo.h"
-
-class GrFragmentProcessor;
-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);
-};
-
-#endif