OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fDL
(Results
1 - 8
of
8
) sorted by null
/external/skia/src/core/
SkLiteRecorder.cpp
14
,
fDL
(nullptr) {}
18
fDL
= dl;
25
void SkLiteRecorder::onFlush() {
fDL
->flush(); }
27
void SkLiteRecorder::willSave() {
fDL
->save(); }
29
fDL
->saveLayer(rec.fBounds, rec.fPaint, rec.fBackdrop, rec.fClipMask, rec.fClipMatrix,
34
fDL
->saveBehind(subset);
37
void SkLiteRecorder::willRestore() {
fDL
->restore(); }
39
void SkLiteRecorder::didConcat (const SkMatrix& matrix) {
fDL
-> concat(matrix); }
40
void SkLiteRecorder::didSetMatrix(const SkMatrix& matrix) {
fDL
->setMatrix(matrix); }
41
void SkLiteRecorder::didTranslate(SkScalar dx, SkScalar dy) {
fDL
->translate(dx, dy);
[
all
...]
SkLiteRecorder.h
82
SkLiteDL*
fDL
;
/external/skqp/src/core/
SkLiteRecorder.cpp
14
,
fDL
(nullptr) {}
18
fDL
= dl;
25
void SkLiteRecorder::onFlush() {
fDL
->flush(); }
27
void SkLiteRecorder::willSave() {
fDL
->save(); }
29
fDL
->saveLayer(rec.fBounds, rec.fPaint, rec.fBackdrop, rec.fClipMask, rec.fClipMatrix,
34
fDL
->saveBehind(subset);
37
void SkLiteRecorder::willRestore() {
fDL
->restore(); }
39
void SkLiteRecorder::didConcat (const SkMatrix& matrix) {
fDL
-> concat(matrix); }
40
void SkLiteRecorder::didSetMatrix(const SkMatrix& matrix) {
fDL
->setMatrix(matrix); }
41
void SkLiteRecorder::didTranslate(SkScalar dx, SkScalar dy) {
fDL
->translate(dx, dy);
[
all
...]
SkLiteRecorder.h
81
SkLiteDL*
fDL
;
/external/skia/bench/
RecordingBench.cpp
43
fDL
.reset(new SkLiteDL());
45
r.reset(
fDL
.get(), fSrc->cullRect().roundOut());
51
if (
fDL
) {
56
fDL
->draw(&rec);
RecordingBench.h
39
std::unique_ptr<SkLiteDL>
fDL
;
/external/skqp/bench/
RecordingBench.cpp
43
fDL
.reset(new SkLiteDL());
45
r.reset(
fDL
.get(), fSrc->cullRect().roundOut());
51
if (
fDL
) {
56
fDL
->draw(&rec);
RecordingBench.h
39
std::unique_ptr<SkLiteDL>
fDL
;
Completed in 960 milliseconds