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

Unified Diff: Source/WebCore/platform/graphics/chromium/VideoLayerChromium.h

Issue 6578030: Merge 78787 - 2011-02-16 Victoria Kirst <vrk@google.com>... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/648/
Patch Set: Created 9 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: Source/WebCore/platform/graphics/chromium/VideoLayerChromium.h
===================================================================
--- Source/WebCore/platform/graphics/chromium/VideoLayerChromium.h (revision 79604)
+++ Source/WebCore/platform/graphics/chromium/VideoLayerChromium.h (working copy)
@@ -61,7 +61,8 @@
unsigned rgbaShaderProgram() const { return m_rgbaShaderProgram; }
int yuvShaderMatrixLocation() const { return m_yuvShaderMatrixLocation; }
int rgbaShaderMatrixLocation() const { return m_rgbaShaderMatrixLocation; }
- int yuvWidthScaleFactorLocation() const { return m_yuvWidthScaleFactorLocation; }
+ int yWidthScaleFactorLocation() const { return m_yWidthScaleFactorLocation; }
+ int uvWidthScaleFactorLocation() const { return m_uvWidthScaleFactorLocation; }
int rgbaWidthScaleFactorLocation() const { return m_rgbaWidthScaleFactorLocation; }
int yTextureLocation() const { return m_yTextureLocation; }
int uTextureLocation() const { return m_uTextureLocation; }
@@ -77,7 +78,8 @@
unsigned m_yuvShaderProgram;
unsigned m_rgbaShaderProgram;
int m_yuvShaderMatrixLocation;
- int m_yuvWidthScaleFactorLocation;
+ int m_yWidthScaleFactorLocation;
+ int m_uvWidthScaleFactorLocation;
int m_rgbaShaderMatrixLocation;
int m_rgbaWidthScaleFactorLocation;
int m_ccMatrixLocation;

Powered by Google App Engine
This is Rietveld 408576698