OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fViewMatrix
(Results
1 - 6
of
6
) sorted by null
/external/skia/src/gpu/
GrDrawState.h
87
fCommon.
fViewMatrix
.reset();
695
void setViewMatrix(const SkMatrix& m) { fCommon.
fViewMatrix
= m; }
700
SkMatrix* viewMatrix() { return &fCommon.
fViewMatrix
; }
712
void preConcatViewMatrix(const SkMatrix& m) { fCommon.
fViewMatrix
.preConcat(m); }
724
void postConcatViewMatrix(const SkMatrix& m) { fCommon.
fViewMatrix
.postConcat(m); }
730
const SkMatrix& getViewMatrix() const { return fCommon.
fViewMatrix
; }
745
if (fCommon.
fViewMatrix
.invert(&inverse)) {
786
SkMatrix
fViewMatrix
;
830
return
fViewMatrix
;
840
SkMatrix
fViewMatrix
;
[
all
...]
GrDrawState.cpp
563
fDrawState->setViewMatrix(
fViewMatrix
);
584
fViewMatrix
= drawState->getViewMatrix();
599
fDrawState->setViewMatrix(
fViewMatrix
);
620
fViewMatrix
= drawState->getViewMatrix();
627
if (!inverted && !
fViewMatrix
.invert(&invVM)) {
/external/skia/src/gpu/gl/
GrGLProgram.h
204
SkMatrix
fViewMatrix
;
GrGpuGL.h
325
SkMatrix
fViewMatrix
;
328
fViewMatrix
= SkMatrix::InvalidMatrix();
GrGpuGL_program.cpp
95
if (fHWPathMatrixState.
fViewMatrix
!= vm ||
129
fHWPathMatrixState.
fViewMatrix
= vm;
132
} else if (!fCurrentProgram->
fViewMatrix
.cheapEqualTo(vm) ||
157
fCurrentProgram->
fViewMatrix
= vm;
GrGLProgram.cpp
65
fViewMatrix
= SkMatrix::InvalidMatrix();
[
all
...]
Completed in 60 milliseconds