OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DEV_W
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/skia/tests/
FloatingPointTextureTest.cpp
22
static const int
DEV_W
= 100, DEV_H = 100;
23
static const int FP_CONTROL_ARRAY_SIZE =
DEV_W
* DEV_H * sizeof(float);
26
static const SkIRect DEV_RECT = SkIRect::MakeWH(
DEV_W
, DEV_H);
44
desc.fWidth =
DEV_W
;
71
context->writeTexturePixels(fpTexture, 0, 0,
DEV_W
, DEV_H, desc.fConfig,
73
context->readTexturePixels(fpTexture, 0, 0,
DEV_W
, DEV_H, desc.fConfig, readBuffer, 0);
ReadPixelsTest.cpp
21
static const int
DEV_W
= 100, DEV_H = 100;
22
static const SkIRect DEV_RECT = SkIRect::MakeWH(
DEV_W
, DEV_H);
23
static const SkRect DEV_RECT_S = SkRect::MakeWH(
DEV_W
* SK_Scalar1,
27
SkASSERT(x >= 0 && x <
DEV_W
);
99
bmp.allocN32Pixels(
DEV_W
, DEV_H);
102
for (int x = 0; x <
DEV_W
; ++x) {
249
SkIRect::MakeLTRB(-10, -10,
DEV_W
+ 10, DEV_H + 10),
251
SkIRect::MakeLTRB(
DEV_W
/ 4, DEV_H / 4, 3 *
DEV_W
/ 4, 3 * DEV_H / 4),
257
SkIRect::MakeLTRB(-10, -10,
DEV_W
/ 4, DEV_H / 4)
[
all
...]
WritePixelsTest.cpp
25
static const int
DEV_W
= 100, DEV_H = 100;
26
static const SkIRect DEV_RECT = SkIRect::MakeWH(
DEV_W
, DEV_H);
27
static const SkRect DEV_RECT_S = SkRect::MakeWH(
DEV_W
* SK_Scalar1,
32
SkASSERT(x >= 0 && x <
DEV_W
);
118
bmp.allocN32Pixels(
DEV_W
, DEV_H);
120
for (int x = 0; x <
DEV_W
; ++x) {
208
if (canvasInfo.width() !=
DEV_W
||
218
for (int cx = 0; cx <
DEV_W
; ++cx) {
243
const char* pad = reinterpret_cast<const char*>(canvasPixels +
DEV_W
);
244
for (size_t px = 0; px < canvasRowBytes - 4 *
DEV_W
; ++px)
[
all
...]
Completed in 650 milliseconds