HomeSort by relevance Sort by last modified time
    Searched refs:GrRectanizer (Results 1 - 11 of 11) sorted by null

  /external/skia/src/gpu/
GrRectanizer.h 15 class GrRectanizer {
17 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) {
22 virtual ~GrRectanizer() {}
37 static GrRectanizer* Factory(int width, int height);
GrRectanizer_pow2.h 11 #include "GrRectanizer.h"
19 class GrRectanizerPow2 : public GrRectanizer {
76 typedef GrRectanizer INHERITED;
GrRectanizer_skyline.h 11 #include "GrRectanizer.h"
16 class GrRectanizerSkyline : public GrRectanizer {
59 typedef GrRectanizer INHERITED;
GrAtlas.h 19 class GrRectanizer;
24 // or more GrPlots. The GrPlots keep track of subimage placement via their GrRectanizer. Once a
25 // GrPlot is "full" (i.e. there is no room for the new subimage according to the GrRectanizer), the
63 GrRectanizer* fRects;
GrRectanizer_skyline.cpp 120 GrRectanizer* GrRectanizer::Factory(int width, int height) {
GrBatchAtlas.h 18 class GrRectanizer;
GrBatchAtlas.cpp 11 #include "GrRectanizer.h"
27 // The GrBatchPlots keep track of subimage placement via their GrRectanizer. In turn, a GrBatchPlot
30 // GrRectanizer), it can no longer be used unless the last ref on the GrPlot has already been
165 fRects = GrRectanizer::Factory(width, height);
187 GrRectanizer* fRects;
GrAtlas.cpp 12 #include "GrRectanizer.h"
45 fRects = GrRectanizer::Factory(width, height);
  /external/skia/tests/
GpuRectanizerTest.cpp 20 // Basic test of a GrRectanizer-derived class' functionality
21 static void test_rectanizer_basic(skiatest::Reporter* reporter, GrRectanizer* rectanizer) {
34 GrRectanizer* rectanizer,
  /external/skia/samplecode/
SampleRectanizer.cpp 17 // This slide visualizes the various GrRectanizer-derived classes behavior
146 GrRectanizer* fRectanizers[2];
147 GrRectanizer* fCurRectanizer;
  /external/skia/bench/
RectanizerBench.cpp 19 * This bench exercises Ganesh' GrRectanizer classes. It exercises the following
118 SkAutoTDelete<GrRectanizer> fRectanizer;

Completed in 104 milliseconds