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

Unified Diff: src/gpu/gl/GrGLPathProgramDataManager.cpp

Issue 1333273003: Start trying to collapse path program stuff (Closed) Base URL: https://skia.googlesource.com/skia.git@removebt
Patch Set: windows Created 5 years, 3 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 | « src/gpu/gl/GrGLPathProgramDataManager.h ('k') | src/gpu/gl/GrGLPrimitiveProcessor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/gl/GrGLPathProgramDataManager.cpp
diff --git a/src/gpu/gl/GrGLPathProgramDataManager.cpp b/src/gpu/gl/GrGLPathProgramDataManager.cpp
index f165015a210cab559daf9a8992845df379ccf75a..567c49c88ce848a45012957d88783d91863f1376 100644
--- a/src/gpu/gl/GrGLPathProgramDataManager.cpp
+++ b/src/gpu/gl/GrGLPathProgramDataManager.cpp
@@ -7,7 +7,6 @@
#include "gl/GrGLPathProgramDataManager.h"
#include "gl/GrGLPathRendering.h"
-#include "gl/GrGLUniformHandle.h"
#include "gl/GrGLGpu.h"
#include "SkMatrix.h"
@@ -33,8 +32,7 @@ GrGLPathProgramDataManager::GrGLPathProgramDataManager(
void GrGLPathProgramDataManager::setPathFragmentInputTransform(SeparableVaryingHandle u,
int components,
const SkMatrix& matrix) const {
- const SeparableVarying& fragmentInput =
- fSeparableVaryings[u.toProgramDataIndex()];
+ const SeparableVarying& fragmentInput = fSeparableVaryings[u.toIndex()];
SkASSERT((components == 2 && fragmentInput.fType == kVec2f_GrSLType) ||
(components == 3 && fragmentInput.fType == kVec3f_GrSLType));
« no previous file with comments | « src/gpu/gl/GrGLPathProgramDataManager.h ('k') | src/gpu/gl/GrGLPrimitiveProcessor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698