blob: 02ad1587accafd7006483ec36d3d7383cd3eed7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/renderer/gpu/delegated_compositor_output_surface.h"
namespace content {
DelegatedCompositorOutputSurface::DelegatedCompositorOutputSurface(
int32 routing_id,
uint32 output_surface_id,
const scoped_refptr<ContextProviderCommandBuffer>& context_provider,
scoped_ptr<cc::SoftwareOutputDevice> software)
: CompositorOutputSurface(routing_id,
output_surface_id,
context_provider,
software.Pass(),
true) {
capabilities_.delegated_rendering = true;
capabilities_.max_frames_pending = 1;
}
} // namespace content
|