VirtualBox

source: vbox/trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_misc.c@ 21845

最後變更 在這個檔案從21845是 21845,由 vboxsync 提交於 15 年 前

crOpenGL: fix crash in SecondLife

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Id
檔案大小: 635 位元組
 
1/*
2 * All rights reserved
3 *
4 * See the file LICENSE.txt for information on redistributing this software.
5 */
6
7#include "unpacker.h"
8
9void crUnpackExtendChromiumParametervCR( void )
10{
11 GLenum target = READ_DATA( 8, GLenum );
12 GLenum type = READ_DATA( 12, GLenum );
13 GLsizei count = READ_DATA( 16, GLsizei );
14 GLvoid *values = DATA_POINTER( 20, GLvoid );
15
16 cr_unpackDispatch.ChromiumParametervCR(target, type, count, values);
17
18
19 /*
20 INCR_VAR_PTR();
21 */
22}
23
24void crUnpackExtendDeleteQueriesARB(void)
25{
26 GLsizei n = READ_DATA( 8, GLsizei );
27 const GLuint *ids = DATA_POINTER(12, GLuint);
28 cr_unpackDispatch.DeleteQueriesARB(n, ids);
29}
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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