OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:inner_tile_size
(Results
1 - 1
of
1
) sorted by null
/external/chromium_org/cc/base/
tiling_data.cc
96
int
inner_tile_size
= max_texture_size_.width() - 2 * border_texels_;
local
97
int x = (src_position - 2 * border_texels_) /
inner_tile_size
;
106
int
inner_tile_size
= max_texture_size_.height() - 2 * border_texels_;
local
107
int y = (src_position - 2 * border_texels_) /
inner_tile_size
;
116
int
inner_tile_size
= max_texture_size_.width() - 2 * border_texels_;
local
117
int x = src_position /
inner_tile_size
;
126
int
inner_tile_size
= max_texture_size_.height() - 2 * border_texels_;
local
127
int y = src_position /
inner_tile_size
;
Completed in 482 milliseconds