1 // Copyright (c) 2013 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.
5 // This file contains the ErrorState class.
7 #ifndef GPU_COMMAND_BUFFER_SERVICE_ERROR_STATE_H_
8 #define GPU_COMMAND_BUFFER_SERVICE_ERROR_STATE_H_
12 #include "base/compiler_specific.h"
13 #include "base/macros.h"
14 #include "gpu/gpu_export.h"
21 // Use these macro to synthesize GL errors instead of calling the error_state
22 // functions directly as they will propogate the __FILE__ and __LINE__.
24 // Use to synthesize a GL error on the error_state.
25 #define ERRORSTATE_SET_GL_ERROR(error_state, error, function_name, msg) \
26 error_state->SetGLError(__FILE__, __LINE__, error, function_name, msg)
28 // Use to synthesize an INVALID_ENUM GL error on the error_state. Will attempt
29 // to expand the enum to a string.
30 #define ERRORSTATE_SET_GL_ERROR_INVALID_ENUM( \
31 error_state, function_name, value, label) \
32 error_state->SetGLErrorInvalidEnum( \
33 __FILE__, __LINE__, function_name, value, label)
35 // Use to synthesize a GL error on the error_state for an invalid enum based
36 // integer parameter. Will attempt to expand the parameter to a string.
37 #define ERRORSTATE_SET_GL_ERROR_INVALID_PARAMI( \
38 error_state, error, function_name, pname, param) \
39 error_state->SetGLErrorInvalidParami( \
40 __FILE__, __LINE__, error, function_name, pname, param)
42 // Use to synthesize a GL error on the error_state for an invalid enum based
43 // float parameter. Will attempt to expand the parameter to a string.
44 #define ERRORSTATE_SET_GL_ERROR_INVALID_PARAMF( \
45 error_state, error, function_name, pname, param) \
46 error_state->SetGLErrorInvalidParamf( \
47 __FILE__, __LINE__, error, function_name, pname, param)
49 // Use to move all pending error to the wrapper so on your next GL call
50 // you can see if that call generates an error.
51 #define ERRORSTATE_COPY_REAL_GL_ERRORS_TO_WRAPPER(error_state, function_name) \
52 error_state->CopyRealGLErrorsToWrapper(__FILE__, __LINE__, function_name)
53 // Use to look at the real GL error and still pass it on to the user.
54 #define ERRORSTATE_PEEK_GL_ERROR(error_state, function_name) \
55 error_state->PeekGLError(__FILE__, __LINE__, function_name)
56 // Use to clear all current GL errors. FAILS if there are any.
57 #define ERRORSTATE_CLEAR_REAL_GL_ERRORS(error_state, function_name) \
58 error_state->ClearRealGLErrors(__FILE__, __LINE__, function_name)
60 class GPU_EXPORT ErrorStateClient
{
62 // GL_OUT_OF_MEMORY can cause side effects such as losing the context.
63 virtual void OnOutOfMemoryError() = 0;
66 class GPU_EXPORT ErrorState
{
68 virtual ~ErrorState();
70 static ErrorState
* Create(ErrorStateClient
* client
, Logger
* logger
);
72 virtual uint32_t GetGLError() = 0;
74 virtual void SetGLError(
78 const char* function_name
,
80 virtual void SetGLErrorInvalidEnum(
83 const char* function_name
,
85 const char* label
) = 0;
86 virtual void SetGLErrorInvalidParami(
90 const char* function_name
,
93 virtual void SetGLErrorInvalidParamf(
97 const char* function_name
,
101 // Gets the GLError and stores it in our wrapper. Effectively
102 // this lets us peek at the error without losing it.
103 virtual unsigned int PeekGLError(
104 const char* filename
, int line
, const char* function_name
) = 0;
106 // Copies the real GL errors to the wrapper. This is so we can
107 // make sure there are no native GL errors before calling some GL function
108 // so that on return we know any error generated was for that specific
110 virtual void CopyRealGLErrorsToWrapper(
111 const char* filename
, int line
, const char* function_name
) = 0;
113 // Clear all real GL errors. This is to prevent the client from seeing any
114 // errors caused by GL calls that it was not responsible for issuing.
115 virtual void ClearRealGLErrors(
116 const char* filename
, int line
, const char* function_name
) = 0;
121 DISALLOW_COPY_AND_ASSIGN(ErrorState
);
127 #endif // GPU_COMMAND_BUFFER_SERVICE_ERROR_STATE_H_