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

Unified Diff: include/core/SkVertState.h

Issue 339183002: move some headers out of public (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 6 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/core/SkTDict.h ('k') | src/core/SkFlate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/core/SkVertState.h
diff --git a/include/core/SkVertState.h b/include/core/SkVertState.h
deleted file mode 100644
index ecf1773dc7adcbf914fae648ca8c76bee16db946..0000000000000000000000000000000000000000
--- a/include/core/SkVertState.h
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
- * Copyright 2014 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#ifndef SkVertState_DEFINED
-#define SkVertState_DEFINED
-
-#include "SkCanvas.h"
-
-/** \struct VertState
- This is a helper for drawVertices(). It is used to iterate over the triangles
- that are to be rendered based on an SkCanvas::VertexMode and (optionally) an
- index array. It does not copy the index array and the client must ensure it
- remains valid for the lifetime of the VertState object.
-*/
-
-struct VertState {
- int f0, f1, f2;
-
- /**
- * Construct a VertState from a vertex count, index array, and index count.
- * If the vertices are unindexed pass NULL for indices.
- */
- VertState(int vCount, const uint16_t indices[], int indexCount)
- : fIndices(indices) {
- fCurrIndex = 0;
- if (indices) {
- fCount = indexCount;
- } else {
- fCount = vCount;
- }
- }
-
- typedef bool (*Proc)(VertState*);
-
- /**
- * Choose an appropriate function to traverse the vertices.
- * @param mode Specifies the SkCanvas::VertexMode.
- */
- Proc chooseProc(SkCanvas::VertexMode mode);
-
-private:
- int fCount;
- int fCurrIndex;
- const uint16_t* fIndices;
-
- static bool Triangles(VertState*);
- static bool TrianglesX(VertState*);
- static bool TriangleStrip(VertState*);
- static bool TriangleStripX(VertState*);
- static bool TriangleFan(VertState*);
- static bool TriangleFanX(VertState*);
-};
-
-#endif
« no previous file with comments | « include/core/SkTDict.h ('k') | src/core/SkFlate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698