Last change
on this file since 78975 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:
756 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 "server_dispatch.h"
|
---|
8 | #include "server.h"
|
---|
9 | #include "cr_error.h"
|
---|
10 | #include "cr_unpack.h"
|
---|
11 | #include "cr_mem.h"
|
---|
12 | #include "state/cr_statetypes.h"
|
---|
13 |
|
---|
14 |
|
---|
15 |
|
---|
16 | /**
|
---|
17 | * Process a crBoundsInfoCR message/function. This is a bounding box
|
---|
18 | * followed by a payload of arbitrary Chromium rendering commands.
|
---|
19 | * The tilesort SPU will send this.
|
---|
20 | * Note: the bounding box is in mural pixel coordinates (y=0=bottom)
|
---|
21 | */
|
---|
22 | void SERVER_DISPATCH_APIENTRY
|
---|
23 | crServerDispatchBoundsInfoCR( const CRrecti *bounds, const GLbyte *payload,
|
---|
24 | GLint len, GLint num_opcodes )
|
---|
25 | {
|
---|
26 | RT_NOREF(bounds, payload, len, num_opcodes);
|
---|
27 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.