VirtualBox

source: vbox/trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_getpointer.cpp@ 78375

Last change on this file since 78375 was 78263, checked in by vboxsync, 6 years ago

Config.kmk,GuestHost\OpenGL,HostServices\SharedOpenGL: Fix a bunch of compiler warnings and enable them again

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 931 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 RT_NOREF(index, pname, pointer);
23}
24
25void SERVER_DISPATCH_APIENTRY crServerDispatchGetVertexAttribPointervARB( GLuint index, GLenum pname, GLvoid ** pointer )
26{
27 crError( "glGetVertexAttribPointervNV isn't *ever* allowed to be on the wire!" );
28 RT_NOREF(index, pname, pointer);
29}
30
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