nngxGetExportedCmdlistInfo Function

Syntax

NNGX_APICALL void NNGX_APIENTRY nngxGetExportedCmdlistInfo(
     GLvoid * data,
     GLsizei * buffersize,
     GLsizei * requestsize,
     GLuint * bufferoffset
);

Arguments

Name Description
in data Pointer to the exported data
out buffersize Size of the 3D command buffer in bytes
out requestsize Number of command requests
out bufferoffset Offset (in bytes) to the address within data where the 3D command buffer is stored.

Return Values

No values are returned.

Description

Gets information about an exported command list (binary data).

Gets the size of the 3D command buffer and the number of command requests of the exported data, and the offset (in bytes) to the address in the data at which the command buffer is stored. Set data equal to a pointer to data exported by nngxExportCmdlist. The buffersize argument gets the size (in bytes) of the 3D command buffer. The requestsize argument gets the number of command requests. The bufferoffset argument gets the offset (in bytes) to the region at which the 3D command buffer is stored in data.

This function generates the following errors.

GL_ERROR_8046_DMPPointer to invalid data specified for data

Revision History

2010/03/12
Initial version.

CONFIDENTIAL