Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(442)

Side by Side Diff: content/common/gpu/gpu_result_codes.h

Issue 383303004: Added more detailed result codes for CreateViewCommandBuffer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698