Home
last modified time | relevance | path

Searched refs:textureMatrix (Results 1 – 19 of 19) sorted by relevance

/external/skqp/src/gpu/
DGrTextureProducer.cpp200 const SkMatrix& textureMatrix, in CreateFragmentProcessorForDomainAndFilter() argument
207 return GrTextureDomainEffect::Make(std::move(proxy), textureMatrix, domain, in CreateFragmentProcessorForDomainAndFilter()
212 return GrSimpleTextureEffect::Make(std::move(proxy), textureMatrix, samplerState); in CreateFragmentProcessorForDomainAndFilter()
216 return GrBicubicEffect::Make(std::move(proxy), textureMatrix, domain); in CreateFragmentProcessorForDomainAndFilter()
220 return GrBicubicEffect::Make(std::move(proxy), textureMatrix, kClampClamp); in CreateFragmentProcessorForDomainAndFilter()
DGrImageTextureMaker.cpp89 const SkMatrix& textureMatrix, in createFragmentProcessor() argument
99 if (!textureMatrix.isIdentity() || kNo_FilterConstraint != filterConstraint || in createFragmentProcessor()
101 return this->INHERITED::createFragmentProcessor(textureMatrix, constraintRect, in createFragmentProcessor()
DGrTextureAdjuster.cpp119 SkMatrix textureMatrix = origTextureMatrix; in createFragmentProcessor() local
135 textureMatrix.postScale(scaleAdjust[0], scaleAdjust[1]); in createFragmentProcessor()
157 return CreateFragmentProcessorForDomainAndFilter(std::move(proxy), textureMatrix, domainMode, in createFragmentProcessor()
DSkGpuDevice_drawTexture.cpp280 const SkMatrix* textureMatrix; in drawTextureProducerImpl() local
283 textureMatrix = &SkMatrix::I(); in drawTextureProducerImpl()
288 textureMatrix = &tempMatrix; in drawTextureProducerImpl()
290 auto fp = producer->createFragmentProcessor(*textureMatrix, clippedSrcRect, constraintMode, in drawTextureProducerImpl()
DGrTextureProducer.h66 const SkMatrix& textureMatrix,
173 const SkMatrix& textureMatrix,
DGrTextureMaker.cpp107 const SkMatrix& textureMatrix, in createFragmentProcessor() argument
136 SkMatrix adjustedMatrix = textureMatrix; in createFragmentProcessor()
DGrTextureMaker.h22 const SkMatrix& textureMatrix,
DGrTextureAdjuster.h24 const SkMatrix& textureMatrix,
DGrImageTextureMaker.h60 const SkMatrix& textureMatrix,
/external/skia/src/gpu/
DGrImageTextureMaker.cpp88 const SkMatrix& textureMatrix, in createFragmentProcessor() argument
99 if (!textureMatrix.isIdentity() || kNo_FilterConstraint != filterConstraint || in createFragmentProcessor()
102 return this->INHERITED::createFragmentProcessor(textureMatrix, constraintRect, in createFragmentProcessor()
DGrTextureProducer.cpp203 const SkMatrix& textureMatrix, in createFragmentProcessorForDomainAndFilter() argument
213 return GrTextureDomainEffect::Make(std::move(proxy), textureMatrix, domain, in createFragmentProcessorForDomainAndFilter()
220 return GrSimpleTextureEffect::Make(std::move(proxy), textureMatrix, samplerState); in createFragmentProcessorForDomainAndFilter()
231 return GrBicubicEffect::Make(std::move(proxy), textureMatrix, kClampClamp, in createFragmentProcessorForDomainAndFilter()
235 return GrBicubicEffect::Make(std::move(proxy), textureMatrix, in createFragmentProcessorForDomainAndFilter()
DGrTextureAdjuster.cpp121 SkMatrix textureMatrix = origTextureMatrix; in createFragmentProcessor() local
132 textureMatrix.postScale(scaleAdjust[0], scaleAdjust[1]); in createFragmentProcessor()
156 std::move(proxy), textureMatrix, domainMode, domain, filterOrNullForBicubic); in createFragmentProcessor()
DGrTextureProducer.h66 const SkMatrix& textureMatrix,
173 const SkMatrix& textureMatrix,
DGrTextureMaker.cpp107 const SkMatrix& textureMatrix, in createFragmentProcessor() argument
130 SkMatrix adjustedMatrix = textureMatrix; in createFragmentProcessor()
DGrTextureMaker.h22 const SkMatrix& textureMatrix,
DSkGpuDevice_drawTexture.cpp295 SkMatrix textureMatrix; in draw_texture_producer() local
297 textureMatrix = SkMatrix::I(); in draw_texture_producer()
299 if (!srcToDst.invert(&textureMatrix)) { in draw_texture_producer()
303 auto fp = producer->createFragmentProcessor(textureMatrix, src, constraintMode, in draw_texture_producer()
DGrTextureAdjuster.h26 const SkMatrix& textureMatrix,
DGrImageTextureMaker.h61 const SkMatrix& textureMatrix,
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
DRendererCommon.java162 public static float[] rotateTextureMatrix(float[] textureMatrix, float rotationDegree) { in rotateTextureMatrix() argument
166 return multiplyMatrices(textureMatrix, rotationMatrix); in rotateTextureMatrix()