Lines Matching refs:this
4 * Use of this source code is governed by a BSD-style license that can be
46 * color, and for applying any coverage. It does this by emitting fragment shader code and
51 * GrXferProcessor may read the destination color. While operating in this mode, the subclass only
85 * Returns the barrier type, if any, that this XP will require. Note that the possibility
87 * considered by subclass overrides of this function.
105 if (!this->willReadDstColor()) {
106 this->onGetBlendInfo(&blendInfo);
114 * Returns whether or not this xferProcossor will set a secondary output to be used with dual
121 /** Returns true if this and other processor conservatively draw identically. It can only return
130 if (this->classID() != that.classID()) {
133 if (this->fWillReadDstColor != that.fWillReadDstColor) {
139 return this->onIsEqual(that);
155 * output. When using dst reads, the base class controls the secondary output and this method
163 * this method will not be called. The BlendInfo struct comes initialized to "no blending".
332 the same type that created this ProgramImpl and to have an identical processor key as the
333 one that created this ProgramImpl. This function calls onSetData on the subclass of
351 * responsible for both blending and coverage. A subclass only needs to implement this method if
360 * the blending logic. The base class applies coverage. A subclass only needs to implement this