VirtualBox

source: vbox/trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_occlude.c@ 76535

最後變更 在這個檔案從76535是 74890,由 vboxsync 提交於 6 年 前

3D: Memory allocations fixed, bugref:9251. Merged changes r125768, r125779, r125780, r125812.

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Id Revision
檔案大小: 917 位元組
 
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
13void SERVER_DISPATCH_APIENTRY
14crServerDispatchGenQueriesARB(GLsizei n, GLuint *queries)
15{
16 GLuint *local_queries;
17 (void) queries;
18
19 if (n >= INT32_MAX / sizeof(GLuint))
20 {
21 crError("crServerDispatchGenQueriesARB: parameter 'n' is out of range");
22 return;
23 }
24
25 local_queries = (GLuint *)crCalloc(n * sizeof(*local_queries));
26
27 if (!local_queries)
28 {
29 crError("crServerDispatchGenQueriesARB: out of memory");
30 return;
31 }
32
33 cr_server.head_spu->dispatch_table.GenQueriesARB( n, local_queries );
34
35 crServerReturnValue( local_queries, n * sizeof(*local_queries) );
36 crFree( local_queries );
37}
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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