| Index: content/common/gpu/create_gpu_memory_buffer_params.cc
|
| diff --git a/content/common/gpu/create_gpu_memory_buffer_params.cc b/content/common/gpu/create_gpu_memory_buffer_params.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..148a51b3a193e6a778bbf08b8f5f7f4e1a2201f3
|
| --- /dev/null
|
| +++ b/content/common/gpu/create_gpu_memory_buffer_params.cc
|
| @@ -0,0 +1,18 @@
|
| +// Copyright 2015 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/common/gpu/create_gpu_memory_buffer_params.h"
|
| +
|
| +namespace content {
|
| +
|
| +CreateGpuMemoryBufferParams::CreateGpuMemoryBufferParams()
|
| + : id(0),
|
| + format(gfx::BufferFormat::ATC),
|
| + usage(gfx::BufferUsage::GPU_READ),
|
| + client_id(0),
|
| + surface_handle(0) {}
|
| +
|
| +CreateGpuMemoryBufferParams::~CreateGpuMemoryBufferParams() {}
|
| +
|
| +} // namespace content
|
|
|