Searched refs:y_index (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/cc/base/
H A Dtiling_data.cc210 int TilingData::TilePositionY(int y_index) const {
211 DCHECK_GE(y_index, 0);
212 DCHECK_LT(y_index, num_tiles_y_);
214 int pos = (max_texture_size_.height() - 2 * border_texels_) * y_index;
215 if (y_index != 0)
238 int TilingData::TileSizeY(int y_index) const {
239 DCHECK_GE(y_index, 0);
240 DCHECK_LT(y_index, num_tiles_y_);
242 if (!y_index && num_tiles_y_ == 1)
244 if (!y_index
[all...]
H A Dtiling_data.h60 int TilePositionY(int y_index) const;
62 int TileSizeY(int y_index) const;
65 gfx::Vector2d TextureOffset(int x_index, int y_index) const;
H A Dtiling_data_unittest.cc97 int y_index) {
99 return tiling.TilePositionY(y_index);
115 int y_index) {
117 return tiling.TileSizeY(y_index);
93 PosY( gfx::Size max_texture_size, gfx::Size total_size, bool has_border_texels, int y_index) argument
111 SizeY( gfx::Size max_texture_size, gfx::Size total_size, bool has_border_texels, int y_index) argument
/external/chromium_org/cc/resources/
H A Dlayer_tiling_data.h39 gfx::Vector2d texture_offset(int x_index, int y_index) const {
40 return tiling_data_.TextureOffset(x_index, y_index);
/external/chromium_org/third_party/skia/src/core/
H A DSkBitmapShaderTemplate.h143 int y_index = NOFILTER_BITMAP_SHADER_TILEPROC(fy, srcMaxY); local
144 // SkDEBUGF(("fy = %g, srcMaxY = %d, y_index = %d\n", SkFixedToFloat(fy), srcMaxY, y_index));
145 srcPixels = (const NOFILTER_BITMAP_SHADER_TYPE*)((const char*)srcPixels + y_index * srcRB);
/external/skia/src/core/
H A DSkBitmapShaderTemplate.h143 int y_index = NOFILTER_BITMAP_SHADER_TILEPROC(fy, srcMaxY); local
144 // SkDEBUGF(("fy = %g, srcMaxY = %d, y_index = %d\n", SkFixedToFloat(fy), srcMaxY, y_index));
145 srcPixels = (const NOFILTER_BITMAP_SHADER_TYPE*)((const char*)srcPixels + y_index * srcRB);
/external/chromium_org/tools/gyp/pylib/gyp/
H A Dxcodeproj_file.py2767 y_index = remote_products.index(y_remote)
2771 return cmp(x_index, y_index)

Completed in 156 milliseconds