Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 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 #ifndef CONTENT_COMMON_GPU_GPU_RESULT_CODES_H_ | |
| 6 #define CONTENT_COMMON_GPU_GPU_RESULT_CODES_H_ | |
| 7 | |
| 8 namespace content { | |
| 9 | |
| 10 enum CreateCommandBufferResult { | |
| 11 CREATE_CMDBUF_SUCCEEDED, | |
|
piman
2014/07/11 23:20:10
nit: CMDBUF->COMMAND_BUFFER
Ken Russell (switch to Gerrit)
2014/07/12 00:44:52
Sure. Done.
| |
| 12 CREATE_CMDBUF_FAILED, | |
| 13 CREATE_CMDBUF_FAILED_AND_CHANNEL_LOST, | |
| 14 CREATE_CMDBUF_RESULT_LAST = | |
| 15 CREATE_CMDBUF_FAILED_AND_CHANNEL_LOST | |
| 16 }; | |
| 17 | |
| 18 } // namespace content | |
| 19 | |
| 20 #endif // CONTENT_COMMON_GPU_GPU_RESULT_CODES_H_ | |
| OLD | NEW |