HomeSort by relevance Sort by last modified time
    Searched full:border_texels (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/cc/resources/
layer_tiling_data.cc 41 bool border_texels = border_texel_option == HAS_BORDER_TEXELS; local
42 if (has_border_texels() == border_texels)
46 tiling_data_.SetHasBorderTexels(border_texels);
layer_tiling_data.h 48 bool has_border_texels() const { return !!tiling_data_.border_texels(); }
picture_pile_base.h 92 int buffer_pixels() const { return tiling_.border_texels(); }
picture_pile_unittest.cc 143 EXPECT_EQ(7, pile_->tiling().border_texels());
  /external/chromium_org/cc/base/
tiling_data.h 30 int border_texels);
38 int border_texels() const { return border_texels_; } function in class:cc::TilingData
40 void SetBorderTexels(int border_texels);
tiling_data.cc 16 int border_texels) {
17 if (max_texture_size - 2 * border_texels <= 0)
21 1 + (total_size - 1 - 2 * border_texels) /
22 (max_texture_size - 2 * border_texels));
42 int border_texels)
45 border_texels_(border_texels) {
64 void TilingData::SetBorderTexels(int border_texels) {
65 border_texels_ = border_texels;
tiling_data_unittest.cc     [all...]
  /external/chromium_org/cc/layers/
tiled_layer_impl_unittest.cc 28 LayerTilingData::BorderTexelOption border_texels) {
32 LayerTilingData::Create(tile_size, border_texels);
51 LayerTilingData::BorderTexelOption border_texels) {
53 CreateLayerNoTiles(tile_size, layer_size, border_texels);

Completed in 294 milliseconds