OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GrRectanizer
(Results
1 - 5
of
5
) sorted by null
/external/skia/gpu/include/
GrRectanizer.h
31
class
GrRectanizer
{
33
GrRectanizer
(int width, int height) : fWidth(width), fHeight(height) {
38
virtual ~
GrRectanizer
() {}
55
static
GrRectanizer
* Factory(int width, int height);
GrAtlas.h
26
class
GrRectanizer
;
57
GrRectanizer
* fRects;
/external/skia/gpu/src/
GrRectanizer.cpp
18
#include "
GrRectanizer
.h"
23
class GrRectanizerPow2 : public
GrRectanizer
{
25
GrRectanizerPow2(int w, int h) :
GrRectanizer
(w, h) {
126
GrRectanizer
*
GrRectanizer
::Factory(int width, int height) {
GrRectanizer_fifo.cpp
18
#include "
GrRectanizer
.h"
23
class GrRectanizerFIFO : public
GrRectanizer
{
25
GrRectanizerFIFO(int w, int h) :
GrRectanizer
(w, h) {
126
GrRectanizer
*
GrRectanizer
::Factory(int width, int height) {
GrAtlas.cpp
21
#include "
GrRectanizer
.h"
60
fRects =
GrRectanizer
::Factory(GR_ATLAS_WIDTH - BORDER,
Completed in 281 milliseconds