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

Unified Diff: src/gpu/GrGpu.cpp

Issue 809843002: Remove GrGpu::flushGraphicsState (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years 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/GrGpu.h ('k') | src/gpu/GrTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/GrGpu.cpp
diff --git a/src/gpu/GrGpu.cpp b/src/gpu/GrGpu.cpp
index ac76e1503c40d6905babce4e435e470d12625268..297f2bf9efb066a8b449d6b0c5ae8569681408bb 100644
--- a/src/gpu/GrGpu.cpp
+++ b/src/gpu/GrGpu.cpp
@@ -277,9 +277,6 @@ const GrIndexBuffer* GrGpu::getQuadIndexBuffer() const {
void GrGpu::draw(const GrOptDrawState& ds, const GrDrawTarget::DrawInfo& info) {
this->handleDirtyContext();
- if (!this->flushGraphicsState(ds)) {
- return;
- }
this->onDraw(ds, info);
}
@@ -287,25 +284,14 @@ void GrGpu::stencilPath(const GrOptDrawState& ds,
const GrPath* path,
const GrStencilSettings& stencilSettings) {
this->handleDirtyContext();
-
- if (!this->flushGraphicsState(ds)) {
- return;
- }
-
- this->pathRendering()->stencilPath(path, stencilSettings);
+ this->onStencilPath(ds, path, stencilSettings);
}
-
void GrGpu::drawPath(const GrOptDrawState& ds,
const GrPath* path,
const GrStencilSettings& stencilSettings) {
this->handleDirtyContext();
-
- if (!this->flushGraphicsState(ds)) {
- return;
- }
-
- this->pathRendering()->drawPath(path, stencilSettings);
+ this->onDrawPath(ds, path, stencilSettings);
}
void GrGpu::drawPaths(const GrOptDrawState& ds,
@@ -317,12 +303,7 @@ void GrGpu::drawPaths(const GrOptDrawState& ds,
int count,
const GrStencilSettings& stencilSettings) {
this->handleDirtyContext();
-
- if (!this->flushGraphicsState(ds)) {
- return;
- }
-
pathRange->willDrawPaths(indices, indexType, count);
- this->pathRendering()->drawPaths(pathRange, indices, indexType, transformValues,
- transformType, count, stencilSettings);
+ this->onDrawPaths(ds, pathRange, indices, indexType, transformValues,
+ transformType, count, stencilSettings);
}
« no previous file with comments | « src/gpu/GrGpu.h ('k') | src/gpu/GrTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698