nngxGetExportedCmdlistInfo Function

Syntax

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

Parameters

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 parameter 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. Specify a pointer to data exported by nngxExportCmdlist for data. The buffersize parameter gets the size (in bytes) of the 3D command buffer. The requestsize parameter gets the number of command requests. The bufferoffset parameter gets the offset (in bytes) to the region at which the 3D command buffer is stored in the data parameter.

This function generates the following errors.

GL_ERROR_8046_DMPInvalid data was specified in the data parameter.

See Also

nngxExportCmdlist

Revision History

2011/10/04
Added See Also section.
2010/03/12
Initial version.

CONFIDENTIAL