OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:gWidth
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/third_party/skia/gm/
hairmodes.cpp
31
const int
gWidth
= 64;
33
const SkScalar W = SkIntToScalar(
gWidth
);
52
SkScalar x = SkScalarCos(SkIntToScalar(angle) * (SK_ScalarPI * 2) / 24) *
gWidth
;
aarectmodes.cpp
78
const int
gWidth
= 64;
80
const SkScalar W = SkIntToScalar(
gWidth
);
tilemodes.cpp
158
static const int
gWidth
= 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 };
170
SkScalar rad = SkIntToScalar(
gWidth
)/2;
210
const SkScalar w = SkIntToScalar(
gWidth
);
tilemodes_scaled.cpp
178
static const int
gWidth
= 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 };
190
SkScalar rad = SkIntToScalar(
gWidth
)/2;
230
const SkScalar w = SkIntToScalar(
gWidth
);
/external/chromium_org/third_party/skia/samplecode/
SampleAARectModes.cpp
33
const int
gWidth
= 64;
35
const SkScalar W = SkIntToScalar(
gWidth
);
SampleHairModes.cpp
33
const int
gWidth
= 64;
35
const SkScalar W = SkIntToScalar(
gWidth
);
54
SkScalar x = SkScalarCos(SkIntToScalar(angle) * (SK_ScalarPI * 2) / 24) *
gWidth
;
SampleTiling.cpp
54
static const int
gWidth
= 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
289
static const int
gWidth
= 256;
293
bm->allocN32Pixels(
gWidth
, gHeight);
305
SkIRect srcR = {
gWidth
, 0,
gWidth
+ 16, 16 };
ResourceCacheTest.cpp
16
static const int
gWidth
= 640;
23
const SkIRect size = SkIRect::MakeWH(
gWidth
, gHeight);
298
desc.fWidth =
gWidth
;
300
SkImageInfo info = SkImageInfo::MakeN32Premul(
gWidth
, gHeight);
DeferredCanvasTest.cpp
26
static const int
gWidth
= 2;
30
bm->allocN32Pixels(
gWidth
, gHeight);
35
SkSurface* surface = SkSurface::NewRasterPMColor(
gWidth
, gHeight);
257
fullRect.setXYWH(SkIntToScalar(0), SkIntToScalar(0), SkIntToScalar(
gWidth
),
[
all
...]
/cts/tests/tests/renderscript/src/android/renderscript/cts/
TestGetSet.java
35
final int
gWidth
= 252;
38
final int gCount =
gWidth
* gHeight * gDepth;
46
script.set_gWidth(
gWidth
);
48
scriptRelaxed.set_gWidth(
gWidth
);
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);
120
for (int i=0; i <
gWidth
; i++) {
134
for (int i=0; i <
gWidth
; i++) {
148
for (int i=0; i <
gWidth
; i++)
[
all
...]
Completed in 250 milliseconds