OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:willReadDstColor
(Results
1 - 6
of
6
) sorted by null
/external/skia/src/gpu/
GrXferProcessor.cpp
21
bool
willReadDstColor
,
23
: fWillReadDstColor(
willReadDstColor
)
24
, fDstReadUsesMixedSamples(
willReadDstColor
&& hasMixedSamples)
27
SkASSERT(
willReadDstColor
);
45
if (this->
willReadDstColor
()) {
56
if (!this->
willReadDstColor
()) {
64
if (!this->
willReadDstColor
()) {
72
uint32_t key = this->
willReadDstColor
() ? 0x1 : 0x0;
200
if (this->
willReadDstColor
(caps, optimizations, hasMixedSamples)) {
217
return (this->
willReadDstColor
(caps, optimizations, hasMixedSamples) &
[
all
...]
/external/skia/include/gpu/
GrXferProcessor.h
176
bool
willReadDstColor
() const { return fWillReadDstColor; }
236
GrXferProcessor(const DstTexture*, bool
willReadDstColor
, bool hasMixedSamples);
361
bool
willReadDstColor
(const GrCaps& caps,
/external/skia/src/gpu/glsl/
GrGLSLXferProcessor.cpp
16
if (!args.fXP.
willReadDstColor
()) {
GrGLSLProgramBuilder.cpp
222
SkASSERT(fFS.hasReadDstColor() == xp.
willReadDstColor
());
/external/skia/src/gpu/effects/
GrCustomXfermode.cpp
194
SkASSERT(this->
willReadDstColor
() != this->hasHWBlendEquation());
/external/skia/tests/
GrPorterDuffTest.cpp
80
TEST_ASSERT(!xp->
willReadDstColor
());
[
all
...]
Completed in 95 milliseconds