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

Unified Diff: include/gpu/GrEffectStage.h

Issue 15821008: Make GrContext track the current matrix, render target, and clip directly rather than using GrDrawS… (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: put back wideopen check Created 7 years, 7 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: include/gpu/GrEffectStage.h
diff --git a/include/gpu/GrEffectStage.h b/include/gpu/GrEffectStage.h
index 07294e1ce562a0abcb366de2c1563d169e47fa3c..7b8852b2cf52f2b9019d7a65b04d989cb6324cfa 100644
--- a/include/gpu/GrEffectStage.h
+++ b/include/gpu/GrEffectStage.h
@@ -53,9 +53,9 @@ public:
return fCoordChangeMatrix == other.fCoordChangeMatrix;
}
- bool operator !=(const GrEffectStage& s) const { return !(*this == s); }
+ bool operator!= (const GrEffectStage& s) const { return !(*this == s); }
- GrEffectStage& operator =(const GrEffectStage& other) {
+ GrEffectStage& operator= (const GrEffectStage& other) {
GrSafeAssign(fEffectRef, other.fEffectRef);
fCoordChangeMatrixSet = other.fCoordChangeMatrixSet;
if (NULL != fEffectRef && fCoordChangeMatrixSet) {
« no previous file with comments | « include/gpu/GrContext.h ('k') | src/gpu/GrContext.cpp » ('j') | src/gpu/GrContext.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698