| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/common/gpu_create_command_buffer_config.h" | |
| 6 | |
| 7 GPUCreateCommandBufferConfig::GPUCreateCommandBufferConfig() {} | |
| 8 | |
| 9 GPUCreateCommandBufferConfig::GPUCreateCommandBufferConfig( | |
| 10 const std::string& _allowed_extensions, | |
| 11 const std::vector<int>& _attribs) | |
| 12 : allowed_extensions(_allowed_extensions), | |
| 13 attribs(_attribs) { | |
| 14 } | |
| 15 | |
| 16 GPUCreateCommandBufferConfig::~GPUCreateCommandBufferConfig() {} | |
| OLD | NEW |