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

Unified Diff: include/gpu/GrProcessorUnitTest.h

Issue 1228683002: rename GrShaderDataManager -> GrProcessorDataManager (Closed) Base URL: https://skia.googlesource.com/skia.git@grfixuptests
Patch Set: rebase onto origin/master Created 5 years, 5 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
« no previous file with comments | « include/gpu/GrProcessorDataManager.h ('k') | include/gpu/GrShaderDataManager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/gpu/GrProcessorUnitTest.h
diff --git a/include/gpu/GrProcessorUnitTest.h b/include/gpu/GrProcessorUnitTest.h
index 741685a2c7cea13ce6c28e37d02f2f045ff4024f..3a2457e98c9afed08cefa3753cce315d217ff67c 100644
--- a/include/gpu/GrProcessorUnitTest.h
+++ b/include/gpu/GrProcessorUnitTest.h
@@ -35,19 +35,19 @@ enum {
struct GrProcessorTestData {
GrProcessorTestData(SkRandom* random,
GrContext* context,
- GrShaderDataManager* shaderDataManager,
+ GrProcessorDataManager* procDataManager,
const GrCaps* caps,
GrTexture* textures[2])
: fRandom(random)
, fContext(context)
- , fShaderDataManager(shaderDataManager)
+ , fProcDataManager(procDataManager)
, fCaps(caps) {
fTextures[0] = textures[0];
fTextures[1] = textures[1];
}
SkRandom* fRandom;
GrContext* fContext;
- GrShaderDataManager* fShaderDataManager;
+ GrProcessorDataManager* fProcDataManager;
const GrCaps* fCaps;
GrTexture* fTextures[2];
};
« no previous file with comments | « include/gpu/GrProcessorDataManager.h ('k') | include/gpu/GrShaderDataManager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698