mesa: Drop manual checks for outside begin/end.
[mesa.git] / src / 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 "pbo.h"
36 #include "state.h"
37 #include "teximage.h"
38 #include "texstate.h"
39 #include "main/dispatch.h"
40
41
42 void GLAPIENTRY
43 _mesa_ColorTable( GLenum target, GLenum internalFormat,
44 GLsizei width, GLenum format, GLenum type,
45 const GLvoid *data )
46 {
47 GET_CURRENT_CONTEXT(ctx);
48 _mesa_error(ctx, GL_INVALID_ENUM, "glColorTable(target)");
49 }
50
51
52
53 void GLAPIENTRY
54 _mesa_ColorSubTable( GLenum target, GLsizei start,
55 GLsizei count, GLenum format, GLenum type,
56 const GLvoid *data )
57 {
58 GET_CURRENT_CONTEXT(ctx);
59 _mesa_error(ctx, GL_INVALID_ENUM, "glColorSubTable(target)");
60 }
61
62
63
64 void GLAPIENTRY
65 _mesa_CopyColorTable(GLenum target, GLenum internalformat,
66 GLint x, GLint y, GLsizei width)
67 {
68 GET_CURRENT_CONTEXT(ctx);
69 _mesa_error(ctx, GL_INVALID_ENUM, "glCopyColorTable(target)");
70 }
71
72
73
74 void GLAPIENTRY
75 _mesa_CopyColorSubTable(GLenum target, GLsizei start,
76 GLint x, GLint y, GLsizei width)
77 {
78 GET_CURRENT_CONTEXT(ctx);
79 _mesa_error(ctx, GL_INVALID_ENUM, "glCopyColorSubTable(target)");
80 }
81
82
83
84 void GLAPIENTRY
85 _mesa_GetnColorTableARB( GLenum target, GLenum format, GLenum type,
86 GLsizei bufSize, GLvoid *data )
87 {
88 GET_CURRENT_CONTEXT(ctx);
89 _mesa_error(ctx, GL_INVALID_ENUM, "glGetnColorTableARB(target)");
90 }
91
92
93 void GLAPIENTRY
94 _mesa_GetColorTable( GLenum target, GLenum format,
95 GLenum type, GLvoid *data )
96 {
97 GET_CURRENT_CONTEXT(ctx);
98 _mesa_error(ctx, GL_INVALID_ENUM, "glGetColorTable(target)");
99 }
100
101
102 void GLAPIENTRY
103 _mesa_ColorTableParameterfv(GLenum target, GLenum pname, const GLfloat *params)
104 {
105 /* no extensions use this function */
106 GET_CURRENT_CONTEXT(ctx);
107 _mesa_error(ctx, GL_INVALID_ENUM, "glColorTableParameterfv(target)");
108 }
109
110
111
112 void GLAPIENTRY
113 _mesa_ColorTableParameteriv(GLenum target, GLenum pname, const GLint *params)
114 {
115 /* no extensions use this function */
116 GET_CURRENT_CONTEXT(ctx);
117 _mesa_error(ctx, GL_INVALID_ENUM, "glColorTableParameteriv(target)");
118 }
119
120
121
122 void GLAPIENTRY
123 _mesa_GetColorTableParameterfv( GLenum target, GLenum pname, GLfloat *params )
124 {
125 GET_CURRENT_CONTEXT(ctx);
126 _mesa_error(ctx, GL_INVALID_ENUM, "glGetColorTableParameterfv(target)");
127 }
128
129
130
131 void GLAPIENTRY
132 _mesa_GetColorTableParameteriv( GLenum target, GLenum pname, GLint *params )
133 {
134 GET_CURRENT_CONTEXT(ctx);
135 _mesa_error(ctx, GL_INVALID_ENUM, "glGetColorTableParameteriv(target)");
136 }