blob: bc14298a094be81f1b8c1e22d01896cba7d6b7e6 (
plain)
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
|
/* Copyright (c) 2001, Stanford University
* All rights reserved
*
* See the file LICENSE.txt for information on redistributing this software.
*/
#include "chromium.h"
#include "cr_error.h"
#include "server_dispatch.h"
#include "server.h"
void SERVER_DISPATCH_APIENTRY crServerDispatchGetPointerv( GLenum pname, GLvoid **pointer )
{
crError( "glGetPointerv isn't *ever* allowed to be on the wire!" );
(void) pname;
(void) pointer;
}
void SERVER_DISPATCH_APIENTRY crServerDispatchGetVertexAttribPointervNV( GLuint index, GLenum pname, GLvoid ** pointer )
{
crError( "glGetVertexAttribPointervNV isn't *ever* allowed to be on the wire!" );
(void) pname;
(void) pointer;
}
void SERVER_DISPATCH_APIENTRY crServerDispatchGetVertexAttribPointervARB( GLuint index, GLenum pname, GLvoid ** pointer )
{
crError( "glGetVertexAttribPointervNV isn't *ever* allowed to be on the wire!" );
(void) pname;
(void) pointer;
}
|