[MESA]
[reactos.git] / reactos / dll / opengl / mesa / main / colortab.c
1 /*
2 * Mesa 3-D graphics library
3 * Version: 7.1
4 *
5 * Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25
26 #include "glheader.h"
27 #include "bufferobj.h"
28 #include "colortab.h"
29 #include "context.h"
30 #include "image.h"
31 #include "macros.h"
32 #include "mfeatures.h"
33 #include "mtypes.h"
34 #include "pack.h"
35 #include "state.h"
36 #include "teximage.h"
37 #include "texstate.h"
38 #include "main/dispatch.h"
39
40
41 #if FEATURE_colortable
42
43 void GLAPIENTRY
44 _mesa_ColorTable( GLenum target, GLenum internalFormat,
45 GLsizei width, GLenum format, GLenum type,
46 const GLvoid *data )
47 {
48 GET_CURRENT_CONTEXT(ctx);
49 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
50 _mesa_error(ctx, GL_INVALID_ENUM, "glColorTable(target)");
51 }
52
53
54
55 void GLAPIENTRY
56 _mesa_ColorSubTable( GLenum target, GLsizei start,
57 GLsizei count, GLenum format, GLenum type,
58 const GLvoid *data )
59 {
60 GET_CURRENT_CONTEXT(ctx);
61 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
62 _mesa_error(ctx, GL_INVALID_ENUM, "glColorSubTable(target)");
63 }
64
65
66
67 static void GLAPIENTRY
68 _mesa_CopyColorTable(GLenum target, GLenum internalformat,
69 GLint x, GLint y, GLsizei width)
70 {
71 GET_CURRENT_CONTEXT(ctx);
72 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
73 _mesa_error(ctx, GL_INVALID_ENUM, "glCopyColorTable(target)");
74 }
75
76
77
78 static void GLAPIENTRY
79 _mesa_CopyColorSubTable(GLenum target, GLsizei start,
80 GLint x, GLint y, GLsizei width)
81 {
82 GET_CURRENT_CONTEXT(ctx);
83 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
84 _mesa_error(ctx, GL_INVALID_ENUM, "glCopyColorSubTable(target)");
85 }
86
87
88 static void GLAPIENTRY
89 _mesa_GetColorTable( GLenum target, GLenum format,
90 GLenum type, GLvoid *data )
91 {
92 GET_CURRENT_CONTEXT(ctx);
93 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
94 _mesa_error(ctx, GL_INVALID_ENUM, "glGetColorTable(target)");
95 }
96
97
98 static void GLAPIENTRY
99 _mesa_ColorTableParameterfv(GLenum target, GLenum pname, const GLfloat *params)
100 {
101 /* no extensions use this function */
102 GET_CURRENT_CONTEXT(ctx);
103 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
104 _mesa_error(ctx, GL_INVALID_ENUM, "glColorTableParameterfv(target)");
105 }
106
107
108
109 static void GLAPIENTRY
110 _mesa_ColorTableParameteriv(GLenum target, GLenum pname, const GLint *params)
111 {
112 /* no extensions use this function */
113 GET_CURRENT_CONTEXT(ctx);
114 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
115 _mesa_error(ctx, GL_INVALID_ENUM, "glColorTableParameteriv(target)");
116 }
117
118
119
120 static void GLAPIENTRY
121 _mesa_GetColorTableParameterfv( GLenum target, GLenum pname, GLfloat *params )
122 {
123 GET_CURRENT_CONTEXT(ctx);
124 ASSERT_OUTSIDE_BEGIN_END(ctx);
125 _mesa_error(ctx, GL_INVALID_ENUM, "glGetColorTableParameterfv(target)");
126 }
127
128
129
130 static void GLAPIENTRY
131 _mesa_GetColorTableParameteriv( GLenum target, GLenum pname, GLint *params )
132 {
133 GET_CURRENT_CONTEXT(ctx);
134 ASSERT_OUTSIDE_BEGIN_END(ctx);
135 _mesa_error(ctx, GL_INVALID_ENUM, "glGetColorTableParameteriv(target)");
136 }
137
138
139 void
140 _mesa_init_colortable_dispatch(struct _glapi_table *disp)
141 {
142 SET_ColorSubTable(disp, _mesa_ColorSubTable);
143 SET_ColorTable(disp, _mesa_ColorTable);
144 SET_ColorTableParameterfv(disp, _mesa_ColorTableParameterfv);
145 SET_ColorTableParameteriv(disp, _mesa_ColorTableParameteriv);
146 SET_CopyColorSubTable(disp, _mesa_CopyColorSubTable);
147 SET_CopyColorTable(disp, _mesa_CopyColorTable);
148 SET_GetColorTable(disp, _mesa_GetColorTable);
149 SET_GetColorTableParameterfv(disp, _mesa_GetColorTableParameterfv);
150 SET_GetColorTableParameteriv(disp, _mesa_GetColorTableParameteriv);
151 }
152
153
154 #endif /* FEATURE_colortable */