Go to the source code of this file.
Enumerations | |
enum | pipe_error { PIPE_OK = 0, PIPE_ERROR = -1, PIPE_ERROR_BAD_INPUT = -2, PIPE_ERROR_OUT_OF_MEMORY = -3, PIPE_ERROR_RETRY = -4 } |
Gallium error codes. More... |
Definition in file p_error.h.
enum pipe_error |
Gallium error codes.
PIPE_OK | |
PIPE_ERROR | Generic error. |
PIPE_ERROR_BAD_INPUT | |
PIPE_ERROR_OUT_OF_MEMORY | |
PIPE_ERROR_RETRY |
Definition at line 51 of file p_error.h.
00051 { 00052 PIPE_OK = 0, 00053 PIPE_ERROR = -1, 00054 PIPE_ERROR_BAD_INPUT = -2, 00055 PIPE_ERROR_OUT_OF_MEMORY = -3, 00056 PIPE_ERROR_RETRY = -4 00057 /* TODO */ 00058 };