Index: cc/shader.h |
diff --git a/cc/shader.h b/cc/shader.h |
index a691712f9c572cfd9800898c27dd2825b2321369..67e93cbcf09e2010b017111733941ab166eeb956 100644 |
--- a/cc/shader.h |
+++ b/cc/shader.h |
@@ -35,13 +35,11 @@ public: |
std::string getShaderString() const; |
int matrixLocation() const { return m_matrixLocation; } |
- int yWidthScaleFactorLocation() const { return m_yWidthScaleFactorLocation; } |
- int uvWidthScaleFactorLocation() const { return m_uvWidthScaleFactorLocation; } |
+ int texScaleLocation() const { return m_texScaleLocation; } |
private: |
int m_matrixLocation; |
- int m_yWidthScaleFactorLocation; |
- int m_uvWidthScaleFactorLocation; |
+ int m_texScaleLocation; |
}; |
class VertexShaderPos { |