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

Side by Side Diff: gm/yuvtorgbeffect.cpp

Issue 815553003: Move ViewMatrix off of drawstate (Closed) Base URL: https://skia.googlesource.com/skia.git@remove-fragment-stage
Patch Set: more cleaning Created 5 years, 11 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 unified diff | Download patch
« no previous file with comments | « gm/texturedomaineffect.cpp ('k') | include/gpu/GrContext.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2014 Google Inc. 3 * Copyright 2014 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 // This test only works with the GPU backend. 9 // This test only works with the GPU backend.
10 10
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 108
109 for (int i = 0; i < 6; ++i) { 109 for (int i = 0; i < 6; ++i) {
110 SkAutoTUnref<GrFragmentProcessor> fp( 110 SkAutoTUnref<GrFragmentProcessor> fp(
111 GrYUVtoRGBEffect::Create(texture[indices[i][0]], 111 GrYUVtoRGBEffect::Create(texture[indices[i][0]],
112 texture[indices[i][1]], 112 texture[indices[i][1]],
113 texture[indices[i][2]], 113 texture[indices[i][2]],
114 static_cast<SkYUVColorSpace> (space))); 114 static_cast<SkYUVColorSpace> (space)));
115 if (fp) { 115 if (fp) {
116 SkMatrix viewMatrix; 116 SkMatrix viewMatrix;
117 viewMatrix.setTranslate(x, y); 117 viewMatrix.setTranslate(x, y);
118 GrDrawState drawState(viewMatrix); 118 GrDrawState drawState;
119 drawState.setRenderTarget(rt); 119 drawState.setRenderTarget(rt);
120 drawState.addColorProcessor(fp); 120 drawState.addColorProcessor(fp);
121 tt.target()->drawSimpleRect(&drawState, GrColor_WHITE, rende rRect); 121 tt.target()->drawSimpleRect(&drawState, GrColor_WHITE, viewM atrix, renderRect);
122 } 122 }
123 x += renderRect.width() + kTestPad; 123 x += renderRect.width() + kTestPad;
124 } 124 }
125 } 125 }
126 } 126 }
127 127
128 private: 128 private:
129 SkBitmap fBmp[3]; 129 SkBitmap fBmp[3];
130 130
131 typedef GM INHERITED; 131 typedef GM INHERITED;
132 }; 132 };
133 133
134 DEF_GM( return SkNEW(YUVtoRGBEffect); ) 134 DEF_GM( return SkNEW(YUVtoRGBEffect); )
135 } 135 }
136 136
137 #endif 137 #endif
OLDNEW
« no previous file with comments | « gm/texturedomaineffect.cpp ('k') | include/gpu/GrContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698