Home | History | Annotate | Download | only in surfaces

Lines Matching refs:surface_id

28     SurfaceId surface_id) {
29 Surface* referenced_surface = manager_->GetSurfaceForId(surface_id);
40 explicit RenderPassIdAllocator(int surface_id)
41 : surface_id_(surface_id), next_index_(1) {}
65 int surface_id) {
66 RenderPassIdAllocator* allocator = render_pass_allocator_map_.get(surface_id);
68 allocator = new RenderPassIdAllocator(surface_id);
69 render_pass_allocator_map_.set(surface_id, make_scoped_ptr(allocator));
77 SurfaceId surface_id = surface_quad->surface_id;
80 if (referenced_surfaces_.count(surface_id.id))
83 GetReferencedDataForSurfaceId(surface_id);
86 std::set<int>::iterator it = referenced_surfaces_.insert(surface_id.id).first;
94 RenderPass::Id remapped_pass_id = RemapPassId(source.id, surface_id.id);
114 surface_id.id);
128 surface_id.id);
155 int surface_id) {
180 RemapPassId(original_pass_id, surface_id);
194 int surface_id) {
200 RenderPass::Id remapped_pass_id = RemapPassId(source.id, surface_id);
212 surface_id);
218 scoped_ptr<CompositorFrame> SurfaceAggregator::Aggregate(SurfaceId surface_id) {
219 Surface* surface = manager_->GetSurfaceForId(surface_id);
234 std::set<int>::iterator it = referenced_surfaces_.insert(surface_id.id).first;
237 CopyPasses(source_pass_list, surface_id.id);