• Home
  • Raw
  • Download

Lines Matching refs:stretch

111 static bool make_stretched_key(const GrUniqueKey& origKey, Stretch stretch,  in make_stretched_key()  argument
113 if (origKey.isValid() && kNo_Stretch != stretch) { in make_stretched_key()
116 builder[0] = stretch; in make_stretched_key()
141 Stretch stretch, in make_bitmap_keys() argument
145 if (kNo_Stretch != stretch) { in make_bitmap_keys()
146 make_stretched_key(*key, stretch, stretchedKey); in make_bitmap_keys()
193 GrTexture* stretch_texture_to_next_pot(GrTexture* inputTexture, Stretch stretch, in stretch_texture_to_next_pot() argument
196 SkASSERT(kNo_Stretch != stretch); in stretch_texture_to_next_pot()
241 kBilerp_Stretch == stretch ? GrTextureParams::kBilerp_FilterMode : in stretch_texture_to_next_pot()
468 Stretch stretch, in create_bitmap_texture() argument
471 if (kNo_Stretch != stretch) { in create_bitmap_texture()
483 GrTexture* stretched = stretch_texture_to_next_pot(unstretched, stretch, bmp.pixelRef(), in create_bitmap_texture()
495 Stretch stretch = get_stretch_type(ctx, bitmap.width(), bitmap.height(), params); in GrIsBitmapInCache() local
500 if (kNo_Stretch == stretch) { in GrIsBitmapInCache()
512 make_stretched_key(key, stretch, &stretchedKey); in GrIsBitmapInCache()
522 make_bitmap_keys(bitmap, stretch, &key, &stretchedKey); in GrIsBitmapInCache()
524 (kNo_Stretch == stretch) ? key : stretchedKey); in GrIsBitmapInCache()
531 Stretch stretch = get_stretch_type(ctx, bitmap.width(), bitmap.height(), params); in GrRefCachedBitmapTexture() local
535 if (kNo_Stretch == stretch) { in GrRefCachedBitmapTexture()
543 make_stretched_key(key, stretch, &stretchedKey); in GrRefCachedBitmapTexture()
551 return stretch_texture_to_next_pot(result, stretch, bitmap.pixelRef(), stretchedKey); in GrRefCachedBitmapTexture()
558 make_bitmap_keys(bitmap, stretch, &key, &resizedKey); in GrRefCachedBitmapTexture()
567 result = create_bitmap_texture(ctx, bitmap, stretch, key, resizedKey); in GrRefCachedBitmapTexture()