OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:gLevels
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/skia/samplecode/
SampleSubpixelTranslate.cpp
65
static const SkPaint::FilterLevel
gLevels
[] = {
76
for (size_t i = 0; i < SK_ARRAY_COUNT(
gLevels
); ++i) {
77
paint.setFilterLevel(
gLevels
[i]);
82
canvas->drawText( "AA Scaled", strlen("AA Scaled"), fCurPos.fX + SK_ARRAY_COUNT(
gLevels
) * (fSize + 10), fCurPos.fY + fSize/2, paint );
85
for (size_t i = 0; i < SK_ARRAY_COUNT(
gLevels
); ++i) {
86
paint.setFilterLevel(
gLevels
[i]);
90
canvas->drawText( "Scaled", strlen("Scaled"), fCurPos.fX + SK_ARRAY_COUNT(
gLevels
) * (fSize + 10), fCurPos.fY + fSize + 10 + fSize/2, paint );
93
for (size_t i = 0; i < SK_ARRAY_COUNT(
gLevels
); ++i) {
94
paint.setFilterLevel(
gLevels
[i]);
98
canvas->drawText( "AA No Scale", strlen("AA No Scale"), fCurPos.fX + SK_ARRAY_COUNT(
gLevels
) * (fBM.width() + 10), fCurPos.fY + 2*(fSize + 10) + fSize/2, paint )
[
all
...]
/external/chromium_org/third_party/skia/bench/
BitmapBench.cpp
250
static const SkPaint::FilterLevel
gLevels
[] = {
256
paint->setFilterLevel(
gLevels
[index]);
/external/chromium_org/third_party/skia/tests/
PaintTest.cpp
125
static const SkPaint::FilterLevel
gLevels
[] = {
131
for (size_t i = 0; i < SK_ARRAY_COUNT(
gLevels
); ++i) {
132
p0.setFilterLevel(
gLevels
[i]);
133
REPORTER_ASSERT(reporter,
gLevels
[i] == p0.getFilterLevel());
135
REPORTER_ASSERT(reporter,
gLevels
[i] == p1.getFilterLevel());
Completed in 38 milliseconds