Searched defs:max_texture_size (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/cc/layers/
H A Dheads_up_display_layer.cc34 int max_texture_size = local
35 layer_tree_host()->GetRendererCapabilities().max_texture_size;
36 bounds.SetSize(std::min(max_texture_size,
38 std::min(max_texture_size,
H A Dpicture_layer_impl.cc494 int max_texture_size = local
495 layer_tree_impl()->resource_provider()->max_texture_size();
498 default_tile_size.SetToMin(gfx::Size(max_texture_size, max_texture_size));
503 gfx::Size(max_texture_size, max_texture_size));
/external/chromium_org/cc/base/
H A Dtiling_data_unittest.cc16 gfx::Size max_texture_size,
19 TilingData tiling(max_texture_size, total_size, has_border_texels);
31 gfx::Size max_texture_size,
35 TilingData tiling(max_texture_size, total_size, has_border_texels);
40 gfx::Size max_texture_size,
44 TilingData tiling(max_texture_size, total_size, has_border_texels);
49 gfx::Size max_texture_size,
53 TilingData tiling(max_texture_size, total_size, has_border_texels);
58 gfx::Size max_texture_size,
62 TilingData tiling(max_texture_size, total_siz
15 NumTiles( gfx::Size max_texture_size, gfx::Size total_size, bool has_border_texels) argument
30 XIndex( gfx::Size max_texture_size, gfx::Size total_size, bool has_border_texels, int x_coord) argument
39 YIndex( gfx::Size max_texture_size, gfx::Size total_size, bool has_border_texels, int y_coord) argument
48 MinBorderXIndex( gfx::Size max_texture_size, gfx::Size total_size, bool has_border_texels, int x_coord) argument
57 MinBorderYIndex( gfx::Size max_texture_size, gfx::Size total_size, bool has_border_texels, int y_coord) argument
66 MaxBorderXIndex( gfx::Size max_texture_size, gfx::Size total_size, bool has_border_texels, int x_coord) argument
75 MaxBorderYIndex( gfx::Size max_texture_size, gfx::Size total_size, bool has_border_texels, int y_coord) argument
84 PosX( gfx::Size max_texture_size, gfx::Size total_size, bool has_border_texels, int x_index) argument
93 PosY( gfx::Size max_texture_size, gfx::Size total_size, bool has_border_texels, int y_index) argument
102 SizeX( gfx::Size max_texture_size, gfx::Size total_size, bool has_border_texels, int x_index) argument
111 SizeY( gfx::Size max_texture_size, gfx::Size total_size, bool has_border_texels, int y_index) argument
[all...]
H A Dtiling_data.cc14 static int ComputeNumTiles(int max_texture_size, argument
17 if (max_texture_size - 2 * border_texels <= 0)
18 return total_size > 0 && max_texture_size >= total_size ? 1 : 0;
22 (max_texture_size - 2 * border_texels));
32 gfx::Size max_texture_size,
35 : max_texture_size_(max_texture_size),
42 gfx::Size max_texture_size,
45 : max_texture_size_(max_texture_size),
56 void TilingData::SetMaxTextureSize(gfx::Size max_texture_size) { argument
57 max_texture_size_ = max_texture_size;
31 TilingData( gfx::Size max_texture_size, gfx::Size total_size, bool has_border_texels) argument
41 TilingData( gfx::Size max_texture_size, gfx::Size total_size, int border_texels) argument
[all...]
H A Dtiling_data.h26 gfx::Size max_texture_size,
30 gfx::Size max_texture_size,
37 gfx::Size max_texture_size() const { return max_texture_size_; } function in class:cc::TilingData
38 void SetMaxTextureSize(gfx::Size max_texture_size);
/external/chromium_org/cc/trees/
H A Dlayer_tree_host_common.h40 int max_texture_size,
52 max_texture_size(max_texture_size),
65 int max_texture_size; member in struct:cc::LayerTreeHostCommon::CalcDrawPropsInputs
34 CalcDrawPropsInputs(LayerType* root_layer, gfx::Size device_viewport_size, const gfx::Transform& device_transform, float device_scale_factor, float page_scale_factor, LayerType* page_scale_application_layer, int max_texture_size, bool can_use_lcd_text, bool can_render_to_separate_surface, bool can_adjust_raster_scales, bool can_update_tile_priorities, RenderSurfaceLayerListType* render_surface_layer_list) argument
H A Dlayer_tree_host.h81 int max_texture_size; member in struct:cc::RendererCapabilities
H A Dlayer_tree_host_common.cc861 int max_texture_size; member in struct:cc::SubtreeGlobals
1572 std::min(clipped_content_rect.width(), globals.max_texture_size));
1574 std::min(clipped_content_rect.height(), globals.max_texture_size));
1677 globals.max_texture_size = inputs->max_texture_size;
1738 globals.max_texture_size = inputs->max_texture_size;
/external/chromium_org/gpu/command_buffer/service/
H A Dcontext_group.cc153 GLint max_texture_size = 0; local
158 GL_MAX_TEXTURE_SIZE, kMinTextureSize, &max_texture_size) ||
167 if (feature_info_->workarounds().max_texture_size) {
168 max_texture_size = std::min(
169 max_texture_size, feature_info_->workarounds().max_texture_size);
179 max_texture_size,
225 // TODO(gman): Use workarounds similar to max_texture_size above to implement.
H A Dfeature_info.h62 GLint max_texture_size; member in struct:gpu::gles2::FeatureInfo::Workarounds
H A Dtexture_manager.cc829 GLint max_texture_size,
838 max_texture_size_(max_texture_size),
840 max_levels_(ComputeMipMapCount(max_texture_size,
841 max_texture_size,
842 max_texture_size)),
826 TextureManager( MemoryTracker* memory_tracker, FeatureInfo* feature_info, GLint max_texture_size, GLint max_cube_map_texture_size) argument
/external/chromium_org/cc/resources/
H A Dresource_provider.h67 int max_texture_size() const { return max_texture_size_; } function in class:cc::ResourceProvider
/external/chromium_org/content/common/gpu/media/
H A Drendering_helper_gl.cc346 GLint max_texture_size; local
347 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &max_texture_size);
348 CHECK_GE(max_texture_size, params.thumbnails_page_size.width());
349 CHECK_GE(max_texture_size, params.thumbnails_page_size.height());
/external/chromium_org/gpu/command_buffer/client/
H A Dgles2_implementation.h136 GLint max_texture_size; member in struct:gpu::gles2::GLES2Implementation::GLStaticState::IntState

Completed in 315 milliseconds