OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:gHeight
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/third_party/skia/gm/
hairmodes.cpp
32
const int
gHeight
= 64;
34
const SkScalar H = SkIntToScalar(
gHeight
);
53
SkScalar y = SkScalarSin(SkIntToScalar(angle) * (SK_ScalarPI * 2) / 24) *
gHeight
;
aarectmodes.cpp
79
const int
gHeight
= 64;
81
const SkScalar H = SkIntToScalar(
gHeight
);
tilemodes.cpp
159
static const int
gHeight
= 32;
163
makebm(&bm, kN32_SkColorType, gWidth,
gHeight
);
168
SkPoint pts[] = { { 0, 0 }, { SkIntToScalar(gWidth), SkIntToScalar(
gHeight
)} };
169
SkPoint center = { SkIntToScalar(gWidth)/2, SkIntToScalar(
gHeight
)/2 };
211
const SkScalar h = SkIntToScalar(
gHeight
);
tilemodes_scaled.cpp
179
static const int
gHeight
= 32;
183
makebm(&bm, kN32_SkColorType, gWidth,
gHeight
);
188
SkPoint pts[] = { { 0, 0 }, { SkIntToScalar(gWidth), SkIntToScalar(
gHeight
)} };
189
SkPoint center = { SkIntToScalar(gWidth)/2, SkIntToScalar(
gHeight
)/2 };
231
const SkScalar h = SkIntToScalar(
gHeight
);
/external/chromium_org/third_party/skia/samplecode/
SampleAARectModes.cpp
34
const int
gHeight
= 64;
36
const SkScalar H = SkIntToScalar(
gHeight
);
SampleHairModes.cpp
34
const int
gHeight
= 64;
36
const SkScalar H = SkIntToScalar(
gHeight
);
55
SkScalar y = SkScalarSin(SkIntToScalar(angle) * (SK_ScalarPI * 2) / 24) *
gHeight
;
SampleTiling.cpp
55
static const int
gHeight
= 32;
66
makebm(&fTexture[i], gColorTypes[i], gWidth,
gHeight
);
86
SkRect r = { 0, 0, SkIntToScalar(gWidth*2), SkIntToScalar(
gHeight
*2) };
/external/chromium_org/third_party/skia/tests/
DrawBitmapRectTest.cpp
290
static const int
gHeight
= 256;
293
bm->allocN32Pixels(gWidth,
gHeight
);
ResourceCacheTest.cpp
17
static const int
gHeight
= 480;
23
const SkIRect size = SkIRect::MakeWH(gWidth,
gHeight
);
299
desc.fHeight =
gHeight
;
300
SkImageInfo info = SkImageInfo::MakeN32Premul(gWidth,
gHeight
);
DeferredCanvasTest.cpp
27
static const int
gHeight
= 2;
30
bm->allocN32Pixels(gWidth,
gHeight
);
35
SkSurface* surface = SkSurface::NewRasterPMColor(gWidth,
gHeight
);
258
SkIntToScalar(
gHeight
));
[
all
...]
/cts/tests/tests/renderscript/src/android/renderscript/cts/
TestGetSet.java
36
final int
gHeight
= 31;
38
final int gCount = gWidth *
gHeight
* gDepth;
47
script.set_gHeight(
gHeight
);
49
scriptRelaxed.set_gHeight(
gHeight
);
93
Type t1 = Type.createX(mRS, e, gWidth *
gHeight
* gDepth / vs);
101
Type t2 = Type.createXY(mRS, e, gWidth / vs,
gHeight
* gDepth);
109
Type t3 = Type.createXYZ(mRS, e, gWidth / vs,
gHeight
, gDepth);
[
all
...]
Completed in 136 milliseconds