1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
/* Copyright (c) 2001, Stanford University
* All rights reserved
*
* See the file LICENSE.txt for information on redistributing this software.
*/
#include "state/cr_stateerror.h"
#include "state/cr_statetypes.h"
#include "state.h"
#include "cr_error.h"
#include "cr_environment.h"
#include <stdarg.h>
#include <stdio.h>
void crStateError( int line, const char *file, GLenum error, const char *format, ... )
{
CRContext *g = GetCurrentContext();
char errstr[8096];
va_list args;
CRASSERT(error != GL_NO_ERROR);
if (g->error == GL_NO_ERROR)
g->error = error;
#ifndef DEBUG_misha
if (crGetenv("CR_DEBUG"))
#endif
{
char *glerr;
va_start( args, format );
vsprintf( errstr, format, args );
va_end( args );
switch (error) {
case GL_NO_ERROR:
glerr = "GL_NO_ERROR";
break;
case GL_INVALID_VALUE:
glerr = "GL_INVALID_VALUE";
break;
case GL_INVALID_ENUM:
glerr = "GL_INVALID_ENUM";
break;
case GL_INVALID_OPERATION:
glerr = "GL_INVALID_OPERATION";
break;
case GL_STACK_OVERFLOW:
glerr = "GL_STACK_OVERFLOW";
break;
case GL_STACK_UNDERFLOW:
glerr = "GL_STACK_UNDERFLOW";
break;
case GL_OUT_OF_MEMORY:
glerr = "GL_OUT_OF_MEMORY";
break;
case GL_TABLE_TOO_LARGE:
glerr = "GL_TABLE_TOO_LARGE";
break;
default:
glerr = "unknown";
break;
}
crWarning( "OpenGL error in %s, line %d: %s: %s\n",
file, line, glerr, errstr );
}
}
GLenum STATE_APIENTRY crStateGetError(void)
{
CRContext *g = GetCurrentContext();
GLenum e = g->error;
if (g->current.inBeginEnd)
{
crStateError( __LINE__, __FILE__, GL_INVALID_OPERATION,
"glStateGetError() called between glBegin/glEnd" );
return 0;
}
g->error = GL_NO_ERROR;
return e;
}
|