VirtualBox

source: vbox/trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_getpointer.c@ 25154

Last change on this file since 25154 was 15532, checked in by vboxsync, 16 years ago

crOpenGL: export to OSE

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 927 bytes
Line 
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
12void 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
19void 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
26void 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
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette