OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GrPlot
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/skia/src/gpu/
GrAtlas.h
23
// a GrAtlas needs space on the texture, it requests a
GrPlot
. Each GrAtlas can claim one
25
//
GrPlot
is "full" (i.e. there is no room for the new subimage according to the GrRectanizer), the
26
// GrAtlas can request a new
GrPlot
via GrAtlas::addToAtlas().
29
// available to ensure that all draw calls are finished for that particular
GrPlot
.
32
class
GrPlot
{
34
SK_DECLARE_INTERNAL_LLIST_INTERFACE(
GrPlot
);
52
GrPlot
();
53
~
GrPlot
(); // does not try to delete the fNext field
74
typedef SkTInternalLList<
GrPlot
> GrPlotList;
85
bool contains(const
GrPlot
* plot) const {
[
all
...]
GrAtlas.cpp
23
GrPlot
::
GrPlot
()
36
GrPlot
::~
GrPlot
() {
42
void
GrPlot
::init(GrAtlas* atlas, int id, int offX, int offY, int width, int height, size_t bpp,
60
bool
GrPlot
::addSubImage(int width, int height, const void* image, SkIPoint16* loc) {
96
TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("skia.gpu"), "
GrPlot
::uploadToTexture");
112
void
GrPlot
::uploadToTexture() {
119
TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("skia.gpu"), "
GrPlot
::uploadToTexture");
146
void
GrPlot
::resetRects()
[
all
...]
GrLayerCache.h
131
void setPlot(
GrPlot
* plot) {
135
GrPlot
* plot() { return fPlot; }
142
SkDEBUGCODE(const
GrPlot
* plot() const { return fPlot; })
163
GrPlot
* fPlot;
178
// and one
GrPlot
(for the entire atlas). As such, the GrLayerCache
262
void purgePlot(
GrPlot
* plot);
GrTextStrike.h
50
void removePlot(const
GrPlot
* plot);
GrTextStrike.cpp
136
GrPlot
* plot = atlas->getUnusedPlot();
280
void GrTextStrike::removePlot(const
GrPlot
* plot) {
339
GrPlot
* plot = fAtlas->addToAtlas(&fPlotUsage, glyph->width(),
GrLayerCache.cpp
186
GrPlot
* plot = fAtlas->addToAtlas(&pictInfo->fPlotUsage,
344
GrPlot
* plot;
359
void GrLayerCache::purgePlot(
GrPlot
* plot) {
395
GrPlot
* plot;
/external/chromium_org/third_party/skia/include/gpu/
GrGlyph.h
15
class
GrPlot
;
26
GrPlot
* fPlot;
Completed in 1067 milliseconds