• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Mesa 3-D graphics library
3  *
4  * Copyright (C) 1999-2007  Brian Paul   All Rights Reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the "Software"),
8  * to deal in the Software without restriction, including without limitation
9  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  * and/or sell copies of the Software, and to permit persons to whom the
11  * Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included
14  * in all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22  * 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 "mtypes.h"
33 #include "pack.h"
34 #include "pbo.h"
35 #include "state.h"
36 #include "teximage.h"
37 #include "texstate.h"
38 
39 
40 void GLAPIENTRY
_mesa_ColorTable(GLenum target,GLenum internalFormat,GLsizei width,GLenum format,GLenum type,const GLvoid * data)41 _mesa_ColorTable( GLenum target, GLenum internalFormat,
42                   GLsizei width, GLenum format, GLenum type,
43                   const GLvoid *data )
44 {
45    GET_CURRENT_CONTEXT(ctx);
46    _mesa_error(ctx, GL_INVALID_OPERATION, "glColorTable");
47 }
48 
49 
50 
51 void GLAPIENTRY
_mesa_ColorSubTable(GLenum target,GLsizei start,GLsizei count,GLenum format,GLenum type,const GLvoid * data)52 _mesa_ColorSubTable( GLenum target, GLsizei start,
53                      GLsizei count, GLenum format, GLenum type,
54                      const GLvoid *data )
55 {
56    GET_CURRENT_CONTEXT(ctx);
57    _mesa_error(ctx, GL_INVALID_OPERATION, "glColorSubTable");
58 }
59 
60 
61 
62 void GLAPIENTRY
_mesa_CopyColorTable(GLenum target,GLenum internalformat,GLint x,GLint y,GLsizei width)63 _mesa_CopyColorTable(GLenum target, GLenum internalformat,
64                      GLint x, GLint y, GLsizei width)
65 {
66    GET_CURRENT_CONTEXT(ctx);
67    _mesa_error(ctx, GL_INVALID_OPERATION, "glCopyColorTable");
68 }
69 
70 
71 
72 void GLAPIENTRY
_mesa_CopyColorSubTable(GLenum target,GLsizei start,GLint x,GLint y,GLsizei width)73 _mesa_CopyColorSubTable(GLenum target, GLsizei start,
74                         GLint x, GLint y, GLsizei width)
75 {
76    GET_CURRENT_CONTEXT(ctx);
77    _mesa_error(ctx, GL_INVALID_OPERATION, "glCopyColorSubTable");
78 }
79 
80 
81 
82 void GLAPIENTRY
_mesa_GetnColorTableARB(GLenum target,GLenum format,GLenum type,GLsizei bufSize,GLvoid * data)83 _mesa_GetnColorTableARB( GLenum target, GLenum format, GLenum type,
84                          GLsizei bufSize, GLvoid *data )
85 {
86    GET_CURRENT_CONTEXT(ctx);
87    _mesa_error(ctx, GL_INVALID_OPERATION, "glGetnColorTableARB");
88 }
89 
90 
91 void GLAPIENTRY
_mesa_GetColorTable(GLenum target,GLenum format,GLenum type,GLvoid * data)92 _mesa_GetColorTable( GLenum target, GLenum format,
93                      GLenum type, GLvoid *data )
94 {
95    GET_CURRENT_CONTEXT(ctx);
96    _mesa_error(ctx, GL_INVALID_OPERATION, "glGetColorTable");
97 }
98 
99 
100 void GLAPIENTRY
_mesa_ColorTableParameterfv(GLenum target,GLenum pname,const GLfloat * params)101 _mesa_ColorTableParameterfv(GLenum target, GLenum pname, const GLfloat *params)
102 {
103    /* no extensions use this function */
104    GET_CURRENT_CONTEXT(ctx);
105    _mesa_error(ctx, GL_INVALID_OPERATION, "glColorTableParameterfv");
106 }
107 
108 
109 
110 void GLAPIENTRY
_mesa_ColorTableParameteriv(GLenum target,GLenum pname,const GLint * params)111 _mesa_ColorTableParameteriv(GLenum target, GLenum pname, const GLint *params)
112 {
113    /* no extensions use this function */
114    GET_CURRENT_CONTEXT(ctx);
115    _mesa_error(ctx, GL_INVALID_OPERATION, "glColorTableParameteriv");
116 }
117 
118 
119 
120 void GLAPIENTRY
_mesa_GetColorTableParameterfv(GLenum target,GLenum pname,GLfloat * params)121 _mesa_GetColorTableParameterfv( GLenum target, GLenum pname, GLfloat *params )
122 {
123    GET_CURRENT_CONTEXT(ctx);
124    _mesa_error(ctx, GL_INVALID_OPERATION, "glGetColorTableParameterfv");
125 }
126 
127 
128 
129 void GLAPIENTRY
_mesa_GetColorTableParameteriv(GLenum target,GLenum pname,GLint * params)130 _mesa_GetColorTableParameteriv( GLenum target, GLenum pname, GLint *params )
131 {
132    GET_CURRENT_CONTEXT(ctx);
133    _mesa_error(ctx, GL_INVALID_OPERATION, "glGetColorTableParameteriv");
134 }
135