Lines Matching full:texture
138 GrTexture* texture = this->originalTexture();
139 GrContext* context = texture->getContext();
149 GrTexture* copy = copy_on_gpu(texture, contentArea, copyParams);
161 GrTexture* texture = this->originalTexture();
162 GrContext* context = texture->getContext();
167 // If we generate a MIP chain for texture it will read pixel values from outside the content
172 } else if (!context->getGpu()->makeCopyForTextureParams(texture, params, ©Params)) {
180 return SkRef(texture);
196 /** Determines whether a texture domain is necessary and if so what domain to use. There are two
198 * - The first is the content area specified by the texture adjuster. We can *never* allow
224 // If the src rectangle contains the whole texture then no need for a domain.
232 // texture, and we aren't going to generate sample coords outside the constraint rect then we
269 // Unless we know the amount of outset and the texture matrix we have to conservatively enforce
284 // We may be able to use the fact that the texture coords are limited to the constraint
311 // Our sample coords for the texture are allowed to be outside the constraintRect so we
344 GrTexture* texture,
352 return GrTextureDomainEffect::Create(texture, textureMatrix, domain,
357 return GrSimpleTextureEffect::Create(texture, textureMatrix, params);
361 return GrBicubicEffect::Create(texture, textureMatrix, domain);
365 return GrBicubicEffect::Create(texture, textureMatrix, kClampClamp);
379 texture rather than the content area so
394 SkAutoTUnref<GrTexture> texture(this->refTextureSafeForParams(params, nullptr));
395 if (!texture) {
398 // If we made a copy then we only copied the contentArea, in which case the new texture is all
400 if (texture != this->originalTexture()) {
406 texture->width(), texture->height(),
410 // TODO: Copy the texture and adjust the texture matrix (both parts need to consider
420 texture->width(), texture->height(),
426 textureMatrix.postIDiv(texture->width(), texture->height());
427 return create_fp_for_domain_and_filter(texture, textureMatrix, domainMode, domain,
483 // Bicubic doesn't use filtering for it's texture accesses.
486 SkAutoTUnref<GrTexture> texture(this->refTextureForParams(params));
487 if (!texture) {
493 texture->width(), texture->height(), nullptr, fmForDetermineDomain,
497 normalizedTextureMatrix.postIDiv(texture->width(), texture->height());
498 return create_fp_for_domain_and_filter(texture, normalizedTextureMatrix, domainMode, domain,