OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GM
(Results
1 - 25
of
172
) sorted by null
1
2
3
4
5
6
7
/external/skia/gm/
gm.cpp
8
#include "
gm
.h"
11
SkString
GM
::gResourcePath;
13
GM
::
GM
() {
19
GM
::~
GM
() {}
21
void
GM
::draw(SkCanvas* canvas) {
26
void
GM
::drawContent(SkCanvas* canvas) {
34
void
GM
::drawBackground(SkCanvas* canvas) {
42
const char*
GM
::shortName()
[
all
...]
copyTo4444.cpp
8
#include "
gm
.h"
18
class CopyTo4444GM : public
GM
{
48
typedef
GM
INHERITED;
53
static
GM
* MyFactory(void*) { return new CopyTo4444GM; }
selftest.cpp
10
* output images across platforms for
gm
/tests/run.sh
13
#include "
gm
.h"
17
class SelfTestGM : public skiagm::
GM
{
50
// ('
gm
generating spurious pixel_error messages as of r7258')
54
static skiagm::
GM
* F1(void*) {
57
static skiagm::
GM
* F2(void*) {
58
return new SelfTestGM("selftest2", kTranslucentBlue, skiagm::
GM
::kSkipPipe_Flag);
giantbitmap.cpp
8
#include "
gm
.h"
21
class GiantBitmapGM : public skiagm::
GM
{
123
typedef
GM
INHERITED;
128
static skiagm::
GM
* G000(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, false, false); }
129
static skiagm::
GM
* G100(void*) { return new GiantBitmapGM(SkShader::kRepeat_TileMode, false, false); }
130
static skiagm::
GM
* G200(void*) { return new GiantBitmapGM(SkShader::kMirror_TileMode, false, false); }
131
static skiagm::
GM
* G010(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, true, false); }
132
static skiagm::
GM
* G110(void*) { return new GiantBitmapGM(SkShader::kRepeat_TileMode, true, false); }
133
static skiagm::
GM
* G210(void*) { return new GiantBitmapGM(SkShader::kMirror_TileMode, true, false); }
135
static skiagm::
GM
* G001(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, false, true);
[
all
...]
cmykjpeg.cpp
8
#include "
gm
.h"
18
class CMYKJpegGM : public
GM
{
69
typedef
GM
INHERITED;
74
static
GM
* MyFactory(void*) { return new CMYKJpegGM; }
dashcubics.cpp
8
#include "
gm
.h"
18
class DashCubicsGM : public skiagm::
GM
{
67
typedef
GM
INHERITED;
72
static skiagm::
GM
* MyFactory(void*) { return new DashCubicsGM; }
factory.cpp
8
#include "
gm
.h"
23
class FactoryGM : public
GM
{
63
typedef
GM
INHERITED;
68
static
GM
* MyFactory(void*) { return new FactoryGM; }
imageblur.cpp
8
#include "
gm
.h"
17
class ImageBlurGM : public
GM
{
53
typedef
GM
INHERITED;
58
static
GM
* MyFactory(void*) { return new ImageBlurGM; }
lcdtext.cpp
13
#include "
gm
.h"
18
class LcdTextGM : public
GM
{
61
typedef
GM
INHERITED;
67
static
GM
* MyFactory(void*) { return new LcdTextGM; }
tinybitmap.cpp
8
#include "
gm
.h"
31
class TinyBitmapGM : public
GM
{
56
typedef
GM
INHERITED;
61
static
GM
* MyFactory(void*) { return new TinyBitmapGM; }
imagemagnifier.cpp
8
#include "
gm
.h"
17
class ImageMagnifierGM : public
GM
{
26
return this->INHERITED::onGetFlags() |
GM
::kSkipTiled_Flag;
61
typedef
GM
INHERITED;
66
static
GM
* MyFactory(void*) { return new ImageMagnifierGM; }
gm.h
24
static skiagm::
GM
* SK_MACRO_APPEND_LINE(F_)(void*) { code; } \
35
class
GM
{
37
GM
();
38
virtual ~
GM
();
86
//
GM
's getISize bounds.
126
typedef SkTRegistry<
GM
*(*)(void*)> GMRegistry;
gradtext.cpp
8
#include "
gm
.h"
41
class ChromeGradTextGM1 : public
GM
{
64
typedef
GM
INHERITED;
69
class ChromeGradTextGM2 : public
GM
{
93
typedef
GM
INHERITED;
98
class GradTextGM : public
GM
{
154
typedef
GM
INHERITED;
159
static
GM
* MyFactory(void*) { return new GradTextGM; }
160
static
GM
* CMyFactory(void*) { return new ChromeGradTextGM1; }
161
static
GM
* CMyFactory2(void*) { return new ChromeGradTextGM2;
[
all
...]
arcofzorro.cpp
8
#include "
gm
.h"
13
// This
GM
draws a lot of arcs in a 'Z' shape. It particularly exercises
16
class ArcOfZorroGM : public
GM
{
76
typedef
GM
INHERITED;
bigtext.cpp
8
#include "
gm
.h"
17
class BigTextGM : public skiagm::
GM
{
50
typedef skiagm::
GM
INHERITED;
composeshader.cpp
9
#include "
gm
.h"
21
class ShaderGM : public
GM
{
74
typedef
GM
INHERITED ;
79
static
GM
* MyFactory(void*) { return new ShaderGM; }
distantclip.cpp
10
#include "
gm
.h"
16
class DistantClipGM : public
GM
{
69
typedef
GM
INHERITED;
74
static
GM
* MyFactory(void*) { return new DistantClipGM; }
/external/skia/dm/
DMReplayTask.h
8
#include "
gm
.h"
10
// Records a
GM
through an SkPicture, draws it, and compares against the reference bitmap.
18
skiagm::
GM
*, //
GM
to run through a picture. Takes ownership.
29
SkAutoTDelete<skiagm::
GM
> fGM;
DMSerializeTask.h
8
#include "
gm
.h"
18
skiagm::
GM
*,
28
SkAutoTDelete<skiagm::
GM
> fGM;
DMPipeTask.h
8
#include "
gm
.h"
10
// Sends a
GM
through a pipe, draws it, and compares against the reference bitmap.
18
skiagm::
GM
*, //
GM
to run through a pipe. Takes ownership.
31
SkAutoTDelete<skiagm::
GM
> fGM;
DMTileGridTask.h
8
#include "
gm
.h"
10
// Records a
GM
through an SkPicture, draws it in tiles, and compares against the reference bitmap.
18
skiagm::
GM
*, //
GM
to run through a picture. Takes ownership.
29
SkAutoTDelete<skiagm::
GM
> fGM;
DMUtil.h
15
// Draw
gm
to picture. Passes recordFlags to SkPicture::beginRecording().
16
void RecordPicture(skiagm::
GM
*
gm
, SkPicture* picture, uint32_t recordFlags = 0);
18
// Prepare bitmap to have
gm
draw into it with this config.
19
void SetupBitmap(const SkBitmap::Config config, skiagm::
GM
*
gm
, SkBitmap* bitmap);
DMReplayTask.cpp
14
skiagm::
GM
*
gm
,
19
, fGM(
gm
)
39
if (fGM->getFlags() & skiagm::
GM
::kSkipPicture_Flag) {
DMCpuTask.h
11
#include "
gm
.h"
34
SkAutoTDelete<skiagm::
GM
> fGM;
DMPipeTask.cpp
37
skiagm::
GM
*
gm
,
44
, fGM(
gm
)
74
if (fGM->getFlags() & skiagm::
GM
::kSkipPipe_Flag) {
78
fGM->getFlags() & skiagm::
GM
::kSkipPipeCrossProcess_Flag) {
Completed in 700 milliseconds
1
2
3
4
5
6
7