1 | /* Copyright (c) 2001, Stanford University
|
---|
2 | * All rights reserved
|
---|
3 | *
|
---|
4 | * See the file LICENSE.txt for information on redistributing this software.
|
---|
5 | */
|
---|
6 |
|
---|
7 | #include "chromium.h"
|
---|
8 | #include "cr_error.h"
|
---|
9 | #include "server_dispatch.h"
|
---|
10 | #include "server.h"
|
---|
11 |
|
---|
12 | void SERVER_DISPATCH_APIENTRY crServerDispatchGetPointerv( GLenum pname, GLvoid **pointer )
|
---|
13 | {
|
---|
14 | crError( "glGetPointerv isn't *ever* allowed to be on the wire!" );
|
---|
15 | (void) pname;
|
---|
16 | (void) pointer;
|
---|
17 | }
|
---|
18 |
|
---|
19 | void SERVER_DISPATCH_APIENTRY crServerDispatchGetVertexAttribPointervNV( GLuint index, GLenum pname, GLvoid ** pointer )
|
---|
20 | {
|
---|
21 | crError( "glGetVertexAttribPointervNV isn't *ever* allowed to be on the wire!" );
|
---|
22 | (void) pname;
|
---|
23 | (void) pointer;
|
---|
24 | }
|
---|
25 |
|
---|
26 | void SERVER_DISPATCH_APIENTRY crServerDispatchGetVertexAttribPointervARB( GLuint index, GLenum pname, GLvoid ** pointer )
|
---|
27 | {
|
---|
28 | crError( "glGetVertexAttribPointervNV isn't *ever* allowed to be on the wire!" );
|
---|
29 | (void) pname;
|
---|
30 | (void) pointer;
|
---|
31 | }
|
---|
32 |
|
---|