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

Side by Side Diff: src/gpu/GrBitmapTextContext.h

Issue 269423007: Add CPU backing store for GrAtlas to reduce texture uploads (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Add assert to GrPlot::uploadTexture() Created 6 years, 7 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 | « src/gpu/GrAtlas.cpp ('k') | src/gpu/GrBitmapTextContext.cpp » ('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 * Copyright 2013 Google Inc. 2 * Copyright 2013 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef GrBitmapTextContext_DEFINED 8 #ifndef GrBitmapTextContext_DEFINED
9 #define GrBitmapTextContext_DEFINED 9 #define GrBitmapTextContext_DEFINED
10 10
11 #include "GrTextContext.h" 11 #include "GrTextContext.h"
12 12
13 class GrTextStrike; 13 class GrTextStrike;
14 class GrAtlasMgr;
14 15
15 /* 16 /*
16 * This class implements GrTextContext using standard bitmap fonts 17 * This class implements GrTextContext using standard bitmap fonts
17 */ 18 */
18 class GrBitmapTextContext : public GrTextContext { 19 class GrBitmapTextContext : public GrTextContext {
19 public: 20 public:
20 GrBitmapTextContext(GrContext*, const SkDeviceProperties&); 21 GrBitmapTextContext(GrContext*, const SkDeviceProperties&);
21 virtual ~GrBitmapTextContext(); 22 virtual ~GrBitmapTextContext();
22 23
23 virtual void drawText(const GrPaint&, const SkPaint&, const char text[], siz e_t byteLength, 24 virtual void drawText(const GrPaint&, const SkPaint&, const char text[], siz e_t byteLength,
(...skipping 21 matching lines...) Expand all
45 }; 46 };
46 47
47 SkPoint* fVertices; 48 SkPoint* fVertices;
48 int32_t fMaxVertices; 49 int32_t fMaxVertices;
49 GrTexture* fCurrTexture; 50 GrTexture* fCurrTexture;
50 int fCurrVertex; 51 int fCurrVertex;
51 SkRect fVertexBounds; 52 SkRect fVertexBounds;
52 }; 53 };
53 54
54 #endif 55 #endif
OLDNEW
« no previous file with comments | « src/gpu/GrAtlas.cpp ('k') | src/gpu/GrBitmapTextContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698