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

Unified Diff: gpu/command_buffer/common/gles2_cmd_utils.cc

Issue 660229: "/b/slave/chromium-rel-linux/build/src/gpu/command_buffer/client/gles2_demo_c... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gpu/command_buffer/common/gles2_cmd_utils.h ('k') | gpu/command_buffer/service/common_decoder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/common/gles2_cmd_utils.cc
===================================================================
--- gpu/command_buffer/common/gles2_cmd_utils.cc (revision 40197)
+++ gpu/command_buffer/common/gles2_cmd_utils.cc (working copy)
@@ -11,17 +11,6 @@
namespace gpu {
namespace gles2 {
-namespace gl_error_bit {
-enum GLErrorBit {
- kNoError = 0,
- kInvalidEnum = (1 << 0),
- kInvalidValue = (1 << 1),
- kInvalidOperation = (1 << 2),
- kOutOfMemory = (1 << 3),
- kInvalidFrameBufferOperation = (1 << 4),
-};
-}
-
int GLES2Util::GLGetNumValuesReturned(int id) const {
switch (id) {
// -- glGetBooleanv, glGetFloatv, glGetIntergerv
@@ -412,42 +401,7 @@
}
}
-uint32 GLES2Util::GLErrorToErrorBit(uint32 error) {
- switch (error) {
- case GL_INVALID_ENUM:
- return gl_error_bit::kInvalidEnum;
- case GL_INVALID_VALUE:
- return gl_error_bit::kInvalidValue;
- case GL_INVALID_OPERATION:
- return gl_error_bit::kInvalidOperation;
- case GL_OUT_OF_MEMORY:
- return gl_error_bit::kOutOfMemory;
- case GL_INVALID_FRAMEBUFFER_OPERATION:
- return gl_error_bit::kInvalidFrameBufferOperation;
- default:
- NOTREACHED();
- return gl_error_bit::kNoError;
- }
-}
-uint32 GLES2Util::GLErrorBitToGLError(uint32 error_bit) {
- switch (error_bit) {
- case gl_error_bit::kInvalidEnum:
- return GL_INVALID_ENUM;
- case gl_error_bit::kInvalidValue:
- return GL_INVALID_VALUE;
- case gl_error_bit::kInvalidOperation:
- return GL_INVALID_OPERATION;
- case gl_error_bit::kOutOfMemory:
- return GL_OUT_OF_MEMORY;
- case gl_error_bit::kInvalidFrameBufferOperation:
- return GL_INVALID_FRAMEBUFFER_OPERATION;
- default:
- NOTREACHED();
- return GL_NO_ERROR;
- }
-}
-
} // namespace gles2
} // namespace gpu
« no previous file with comments | « gpu/command_buffer/common/gles2_cmd_utils.h ('k') | gpu/command_buffer/service/common_decoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698