Searched defs:isMixedSampled (Results 1 - 3 of 3) sorted by relevance

/external/skia/include/private/
H A DGrRenderTargetProxy.h35 bool isMixedSampled() const { return fRenderTargetFlags & GrRenderTarget::Flags::kMixedSampled; } function in class:GrRenderTargetProxy
40 bool isUnifiedMultisampled() const { return fDesc.fSampleCnt > 0 && !this->isMixedSampled(); }
50 int numColorSamples() const { return this->isMixedSampled() ? 0 : fDesc.fSampleCnt; }
/external/skia/include/gpu/
H A DGrRenderTarget.h39 bool isMixedSampled() const { return fFlags & Flags::kMixedSampled; } function in class:GrRenderTarget
44 bool isUnifiedMultisampled() const { return fDesc.fSampleCnt > 0 && !this->isMixedSampled(); }
54 int numColorSamples() const { return this->isMixedSampled() ? 0 : fDesc.fSampleCnt; }
/external/skia/src/gpu/instanced/
H A DInstanceProcessor.cpp1075 fNeedsNeighborRadii = this->isMixedSampled() && !fOpInfo.fHasPerspective;
1079 bool isMixedSampled() const { return GrAAType::kMixedSamples == fOpInfo.aaType(); } function in class:gr_instanced::GLSLInstanceProcessor::BackendMultisample
1136 if (!this->isMixedSampled()) {
1224 if (!this->isMixedSampled()) {
1238 if (!this->isMixedSampled()) {
1302 SkASSERT(this->isMixedSampled());
1358 if (this->isMixedSampled()) {
1377 bool clampArcCoords = this->isMixedSampled() && (fOpInfo.fShapeTypes & kRRect_ShapesMask);
1381 opts.fResolveMixedSamples = this->isMixedSampled();
1391 if (!this->isMixedSampled()) {
[all...]

Completed in 96 milliseconds