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 "cr_mem.h"
|
---|
10 | #include "server_dispatch.h"
|
---|
11 | #include "server.h"
|
---|
12 |
|
---|
13 | void SERVER_DISPATCH_APIENTRY
|
---|
14 | crServerDispatchGenQueriesARB(GLsizei n, GLuint *queries)
|
---|
15 | {
|
---|
16 | GLuint *local_queries = (GLuint *) crAlloc( n * sizeof(*local_queries) );
|
---|
17 | (void) queries;
|
---|
18 | cr_server.head_spu->dispatch_table.GenQueriesARB( n, local_queries );
|
---|
19 | crServerReturnValue( local_queries, n * sizeof(*local_queries) );
|
---|
20 | crFree( local_queries );
|
---|
21 | }
|
---|