summaryrefslogtreecommitdiffstats
path: root/content/common/gpu/gpu_result_codes.h
diff options
context:
space:
mode:
authorkbr@chromium.org <kbr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-14 23:42:39 +0000
committerkbr@chromium.org <kbr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-14 23:42:39 +0000
commita2c351d808b62f74a152fd42e4c1f74d3c129bde (patch)
treeef6936d69386d2edbaec8f0f81e940f2ed37b8b4 /content/common/gpu/gpu_result_codes.h
parentabf9d8a185680c402e9fda2fd42a1d62f7893508 (diff)
downloadchromium_src-a2c351d808b62f74a152fd42e4c1f74d3c129bde.zip
chromium_src-a2c351d808b62f74a152fd42e4c1f74d3c129bde.tar.gz
chromium_src-a2c351d808b62f74a152fd42e4c1f74d3c129bde.tar.bz2
Added more detailed result codes for CreateViewCommandBuffer.
Creation of a view command buffer can legitimately fail if the surface has unexpectedly been deleted, for example if the window has been rapidly opened and closed. This should not cause loss of the entire GpuChannel for the associated renderer process. Added new automated test for this issue. Also tested manually with test case from bug report, and increased number_of_gpu_process_kills in context_lost test to 30 and verified that previous fix for Issue 365904 continues to work. BUG=381024 R=piman@chromium.org,danakj@chromium.org,jamesr@chromium.org Review URL: https://codereview.chromium.org/383303004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@283085 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/gpu/gpu_result_codes.h')
-rw-r--r--content/common/gpu/gpu_result_codes.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/content/common/gpu/gpu_result_codes.h b/content/common/gpu/gpu_result_codes.h
new file mode 100644
index 0000000..11f4272
--- /dev/null
+++ b/content/common/gpu/gpu_result_codes.h
@@ -0,0 +1,20 @@
+// Copyright 2014 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.
+
+#ifndef CONTENT_COMMON_GPU_GPU_RESULT_CODES_H_
+#define CONTENT_COMMON_GPU_GPU_RESULT_CODES_H_
+
+namespace content {
+
+enum CreateCommandBufferResult {
+ CREATE_COMMAND_BUFFER_SUCCEEDED,
+ CREATE_COMMAND_BUFFER_FAILED,
+ CREATE_COMMAND_BUFFER_FAILED_AND_CHANNEL_LOST,
+ CREATE_COMMAND_BUFFER_RESULT_LAST =
+ CREATE_COMMAND_BUFFER_FAILED_AND_CHANNEL_LOST
+};
+
+} // namespace content
+
+#endif // CONTENT_COMMON_GPU_GPU_RESULT_CODES_H_