Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2935)

Unified Diff: cc/shader.h

Issue 12157002: Adding YUVA support for enabling Alpha Playback (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moving VP8 Alpha Playback behind its own flag Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: cc/shader.h
diff --git a/cc/shader.h b/cc/shader.h
index 2555313d7825f355cecf207696888d82de62588a..c21c356ee33d9677c690ce69d9ee0afc86c686de 100644
--- a/cc/shader.h
+++ b/cc/shader.h
@@ -370,6 +370,31 @@ private:
int m_colorLocation;
};
+class FragmentShaderYUVAVideo {
fgalligan1 2013/02/12 01:20:58 You could make this inherit from FragmentShaderYUV
+public:
+ FragmentShaderYUVAVideo();
+ std::string getShaderString() const;
+
+ void init(WebKit::WebGraphicsContext3D*, unsigned program, bool usingBindUniform, int* baseUniformIndex);
+
+ int yTextureLocation() const { return m_yTextureLocation; }
+ int uTextureLocation() const { return m_uTextureLocation; }
+ int vTextureLocation() const { return m_vTextureLocation; }
+ int aTextureLocation() const { return m_aTextureLocation; }
+ int alphaLocation() const { return m_alphaLocation; }
+ int yuvMatrixLocation() const { return m_yuvMatrixLocation; }
+ int yuvAdjLocation() const { return m_yuvAdjLocation; }
+
+private:
+ int m_yTextureLocation;
+ int m_uTextureLocation;
+ int m_vTextureLocation;
+ int m_aTextureLocation;
+ int m_alphaLocation;
+ int m_yuvMatrixLocation;
+ int m_yuvAdjLocation;
+};
+
class FragmentShaderCheckerboard {
public:
FragmentShaderCheckerboard();

Powered by Google App Engine
This is Rietveld 408576698